Internal tables used for processing the data dynamically during the program execution.
So, populating data to the internal table can be done during the program execution.
The populating data can be done in three ways by using the below statements –
Category Archives: SAP ABAP
A loop in the another loop is called as nested Loop. These loops can contains same loops as nested or different loops as nested together.
In some scenarios, specific iteration execution needs to be skipped, bypassed or interrupted. Loop control statements used to support to skip the execution of statements block when specific conditions met.
CONTINUE statement skips the current iteration and control passes to the next iteration. CONTINUE statement can be used as conditional or unconditional based on the requirement/usage. Generally CONTINUE statement comes up along with a condition.
CHECK statement is used to execute the set of statements code coded under CHECK statement when the specified check-condition is true.
EXIT statement terminates the loop completely and transfers control to the statement block immediately after the loop.
EXIT statement can be used as conditional or unconditional based on the requirement/usage.
Data dictionary is a centralized repository with the information about the data in the information system.
Its main objective is to provide the information about the data such as meaning, relationships to other data, origin, usage and format.
What is Domain? Specifies the technical characteristics of a table field. Domain assigned to a data element and defines a value range. Any value of the table field that linked to a data element range also defines by a domain. Fields or components that assigned to a same domain gets changed if domain changed. Domain […]
What is Data Element? Data elements specifies the semantic information of table field. Data element gives the detailed information about fields. Data element used to define the type of the field, structure or table row. Data element contains the information about editing the corresponding screen field and table field meaning or structure component. The data […]
Internal tables used for processing the data dynamically during the program execution. So, the data reading from the internal table can be done during the program execution.
The internal table reading can be done in two ways –
