report 프로그램을 호출한 후에
해당 화면에서 텍스트로 어떤 문구를 보여주고
이후 실행(F8) 을 했을 때 다음 report 프로그램을 호출하도록 만들 수 있다.
REPORT ztest .
selection-screen begin of block blk.
parameters : c_pro type trdir-name default 'FB03' modif id BL1.
"screen 1000번 화면을 자동으로 만들어주기 위해선 parameters 나 select-option 이 필요하다!
selection-screen begin of line.
selection-screen comment (80) text-t01.
selection-screen end of line.
"comment 는 줄을 바꾸려면 selection-screen begin of line을
새로 만들어줘야 한다.
"selection-screen skip 은 selction-screen begin of line 구문 내에서
사용할 수는 없음.
selection-screen begin of line.
selection-screen comment (80) text-t02.
selection-screen end of line.
selection-screen end of block blk.
START-OF-SELECTION.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF screen-group1 = 'BL1'.
screen-input = 0. "parameter 필드값을 비활성화
ENDIF.
MODIFY SCREEN.
ENDLOOP.
END-OF-SELECTION.
SUBMIT FB03 AND RETURN.
'프로그래밍 > SAP ABAP' 카테고리의 다른 글
sap/abap popup debugging 팝업디버깅 (0) | 2021.07.06 |
---|---|
FAGL_FCV G/L Account Balance 의 역분개 미생성 건 (0) | 2021.03.04 |
[SAP/ABAP] Local object to Transportable object 로 변경 (0) | 2021.02.25 |
[SAP] debit memo 차변메모 / credit memo 대변메모 (FI side) (0) | 2021.01.05 |
Business area 에 대한 설명 (0) | 2020.11.12 |