SAP ERP 업무에서 사용하게 될 모듈(*업무별로 기능이 나눠져있는 단위)
MM : Material Management 在庫購買管理
SD : Sales and Distribution 販売管理
FI : Financial Accounting 財務管理 <특히 회계기본 FB03>
SAP에서 기본 제공하는 기능을 ABAP이라는 언어로 작성되어 있다.
ABAP은 그 형태가 SOQL, COBOL과 유사하다.
입력창에 abaphelp라고 검색하면 info나옴
실제 업무에서 사용하는 SAP 틀frame을 template이라고 칭한다.
커스터마이즈는 설정設定하는 것.(무슨 기능을 쓸건지, 제외할 건지)
직접 개발할 때作りこむ는 ADD-ON이라는 프로그램을 사용한다. (SAP에 나오는 화면 Dynpro를 만드는 것)
program별로 Dynpro를 가지고 있다. SAP의 각 화면 그 자체를 칭한다.
이걸 ABAP으로 개발하는 것.
transaction code; tr-cd
A transaction is defined as a sequence of dynpros (sap term for screens) having input and output fields and corresponding processing logic behind them to perform a particular task.
For performing any kind of task in the SAP R/3 ERP system, a transaction is used. SAP provides a standard set of transactions to manipulate i.e insert, update, delete and display data in the system.
We call an execution of an ABAP program using a transaction code a transaction .
> SE93
sometimes, the need to create a customer specific transaction may arise due to the following reasons
--> Standard SAP may not support that task
--> A particular transaction needs to be customized to suit the customer requirements
A transaction is defined as a sequence of dynpros (sap term for screens) having input and output fields and corresponding processing logic behind them to perform a particular task.
so we create a transaction in SE93.
> SE16
(Data Browser) is a standard SAP transaction code available within R/3 SAP systems
Only view table, not structure table. print out of the report from here.
SE16 can check/Display content of table only. cannot create table.
*참고 SAP ABAP How to export table in SAP - SE16 transaction
https://www.youtube.com/watch?v=td9JAqoQ-tE
> SE11
you can view not only table and also structure / can create, change, display table entry(*table entry : 테이블 항목)
테이블의 실제 구성,
SAP의 창 단위를 Session이라고 한다. 최대 7개까지.
BOSG-Uppermost Hierarchy Segment for BRF
BKPF-Accounting Document Header
BSEG-Accounting Document Segment
BSET-Tax Data Document Segment
'Programming > SAP SD MM FI' 카테고리의 다른 글
SAP Study Reference sites (0) | 2018.12.12 |
---|---|
SAP 알아두면 좋은 팁 (0) | 2018.11.28 |
SAP 유저관리 (0) | 2018.11.28 |
SM37 Overview of job selection (0) | 2018.11.28 |
181121 SAP 업무 간략 정리2 (0) | 2018.11.26 |