Quick overview of various ways to check if there is any record in the Internal Table ITAB using the INITIAL, By using number of lines and more.
Along with ASSIGNING addition for the itab processing, we have REFERENCE INTO. Let’s take a deep dive into its usage.
ABAP New Debugger has also got few new features as part of release 7.0 EhP2. A new addition “Key” in Table Display Tool is added to check various keys available on the Internal Table.
Standard Table is the most widely used table Type. It has performance drawbacks if not used properly.
Today, we’ll see another performance drainage – Internal Table Copy. If we don’t use the data properly, we’ll run into the situation where we’ll use lot of resoruces to perform the ITAB copy and end up reducing the performance of our application. Sometimes, we pass the ITAB from one application to diffrent FM / Method,…
Describes a way to create a dynamic internal table from coding. This is also can be used when RTTS is not supported or class CL_ALV_TABLE_CREATE is not available. You can find all Dynamic ITAB discussions at . Recently, one of my friends asked me for the solution to create Internal Table. The problem was his…