Subscribe

RSS Feed (xml)

Powered By

Skin Design:
Free Blogger Skins

Powered by Blogger

 

Friday, September 16, 2011

SUBMIT a Program using ABAP function module

If you wish to SUBMIT a program you can do so by using the SUBMIT statement or you can use the following function module. Once the called program executes the control is returned to the calling program.

Please find the code below.

REPORT ZEX_FUNCCALLPROG .


Parameters: p_prog like sy-repid.


CALL FUNCTION 'RZL_SUBMIT'
  EXPORTING
    REPID         = p_prog
          .


Write:/ 'Control Returned'.

No comments:

Post a Comment

Recent Topics