ABAP Program: Dynamic external perform (call back form)
Here the two programs which are calling dynamically.
REPORT ZSOURCE2309.
PERFORM EXTFORM IN PROGRAM ZSOURCE2310
USING 'CALL_BACK_FORM'
SY-CPROG.
FORM CALL_BACK_FORM.
WRITE / 'I am the call back form in ZSOURCE2309.'.
ENDFORM.
REPORT ZSOURCE2310.
FORM EXTFORM
USING F_CALL_BACK_FORM
F_PROGRAM.
PERFORM (F_CALL_BACK_FORM) IN PROGRAM (F_PROGRAM).
WRITE / 'I am the form in ZSOURCE2310.'.
ENDFORM.
If you like this post, you may as well like these too:
- ABAP Programs: Form parameters with generic types REPORT ZSOURCE1009.* Varia
- ABAP Programs:External perform call This is the simple code wh
- ABAP Program : Working with Temporary Programs Ever had a need to create
- ABAP Program: Sample program for OLE Automation REPORT ZSOURCE2801. * Inc
- Call an ABAP program from a BSP Call an ABAP program from
















Leave a Reply