The document outlines an ABAP report program that handles user input for order selection based on date, payment mode, and currency. It includes initialization, selection screen modifications, and data retrieval from a database table, followed by displaying the results. The program also manages page headers and footers during output display.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
11 views
Classical reports with events
The document outlines an ABAP report program that handles user input for order selection based on date, payment mode, and currency. It includes initialization, selection screen modifications, and data retrieval from a database table, followed by displaying the results. The program also manages page headers and footers during output display.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2
1.
Initialization 2. At selection screen output 3. At selection screen on value 4. At selection screen 5. Start of selection 6. Top of page 7. End of page
REPORT zreport_classical_events LINE-COUNT 8(2).
TYPES: BEGIN OF lty_str,
order_num TYPE zde_ono, order_date TYPE zde_odate, pay_mode TYPE zde_paym, curr TYPE zdele_curr, END OF lty_str.
DATA : lv_odate TYPE zde_odate,
lv_pm TYPE zde_paym, lv_curr TYPE zdele_curr. DATA : lt_tab TYPE TABLE OF lty_str, wa_tab TYPE lty_str.
SELECT-OPTIONS : s_odate FOR lv_odate NO-EXTENSION.
SELECT-OPTIONS : s_pm FOR lv_pm NO INTERVALS. SELECT-OPTIONS : s_curr FOR lv_curr NO INTERVALS MODIF ID CUR. PARAMETERS : p_chk TYPE c AS CHECKBOX USER-COMMAND click. "function code