You are on page 1of 2

Variable manipulation(TRANSLATE, CONDENSE, TAB, ROUND, MOD..

)
Commands to change the contents of ABAP data fields
RANGE Command
Create a range table which is used to store a range of values, same structure as
a select option
ABAP WRITE command
Display basic report output to user
ABAP MODIFY command
Modifying data within an ABAP internal table or database table
UPDATE command
Updating data within an SAP database table
AUTHORITY-CHECK SAP command
Used to check if a user has authroity to view/change sap data
EJECT command to force a new page when printing
Forces new page when printing ABAP code listing
DESCRIBE SAP command
The describe command is used to describe certain properties of and internal tabl
e
STRLEN command
Get value length of a SAP field using STRLEN command
MEMORY ID - Export and Import
Pass data between sap programs using MEMORY ID (Export/Import)
SELECT Command
Selecting data from SAP databases
SUBMIT report (Excecute rep from within a rep)
Executing a report from within another report using the SUBMIT statement
VARYING Command
Function of the DO loop which allows you to move horizontaly along a table row w
ithout actually having to specify each individual field name
STARTING NEW TASK
Execute function module using STARTING NEW TASK statement
IN UPDATE TASK
Execute function module using IN UPDATE TASK statement
IN BACKGROUND TASK
Execute function module using IN BACKGROUND TASK statement
DELETE command
Delete entries of an SAP internal table using the DELETE command
READ command
Get entries of an SAP internal table using the READ command
COLLECT command
Insert entries into an SAP internal table and sum up interger values using the C
OLLECT command

PERFORM command - passing internal table


Using the perform command to pass internal table

You might also like