Internal Tables – Part 2

To know the concepts of an internal tables please check the post – Internal tables – Part 1. In this section let’s see some operations on standard internal table practically in programs. Putting data in a standard internal table using keyword – ‘APPEND’ statement. The APPEND statement adds a single Read more…

Function Modules

Function modules make up a major part of a SAP system, because for years SAP has modularized code using function modules, allowing for code reuse, by themselves, their developers and also by their customers. Function modules are sub-programs that contain a set of reusable statements with importing and exporting parameters. Read more…

Internal Tables – Part 1

Welcome Everyone…. Here we will talk about internal tables and some operations on it. Firstly, internal tables are a dynamic dataset which are capable to hold records. Data in an internal table is stored in rows and columns and contains data only at runtime unlike DB tables. All the records Read more…