본문 바로가기

분류 전체보기

(539)
[SAP Study]ABAP Dictionary의 기본 오브젝트 마지막 작성일: 최종 작성일:23-01-15 도메인 데이터 타입(예를들어 데이터 엘리먼트가 길이가 3인 CHA 데이터 유형으로 정의) 필드의 기술적 정의 데이터 엘리먼트 필드의 내용적 정의 데이터 타입이 정의되어 있는 도메인을 참조함으로 테이블에 들어가야하는 필드에 일일히 데이터 타입을 정희하지 않더라고 data element를 맵핑 해주는 것만으로 필드 유형이 손쉽게 정의 되는 것. 테이블에 항상 data element를 써야하는 거는 아니지만 쓰는 이유는 데이터 표준화 및 가독성 때문임. Structure 구조로 어떤건지는 대략적으로 알듯함.. 이건 structure만들면서 확인하면 될듯 *이해가 안되도 기억해야할것 DB테이블은 Type을 이용한다
[SAP Study]패키지 패키지란? 프로그램등 하위 Repository를 하나로 묶어 캡슐화 하는 Repository 객체 application component의 기능을 구분하여 관리를 효율적으로 하기 위한 단위 경로: SE80으로 접속 *Repository Browser의 Object name에 보이는 리포지토리 중 가장 상위에 있는 폴더를 우클릭 한후 [CREATE] -> [PACKAGE]->[PACKAGE]로 접속 한다 *Repository란 정보의 저장소(폴더 같은것) CREATE PACKAGE에서 필수 입력 값: Package: 패키지 이름에 Z나 Y를 붙여 줘야함 (로컬로 생성하는 경우에는 상관없음) Short description:패키지에 대한 간단 설명 기재 Software Component: 패키지가 위치할 소..
[WIP]IMM -2 . Production Planning System 1. introduction to be profitable, a firm must organize all these factors to make right goods at the right time at top quality and do so as economically as possible. 2. manufacturing planning and control systme 3.sales and operations planning 4.manufacturing resource planning 5. enterprise resource planning 6. making the production plan
[Completed]IMM -1 . Introduction To Material Management 1. operating enviorment 2. the supply chain concept once processes exist, operation are managed so they produce good most economically. managing the operation means planning for asd controlling the resources used in the process: labor, capital, and material. if the right materials in the right quantities are not available at the right time, the process cannot produce what it should. 1. operating..
[WIP]초보자를 위한 SQL 200제 -한 달에 책 한 권 끝내기- Day6 032~040 032 데이터 분석 함수로 순위의 비율 출력하기 (CUME_DIST) SELECT title as '상품명', RANK()OVER(order by stock_recommend desc) as'RANK', DENSE_RANK()OVER(ORDER BY stock_recommend desc) as 'dense_rank', CUME_DIST()OVER(ORDER BY stock_recommend desc) as 'cume_dist' FROM thegifting_personal_matche.v_recommend_disable_stock; 033 데이터 분석 함수로 데이터를 가로로 출력하기 (LISTAGG) 오라클에서만 적용되어 my sql에서 적용되는 쿼리 명령문 찾아볼것 033 COLUMN을 R..
초보자를 위한 SQL 200제 -한 달에 책 한 권 끝내기- Day5 024~031 024 + INTERVAL '3' YEAR SELECT product_sku_idx,created_date + interval'3'year FROM thegifting_personal_matche.cart_items_log; 024 NULL값 대신 다른 데이터 출력하기( NVL,NVL2) SELECT product_title,short_desc,NVL(discount_policy_idx,0) FROM thegifting_personal_matche.personal_store_products; SELECT order_idx,ebut_sku_code,order_total_price - cart_discount_price , NVL(cart_discount_price,0) AS'결제금액' FRO..
초보자를 위한 SQL 200제 -한 달에 책 한 권 끝내기- Day4 016~023 016 대소문자 변환 함수 배우기(UPPER,LOWER,INTCAP) SELECT idx,UPPER(type),LOWER(code),name FROM thegifting_personal_matche.meta_keys ; 017 문자에서 특정 철자 추출하기(SUBSTR) SELECT SUBSTR('wc-pending',4,10) FROM thegifting_personal_matche.meta_keys WHERE code LIKE '%wc%'; 018 문자열의 길이를 출력하기(LENGTH) SELECT LENGTH(code) FROM thegifting_personal_matche.meta_keys WHERE name LIKE '%주문%'; 019 문자에서 특정 철자의 위치 출력하기(INST..
초보자를 위한 SQL 200제 -한 달에 책 한 권 끝내기- Day3 007~015 007where절 배우기 -1 (숫자 데이터 검색) SELECT order_idx,status,paid_date,ebut_sku_code,order_qty,order_shipping_price FROM thegifting_personal_matche.erp_order_hst where order_shipping_price > 5000; SELECT order_idx,status,paid_date,ebut_sku_code,order_qty,order_shipping_price FROM thegifting_personal_matche.erp_order_hst where order_shipping_price > 5000; 008where절 배우기 -2 (문자와 날짜 검색) SELECT order..