ABAP

ABAP NEW-LINE statement

Posted in ABAP on September 4th, 2012 by Abap master

In ABAP programming NEW-LINE statement is used for inserting line breaks in a list. It set the list cursor to the next line after the current line. If the current line is set by other ABAP statements like BACK, SKIP etc, list cursor wont change to the next line. Synatx usage : NEW-LINE [NO-SCROLLING|SCROLLING]. The [...]

ABAP Transaction codes list – Tcodes

Posted in ABAP on February 23rd, 2012 by Abap master

Here is a list of important and frequently used ABAP transaction codes ( Tcodes ). Transaction codes are arranged & sorted according to the functionality. ABAP Help ABAPDOCU : Transaction code To display Example Library ABAPHELP : To display ABAP Keyword Documentation SEARCH_SAP_MENU : For searching the the standard SAP menu for transaction codes or [...]

ABAP MODIFY statement

Posted in ABAP on December 24th, 2011 by Abap master

In ABAP , MODIFY statement can be used with Database tables Internal tables Index tables Lists Screens MODIFY statement is used for changing the current content value. Here you can see the usage & syntax of this statement with different scenarios. Modify with database table MODIFY <dbtab> FROM <wa>. Here the database <dbtab> will adopt [...]

ABAP LOOP Statement

Posted in ABAP on August 13th, 2011 by Abap master

LOOP statement in ABAP programming is used for looping through extracts, internal tables and screen fields. LOOP can have a nested structure. Means inside a LOOP block another LOOP statement can be used. Now lets us check the LOOP statement for each of these operations. Extracts looping Syntax: LOOP. The control block with LOOP statement [...]

LEAVE screen, list and ABAP program

Posted in ABAP on August 10th, 2011 by Abap master

LEAVE statement is used for leaving from the current screen or list in ABAP programs. It can be used for Stop the current screen processing Switch between lists and screens Stop the current ABAP program processing Call another program using transaction code in an ABAP program. LEAVE statement for screen   LEAVE SCREEN. This statement [...]

ABAP INTERFACES in Objects

Posted in ABAP on August 9th, 2011 by Abap master

INTERFACES statement is used in ABAP Objects programming development. We can declare interfaces globally or locally in our ABAP programs. Interface will contain only declaration parts; it won’t contain any executable statements. We can declare all the components like attributes, methods, types etc in an Interface. In the definition part of a Class the declared [...]

ABAP INSERT into Table statement

Posted in ABAP on August 8th, 2011 by Abap master

INSERT statement is used for inserting items in Database Tables, Index tables, Internal Tables, Field Groups etc in our ABAP programs. Here we are going to refer about the INSERT statement with tables. For tables INSERT statement will insert new lines in the specified data base tables or internal tables. Now let us check for [...]

ABAP INITIALIZATION Event

Posted in ABAP on August 6th, 2011 by Abap master

INITIALIZATION event is used in ABAP executable programs for initializing the variables and logical database before the SELECTION SCREEN processing. Normally, when we execute a program which contains a selection screen, the system processes the standard selection screen first. If we need to process some other things (like initializing) before the selection screen processing, we [...]

ABAP INCLUDE structure

Posted in ABAP on July 26th, 2011 by Abap master

INCLUDE statement can be used for copy the components from a structured type or from a Structure. This statement should come between BEGIN OF and END OF statements in the current ABAP program. The specified structure components will be copied to the structure in ABAP program Syntax: INCLUDE { {TYPE struc_type} | {STRUCTURE struc} } [...]

IMPORT & EXPORT from ABAP memory

Posted in ABAP on July 26th, 2011 by Abap master

IMPORT and EXPORT statements in ABAP programming are used for Reading and writing the data objects in the data cluster of ABAP memory of the current internal session. This statement can also use with cluster database tables and shared buffer of the tables. Here we are going to look at these statements with ABAP memory. [...]