DELETE DYNPRO

Note

This statement is for internal use only.
It cannot be used in application programs.


Syntax

DELETE DYNPRO f.

Effect

The screen that has the name specified in the field f is deleted.

Return Value

SY-SUBRC = 0:
The screen was deleted.
SY-SUBRC = 4:
The screen does not exist.

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

Example

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