What are the differences between SAP memory and ABAP memory?
ABAP Memory is a memory area in the internal session (roll area) of an ABAP program. Data within this area is retained within a sequence of program calls, allowing... Read more »
ABAP Memory is a memory area in the internal session (roll area) of an ABAP program. Data within this area is retained within a sequence of program calls, allowing... Read more »
AT SELECTION-SCREEN event is triggered in the PAI of the selection screen once the ABAP runtime environment has passed all of the input data from the selection screen... Read more »
GET CURSOR statement transfers the name of the screen element on which the cursor is positioned during a user action into the variable . GET CURSOR FIELD [OFFSET... Read more »
Free - You can use FREE to initialize an internal table and release its memory space without first using the REFRESH or CLEAR statement. Like REFRESH, FREE works... Read more »
SELECT-OPTIONS: specify are displayed on the selection screen for the user to enter values. Parameters: dname like dept-dname. Select-options: dname for dept-dname. Read more »
By using two types of function modules to be called in SAP Script: 1)HELP_OBJECT_SHOW_FOR_FIELD 2)HELP_OBJECT_SHOW Read more »
SE01 - Correction & Transport Organizer SE09 - Workbench Organizer SE10 - Customizing... Read more »
Mark the Table maintenance allowed flag if users with the corresponding authorization may change the data in the table using the Data Browser (Transaction SE16).... Read more »
Check Table: The ABAP Dictionary allows you to define relationships between tables using foreign keys . A dependent table is called a foreign key table, and the... Read more »
Tables: 1)Data is permanently stored in tables in the database. 2)Database tables are generated from them. Structure: 1)It contains data temporarily during program... Read more »
Reason for Setting Lock: Suppose a travel agent want to book a flight. The customer wants to fly to a particular city with a certain airline on a certain day. The... Read more »
The sequential files (ON APPLICATION SERVER) are called datasets. They are used for file handling in SAP. OPEN DATASET [DATASET NAME] FOR [OUTPUT / INPUT / APPENDING] IN... Read more »
There are two events in Dialog Programming i.e. screen: 1. PBO (Process Before Output) – Before the screen is displayed, the PBO event is processed. 2. PAI (Process... Read more »
OPEN_FORM – This module opens layout set printing. This function must be called up before we can work with other layout set function like WRITE_FORM. WRITE_FORM... Read more »
Page Window: In this window, we define the margins for left, width, upper and height for the layout of Header, Logo, Main, & Footer Read more »
Control level processing is allowed within a LOOP over an internal table. This means that we can divide sequences of entries into groups based on the contents of... Read more »
Go to SE71, give layout set name, go to utilities select debugger mode on. Read more »
There are maximum 6 sessions open in SAPgui. Read more »
System variables have been predefined by SAP. We can use these variables in formulas or, for example, to pass on certain pieces of information to a function module.... Read more »
Session method – Use the BDC_OPEN_GROUP to create a session. Once we have created a session, then we can insert the batch input data into it with BDC_INSERT. Use... Read more »