Selection - Screen - Doc
Selection - Screen - Doc
1. Parameter:
Syntax:
1. Input Field:
2. Check Box:
PARAMETERS:p_sloc1 AS CHECKBOX.
3. Radio-Button:
2. Select-Options:
Syntax:
1. Load of Program
Used to load the program in memory for execution
Internal event, we can’t see
2. Initialization
Used to initialize default values to program & selection screen variables
3. At selection output
Used to modify the selection screen dynamically based on user actions
Is triggered or executed for every action on selection screen
4. At selection on field
Used to validate a single input field on selection screen
Error field will be highlighted and the remaining fields will be disabled
5. At selection screen on Value request
Used to provide search help for input field
Used to display list of values and allows the users to select and return value
Is triggered whenever user clicks on search help button (F4 )
6. At selection screen on Help request
Used to provide help information for input field
Is triggered whenever user clicks on help button ( F1 )
7. At selection screen
Used to validate multiple fields on selection screen
Error field is highlighted and all the remaining fields will be enabled.
8. Start of selection
Default event
Used to write the original business logic, select statements
Also used to indicate the starting point of the program
9. End of Selection
Used to indicate the start of selection has been ended
10. Top of page
Used to display the content page heading
Is triggered after the first WRITE statement
11. End of page
Used to display the footer information
TOP-OF-PAGE INITILIZATIONSTART-OF-SELECTIONEND-OF-SELECTION
Reports:
1. At Line-selection
At line selection event triggered, When user double click on any list line
Syntax: AT LINE-SELECTION
2. At User command
At user command event triggered, When user click on custom buttons of the GUI
Syntax: AT USER-COMMAND
3. At PF Status
At PF Status event triggered, When user click on any function buttons
Syntax: AT PF
4. Top of page during line selection
Used to print the heading for secondary list in interactive report
Syntax: TOP OF PAGE DURING LINE SELECTION
1. HIDE:
HIDE Statement stores selected line details from Basic list
Syntax: HIDE <Work Area>
2. GET CURSOR
GET CURSOR statement is used to get cursor position with field name & value
Syntax: GET CURSOR FIELD <Field name variable> VALUE <Field value variable>
Top of page event will be triggered, when first ULINE, WRITE or SKIP statement occurs in the
program
LOAD-OF-PROGRAM
INITIALIZATION