SAP ABAP DYNPRO LIST

Get Example source ABAP code based on a different SAP table
  


ARTICLE

Classic Lists
Lists - Overview
Lists - System Fields
Spooling Lists
Creating Lists
Processing Lists in the List Buffer
List Display
Event Blocks for Lists
System Class for Classic Lists

Note
ABAP Code Snippet
Classical lists are no longer intended to be used directly in production programs. We recommend that other suitable output media is used instead.
For table list output, use the classes of SAP List Viewer ( ALV), such as CL_SALV_TABLE.
For simple text output, use the wrappers of the browser control, such as dynamic documents or wrappers of the textedit control. 'Dynpros, Text Output' shows an example of the latter.
For simple console output, XML-based output streams can be used. An example of this is shown by the class CL_DEMO_OUTPUT_STREAM. The program DEMO_OUTPUT_STREAM shows potential uses of this class. The class CL_DEMO_OUTPUT, which is based on CL_DEMO_OUTPUT_STREAM, is used in programs from the ABAP Example Library.
ABAP Code Snippet