Boolean Operators are used to combine the logical expressions to produce a single output. Logical expression is a combination of one or more operands with a relational operator.
Category Archives: SAP ABAP
What is Structure? Structure is a group of components defined under a name. A component is a field that can be an elementary type or another structure or table. The group ofcomponents defined under structure can be of any data type that are stored one after the other in the memory in the same order […]
What is Table? Table is a logical structure for storing data. Table is the set of rows and columns that are logically related. Table can be defined independent of the database in ABAP dictionary. The table fields are defined with the database independent elementary data types and lengths. The physical table definition created in the […]
What is View? View is a logical representation of summarized data from one or more tables. The view structure can be defined by specifying table names and required field names from the joined tables. View is not stored physically. View used to combine the data from one or more tables. The table fields that are […]
What is Search help? Search help is a tool to search for the data records in the system. Search help is field help provided to the user to display field related information. The input help(F4) is a standard function for search help in R/3 system. The user can display the field possible values list with […]
What is Lock Objects? Lock mechanism allows simultaneous accessing of same data records by two or more users at the same time. Functional Modules are responsible for set and release the locks. Function modules are automatically generated from the lock objects definition in the ABAP/4 Dictionary. When these functional modules are called, the retrived table […]
What is Internal Table? Internal table is a temporary table that is created and used during the program execution and deleted before the program terminated. Internal tables used to store the dynamic data that sets from a fixed structure in the main/working memory in ABAP. The life time of the table is until end of […]
WHILE loop executes the block of statements until the specified condition is false. The block of statements can gets executed any number of times as long as the condition is true.
In while loop, condition is validated before executing the block of statements. If the condition is false for the first time, no statements in the loop gets executed.
Internal tables used during the program execution for processing the data dynamically. So, the internal table should be created in the program where it is using.
DO loop executes the block of statements until the specified number of times. DO loop is an unconditional looping statement.
