InterviewSolution
| 1. |
What Are The Interactive Reports? |
|
Answer» The user can Interact with the report. We can have a drill down into the report data. We can have a basic list (number starts from 0) and 20 secondary lists (1 to 21). Events associated with Interactive Reports are:
HIDE statement holds the data to be displayed in the secondary list. sy-lisel : CONTAINS data of the selected line. sy-lsind : contains the level of report (from 0 to 21) Interactive Report Events: AT LINE-SELECTION : This Event triggers when we double click a line on the list, when the event is triggered a new sub list is going to be generated. Under this event what ever the statements that are been return will be displayed on newly generated sub list. AT PFn: For PREDEFINED function keys... AT USER-COMMAND : It provides user FUNCTIONS keys. TOP-OF-PAGE DURING LINE-SELECTION : Top of page event for secondary list. The user can Interact with the report. We can have a drill down into the report data. We can have a basic list (number starts from 0) and 20 secondary lists (1 to 21). Events associated with Interactive Reports are: HIDE statement holds the data to be displayed in the secondary list. sy-lisel : contains data of the selected line. sy-lsind : contains the level of report (from 0 to 21) Interactive Report Events: AT LINE-SELECTION : This Event triggers when we double click a line on the list, when the event is triggered a new sub list is going to be generated. Under this event what ever the statements that are been return will be displayed on newly generated sub list. AT PFn: For predefined function keys... AT USER-COMMAND : It provides user functions keys. TOP-OF-PAGE DURING LINE-SELECTION : Top of page event for secondary list. |
|