Tables in ABAP : Standard Sorted and Hashed

We always get confused about the type of internal tables. So ABAP knows the three table types STANDARD, SORTED, and HASHED table. Each of these table types differs in the way they are declared, accessed, and changed during runtime. Lets understand this with the help of an example For the following declaration we use the local type ty_sales_order_item which has … Continue reading Tables in ABAP : Standard Sorted and Hashed

EXCEPTIONS IN SAP ABAP

Exceptions are way to communicate that something went wrong. An exception is a problem that arises during the execution of a program. When an exception occurs the normal flow of the program is disrupted and the program application terminates abnormally, which is not recommended, therefore these exceptions are to be handled. ABAP exception handling is built upon … Continue reading EXCEPTIONS IN SAP ABAP