Posted in October 14, 2008 ¬ 7:27 amh.
CINTHIA NAZNEEN
Download from the following link:
abap-certification-questions
sap-abap-exam
Download an excellent ebook on ‘SAP ABAP Interview Questions, answers, explainations: ABAP Certification Review’ : ABAP CERTIFICATION REVIEW
SAP CERTIFICATION SYLLABUS: Click here to view
Posted by: Cinthia Nazneen
Read the rest of this entry »
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 March 28, 2008 ¬ 3:30 pmh.
CINTHIA NAZNEEN
In SAP, highest level of organization structure is client.Whenever we login to SAP system, we login to a specific client. Data in the R/3 sytem is categorized as client-dependent and client-independent.
Client dependent table:
Client dependent tables are always client-specific. These cannot be accessed from any other client. First column of any client-dependent table is always client(type [...]
Read the rest of this entry »
Notes
ABAP, CLIDEP, client, client dependent, Client dependent table, client independent, client independent table, cross-client, DD02L, MANDT, R/3, SAP, sap table, SAP TABLES
Posted in December 29, 2007 ¬ 3:42 pmh.
CINTHIA NAZNEEN
There will be different types of events in ABAP.
Events in Dialog Program
PBO - Process Before Output
PAI - Process After Input
POH - Process on Help
POV - Process on Value Request.
Events in Classical Report
INITIALIZATION
AT SELECTION-SCREEN OUTPUT
AT SELECTION-SCREEN
START-OF–SELECTION.
TOP OF PAGE
END OF PAGE
END-OF-SELECTION.
Control Break events related to Internal Tables
AT NEW FIELD
AT END OF FIELD
AT FIRST
AT LAST
Events in Interactive Report [...]
Read the rest of this entry »
Notes
ABAP, CLASSICAL REPORT, CONTROL BREAK EVENTS, DIALOG PROGRAM, EVENTS, EVENTS IN CLASSICAL REPORT, EVENTS IN DIALOG PROGRAM, EVENTS IN INTERACTIVE REPORT, PAI, PBO, POH, POV