기본 콘텐츠로 건너뛰기

Coupang CS Systems 채용 정보: Business Analyst(Global Operations...

Coupang CS Systems 채용 정보: Business Analyst(Global Operations...

Join us to shape the future of eCommerce in South Korea, and Asia!

Coupang is one of the largest and most disruptive standalone e-commerce companies in Korea whose focus on continuous innovation is revolutionizing the way Korean consumers shop. We have attracted over 12 million purchasers who have collectively made over 200 million purchases on our site and generate billions of visits each year. We currently compete within Korea's $342 billion retail market, of which e-commerce comprises $~$60 billion and is expected to grow at a CAGR of 15-20% hitting $130bn by 2020.

Coupang's Business Analysts provide insights across multiple business domains. Business analysts are deeply involved in the decision making process and drive business success by championing data analytics throughout the organization. Every project at Coupang starts with your strong ownership, concrete analysis and actionable business insights. Join us to unlock the future of Coupang's strategic initiatives.

Global Operation Technology:

Have you ever wondered what happens after you place an order in eCommerce? Global Operation Technology are the team that enables each order to be delivered to the customer without a delay. We develop systems and services that take the customer's orders and decide which warehouse to send the orders, how to best to put them into a single or multiple boxes, what routes should the packages take, and how to show these statuses to the customer. On daily base, we deal with a leading edge software technologies to calculate the promise delivery date of an order using the inventory location (origin) and a customer location (destination), to build algorithms to predict and forecast the daily max capacity of warehouses, sortation centers, and delivery truck for operation and planning, to forecast next inbound order volumes and locations, and to maximize customer experience through simplified real time tracking information and notification. We are the teams that build the system which controls the whole operations of Coupang including the system for Coupang Man. Come join the team and, together, we can build the system that propels Coupang's tomorrow.

CS and C-returns Systems:

We are the heart of Coupang. We relentlessly advocate for customers by hearing customer's voice and distributing to the entire company by Andon mechanism. Proactive Customer Service is a game changer in E-commerce. We are not only solving customer's problems, but also proactively forecasting future events to prevent the post-purchasing issues at the first place. We achieve our missions by working backward from customer's contacts and voices. You will enjoy solving tough problems by the cutting edge technology and make history with company's growth.

Transportation System:

In Transportation System, we are working on typical CS optimization problems, such as "Traveling Salesman Problem" (TSP). If you have 7 places to visit, you have 360 different paths to consider. If you have 14 places to visit, you have 3,113,510,400 possible paths. As the number of places to visit become 80, the possible path becomes more than 40 times the number of atoms in the whole universe, not earth! We also work with systems that provide a real time tracking for the customer packages, manage and control integration with 3rd party hardware and software, forecast and predict the package volumes for each of the path, and collect and analyze big data for further optimization. We love solving hard problems, continuously improving ourselves and having fun while doing it.

Supply Chain Management (SCM) Systems:

SCM Systems helps Coupang manage inventory for all items sold and fulfilled by Coupang. We own systems that forecast customer demand, automate the inventory buying and replenishment process, create and manage purchase orders, gather and surface information about our suppliers, and integrate inventory-related information with accounting and settlement systems. Our systems need to scale with the growth of Coupang's retail business, and our goal is to leverage technology to build an automated and efficient supply chain that is a core part of driving innovation and value for our customers.

Responsibility

Understand the various operations across CS and C-returns

Develop meaningful metrics in collaboration with multiples teams, business stakeholders and senior management.

Provide Root Cause Analysis across various business domains and drive measureable improvement of key business initiatives

Work with various analytics teams to get access to relevant data based on business stakeholders' needs, and proactively seek out opportunities to automate routine analysis to drive decision-making efficiency.

Build automated reports using Business Intelligence tools to visualize data and effectively provide insights to business stakeholders.

Requirements

At least 2 years of experience with advanced skill in using SQL is a must.

Intermediate to advanced skills in using Excel and Access is preferred.

Ability to understand multiple retail business models and their technical implementation.

Ability to prioritize work in a complex, fast-paced environment.

Ability to work with ambiguous problems.

Strong analytical skills, excellent communication and stakeholder relationship management skills.

Bachelor's degree majored in finance, technical, business, analytical or related majors (mathematics, computer science, engineering, statistics, economics etc.)

Preferred relevant working experience in Retail/e-commerce/marketing.

Fluent in Korean language

Preferred

Exposure to software development process.

Must be detail-oriented and have aptitude for solving unstructured problems. The role will require the ability to extract data from various sources and to design/construct/execute complex analyses to derive business solutions.

Strong oral, written and presentation skills combined with the ability to lead group discussions and explaining complex solutions. Must communicate clearly in text - key deliverables will take the form of multi-page narratives.

Ability to be adaptable and flexible in responding to deadlines and workflow fluctuations.

Job Detail

Location: Seoul, Korea

더 많은 내용은

더 많은 내용은 더팀스 에서 확인하세요!

from http://theteams.tistory.com/760 by ccl(A) rewrite - 2020-03-24 12:20:11

댓글

이 블로그의 인기 게시물

Flask 18. jQuery와 ajax

Flask 18. jQuery와 ajax 현재 우리는 api를 만들고 있다. api를 사용하기 위해서는 ajax를 사용해야한다. 그리고 ajax를 편하게 쓸 수 있도록 도와주는 것이 jquery라이브러리이다. ajax는 비동기로 서버에 요청할 수 있다. 브라우저에 XMLHttpRequest객체가 있어서 이것을 사용해서 서버에 데이터를 요청할 수 있다. 기존에는 웹에 접근할 때 주소에다가 서버의 주소를 씀으로써 데이터(페이지)를 요청할 수 있고, form을 만드는 방법이 있다. 이러한 방법들은 페이지 이동이 일어나서 서버에서 무조건 응답으로 웹페이지를 만들어서 응답해야하는 단점이 있었다 그러나 api를 사용하면 리소스 중심으로 데이터의 이동만 일어난다. 클라이언트는 데이터만 받기 때문에 데이터로 웹을 만들어야한다. 화면은 이미 만들어져있는 상태에서 비동기로 화면을 전환하지 않고, 서버에 데이터 요청을 한 후 그 데이터를 기반으로 웹에 그 데이터를 반영하는 것이다. 이것들은 백그라운드에서 일어난다. 이것을 위해서는 자바스크립트를 이용해야하고 jquery를 이용할 것이다. jquery는 여러 셀렉터를 사용할 수 있어서 편하다. 자바스크립트 작업을 좀더 생산성 좋게 작업할 수 있도록 해준다. 가장 큰 특징은 ajax요청을 아주 쉽게 할 수 있다. 정리 비동기 요청을 위해서 ajax를 사용할 것이고, 그러나 순수자바스크립트는 어렵기 때문에 jquery를 사용할 것이다. 공유하기 글 요소 저작자표시 from http://ohdowon064.tistory.com/134 by ccl(A) rewrite - 2020-03-24 10:54:10

Coupang CS Systems 채용 정보: Front-end 개발자를 찾습니다!

Coupang CS Systems 채용 정보: Front-end 개발자를 찾습니다! PC/Mobile Web Front-end 개발 1997년, 초창기 아마존에 입사한다고 상상해보세요. 그 당시 누구도 e-commerce 산업이, 아마존이라는 회사가 지금처럼 성장하리라고는 생각하지 못했을 것입니다. 하지만, 그 당시 아마존을 선택한 사람들은 e-commerce 산업을 개척했고, 아마존을 세계적인 회사로 성장시켰습니다. 2016년 '아시아의 아마존'으로 성장하고 있는 쿠팡, 당신에게 매력적인 선택이 아닐까요? 1997년, 초창기 아마존에 입사한다고 상상해보세요. 그 당시 누구도 e-commerce 산업이, 아마존이라는 회사가 지금처럼 성장하리라고는 생각하지 못했을 것입니다. 하지만, 그 당시 아마존을 선택한 사람들은 e-commerce 산업을 개척했고, 아마존을 세계적인 회사로 성장시켰습니다. 2016년 '아시아의 아마존'으로 성장하고 있는 쿠팡, 당신에게 매력적인 선택이 아닐까요? Global Operation Technology: eCommerce에서 주문을 한 뒤 벌어지는 상황에 대해서 호기심을 가져보신 적이 있나요? Global Operation Technology는 상품을 고객에게 지연 없이 전달 될 수 있도록 하는 조직입니다. 매일 최첨단 소프트웨어 기술을 이용해 고객의 주문을 받고 상품을 어느 창고에서 출고 시킬지, 포장을 하나의 박스 또는 여러 개로 나눌 것인지, 어떤 배송 루트를 선택하고 어떻게 고객에게 배송 상태를 보여줄지 결정하는 시스템과 서비스를 개발 합니다. What Global Operations Technology does: CS and C-Returns System 적극적 고객서비스를 바탕으로 고객의 목소리를 통해 끊임없이 고객 에게 서비스를 제공하고 Andon 메커니즘을 통해 고객의 목소리를 회사 전체와 공유합니다. 그리고 고객 문제 해결과 구매 이후 벌어질 수 있는 고객 ...