SAP DELETE DYNPRO ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for DELETE_DYN_PRO

DELETE DYNPRO
ABAP Code Snippet
• DELETE DYNPRO ABAP_STATEMENT_INT


ABAP Syntax DELETE DYNPRO f.


What does it do? The screen that has the name specified in field f is deleted.

System Fields sy-subrcMeaning 0The screen was deleted. 4The screen does not exist.

The content of f consists of the 40 character program name and the four character screen number .



Example ABAP Coding
DATA DYNPRONAME(44) VALUE 'SAPTEST'.
DYNPRONAME+40 = '0100'.
DELETE DYNPRO DYNPRONAME.

Return to menu