SAP LISTS DISPLAYED



Get Example source ABAP code based on a different SAP table
  



ABAP_LIST - Display
A basic list is either displayed automatically or in a program-driven way. A details list is always displayed automatically:
In executable programs called using SUBMIT, the basic list created up to that point is displayed automatically after the event END-OF-SELECTION. At the start of the program, the standard list status is set automatically, which can be replaced by another GUI status in the program using SET PF-STATUS.
In any program that can contain dynpros as components, a display of the current basic list can be called in a program-driven way during processing of a dynpro sequence .
In any program that can contain dynpros as components, the details list created in an event block is displayed automatically when the event block is terminated after AT LINE-SELECTION, AT USER-COMMAND , or AT PFnn. If no details list is created, the previous list level is displayed.
The following sections cover the statements
LEAVE TO LIST-PROCESSING
LEAVE LIST-PROCESSING
used to call the basic list during a dynpro sequence, the statements
WINDOW
SET PF-STATUS
SET TITLEBAR
SET CURSOR
used to determine properties of the called list, and the statement
GET CURSOR
used to read a displayed list.