관리 메뉴

JIHYUN JEONG

[SAP ABAP] Submit / Call transaction / Submit and return / Leave to trans 본문

SAP ERP System/ABAP 실습

[SAP ABAP] Submit / Call transaction / Submit and return / Leave to trans

StopHyun 2013. 4. 28. 20:48



*&---------------------------------------------------------------------*
*& Report  ZR_CALLED
*&
*&---------------------------------------------------------------------*
*&
*&
*&---------------------------------------------------------------------*

REPORT  ZR_CALLED.

PARAMETERS: pa_car type scarr-carrid.

START-OF-SELECTION.

WRITE:'Called Program', pa_car.



report  zr_call.

*SUBMIT zr_called.
*SUBMIT zr_called AND RETURN.
*SUBMIT zr_called AND RETURN VIA SELECTION-SCREEN.
*CALL TRANSACTION 'ZR_CALLED'.
*CALL TRANSACTION 'ZR_CALLED' AND SKIP FIRST SCREEN.
leave to transaction 'ZR_CALLED'.

write:'Call program'.




Comments