일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Python
- 자바스크립트
- 노드
- Mac
- IT
- SAP ABAP
- 파이썬
- Oracle DB
- nodejs
- 자바
- 영어
- SAP
- Programming
- SAP ERP
- 오라클
- 머신러닝
- 딥러닝
- 도커
- Spring Framework
- 오라클 디비
- JavaScript
- ABAP
- 비지니스영어
- Java
- docker
- oracle
- sap mm
- 유럽여행
- db
- node.js
- Today
- Total
목록SAP ERP System (65)
JIHYUN JEONG
SAP ERP, (MM모듈) 개발노트 #1 Message Maintenance와 Case에 대해서 설명.SAP Message SAP Message ○ Message class 를 통해 standard가 아니 사용자가 직접 메세지를 만들수 있다. ○ Ex. ● MESSAGE 사용 방법 ▶ MESSAGE ID : 업무에 따라 구분 사용할 수 있음. ▶ MESSAGE TYPE : 'S' Process 완료 후 Message Display (Success) 'W' Warning Message Display후 Enter치면 계속 진행 (Warning) 'E' Error Message Display이후 종료 (Error) 'I' Warning과 같은 형태인데 별도의 Window를 작성 (Information) ▶ ..
이번시간은 SAP ERP ABAP Internal Table에 대해서 살펴 보겠습니다. □ Internal Table - 프로그램이 실행되고 있는 동안 생성되는 임시적인 테이블 - 프로그램 내에서 정의하여 사용할 수 있는 Local Table ○ 선언방법 • DATA itab TYPE itabtye [WITH HEADER LINE] - Table의 형태로 정의되어 있는 itabtype을 참조 • DATA itab {TYPE TABLE OF linetype | LIKE TABLE OF lineobj}. - 인터널테이블을 선언하는 기본으로 많이 쓰임 • DATA itab [TYPE linetype | LIKE lineobj] OCCURS n [WITH HEADER LINE]. - 테이블이 처음 가지는 레코드..
오늘부터 SAP ABAP 정식교재에 대해서 공부를 해볼려고 합니다. 그 여섯번째 시간으로 SAP 1-6. Complex Data Object 입니다. ㅁ Unit 9 : Complex Data Objects ㅁ Lesson : Working with Structures ㅁ Definition of Structures with Global Types - TYPES - Local type, Global type - EX * DATA 변수명 TYPE 타입명 (타입명이 ABAP Dicitionary에 있는게 Global type) ㅁ Defining Structures with Local Types * TYPES : BEGION OF 구조체 명, ~~~~~~~~~~~~~~ END OF 구조체 명. ㅁ Acces..
오늘부터 SAP ABAP 정식교재에 대해서 공부를 해볼려고 합니다. 그 다섯번째 시간으로 SAP ABAP 1-5. Modularization 입니다. ㅁ Unit 8 : Modularization ㅁ Options for Using Modularization Units - 공통적인 부분을 모듈화 > 가독성을 높인다. ㅁ Local Program Modularization - 다른 모듈에서 재사용 불가능 ㅁ Global Modularization - 재사용 가능 - Function module, 클래스 ㅁ Separating Data - ㅁ Data Transports Between the Program and the Modularization Unit - Interface : 호출하는 프로그램과 재사용할..
오늘부터 SAP ABAP 정식교재에 대해서 공부를 해볼려고 합니다. 그 네번째 시간으로 SAP ABAP 1-4. Flow of an ABAP Program & Introduction to the ABAP & Vasic ElementsUntitled 입니다. ㅁ Unit 5 : Flow of an ABAP Program ㅁ Client/Servel Architecture of the SAP NetWeaver Application Server - Presentation Server view - Application Server view - Database Server View ㅁ Except for an ABAP Program - Presentation Server View : request 요청 - App..
오늘부터 SAP ABAP 정식교재에 대해서 공부를 해볼려고 합니다. 그 세번째 시간으로 SAP ABAP 1-3. Communication&Integration Technologies 입니다. ㅁ Unit 4: Communication and Integration Technologies ㅁLesson : Cross-System Business Processes ㅁ Business process distribution using ALE - ALE(Application Linking Enabled) : 분산환경에서 어플리케이션들을 통합할수 있는 기술 ㅁ Data Synchronization in the Business Process - an Example ㅁ Lesson : Summary ㅁ Lesson : ..