Posted in May 3, 2009 ¬ 2:43 pmh.
CINTHIA NAZNEEN
Q.1) What are SAP reports?
Ans: SAP Reports are event-driven programs using ABAP/4 programming langugage. These reports are used to fetch business-specific data from SAP standard databases under specified selection criteria, fetched data is processed to display result on output screen. User develop SAP report object on ABAP editor using the standard SAP transaction SE38.
Q.2)What are [...]
Read the rest of this entry »
Notes
ABAP REPORT, ABAP REPORT TYPES, ABAP/4, AT PF, AT SELECTION-SCREEN, AT SELECTION-SCREEN OUTPUT, AT USER-COMMAND, BASIC LIST, CLASS POOL, CLASSICAL REPORT, END-0F-PAGE., END-OF-SELECTION, EVENT, EVENT-DRIVEN PROGRAMS, EVENTS IN CLASSICAL REPORT, EVENTS IN INTERACTIVE REPORT, events in report, EXECUTABLE PROGRAM, FUNCTION GROUP, INCLUDE, INITIALIZATION, INTERACTIVE REPORT, INTERFACE POOL, LOAD OF PROGRAM, MODULE POOL, OUTPUT EVENTS, REPORTS, SAP, SAP REPORTS, SE38, SECONDARY LIST, SIMPLE REPORT, START-OF-SELECTION, SUBROUTINE POOL, TOP OF PAGE DURING LINE SELECTION, TOP-OF-PAGE, TYPES OF REPORTS
Posted in August 4, 2008 ¬ 3:48 pmh.
CINTHIA NAZNEEN
If i_final is the final internal table containing retrieved business data, and w_final is the work area of your final internal table, then you can display the result (classical report view) by writing code in following manner.
*&———————————————————————*
*& Form TOP_OF_PAGE
*&———————————————————————*
* For data display
*———————————————————————-*
form TOP_OF_PAGE .
IF NOT i_final[] IS INITIAL.
ULINE.
WRITE:/1 sy-vline,
2 ‘PO Number’,
12 sy-vline,
13 ‘PO Line Item’,
25 sy-vline,
26 [...]
Read the rest of this entry »
Posted in December 29, 2007 ¬ 3:44 pmh.
CINTHIA NAZNEEN
There is no mandatory event in a report program. Events are actually used to organize the statements and control the flow of the program. If the program contains no explicitly defined event blocks, all the statements in the program form the entire event block START-OF-SELECTION. ABAP runtime environment automatically introduces a START-OF-SELECTION at the first [...]
Read the rest of this entry »
Notes
ABAP/4, AT LINE-SELECTION, AT PF, AT SELECTION-SCREEN, AT SELECTION-SCREEN OUTPUT, AT USER-COMMAND, CLASSICAL REPORT, END-OF-PAGE, END-OF-SELECTION, EVENT, EVENTS, INITIALIZATION, INTERACTIVE REPORT, LOAD OF PROGRAM, REPORT, START-OF-SELECTION, TOP OF PAGE DURING LINE SELECTION, TOP-OF-PAGE