SAP SCREEN STRUCTURE - Obsolete



Get Example source ABAP code based on a different SAP table
  


• screen (obsolete) ABAP_DOBJ_OBS

The Built-In Structure screen
In dynpro processing in dialog modules, the built-in data object screen of the data type SCREEN from ABAP Dictionary is available. It can be addressed explicitly there and implicitly in obsolete short forms.
LOOP AT SCREEN
MODIFY SCREEN
can be used. A data object screen declared explicitly in the current context hides the built-in structure.



Latest notes:

Instead of the built-in structure screen, explicitly declared work areas of the type SCREEN should be used in the long forms of the statements above.
LOOP AT SCREEN INTO screen or MODIFY SCREEN FROM screen should not be used to access the obsolete built-in structure, even in the long forms.
ABAP_HINT_END