Posts

Internal Tables-Questions and Answers - SAP ABAP

Image
INTERNAL TABLE Interview Questions & Answers 1. Which ABAP Dictionary object types is a description of an internal table? Table type 2. You write an application that stores data in an internal table temporarily. Since the application is runtime critical, you consider which type of internal table to use. Which statements about internal tables are correct? -> You can use the INSERT TABLE statement to add data records to all types of internal table. -> if you want to add an entry to a sorted table, the sort sequence must remain the same. 3 . Which statements about internal tables concerning the program performance are correct? - The Costs for Reading a Data Record from A Hashed Table Do Not Depend On the Number of Entries in The Table. - If A Field Symbol Is Assigned with The Read ... Assigning <Fs> Statement, The Entry in The Internal Table Can Be Changed Directly Using This Field Symbol. - If A Field Symbol Is Used to Access the Content...

Modularization Techniques in SAP ABAP

Image
Modularization Techniques in SAP ABAP Objective: We can use few techniques f, if the program contains the same or similar blocks of statements or it is required to process the same function several times these techniques are Modularization Techniques. Modularization Modularization is nothing but breaking down and organizing program's code into a modular structure, rather than dealing with the program as a single unit. Where to we use Modularization Techniques In side ABAP Code (which can be written by using Transactions SE38/SE37/SE24/SE80). Use of modularization 1) Improves readability      -> Easy to read/Analysis of the code. 2) Re-usability              -> can be used in other programs as well. 3) Encapsulation of data     -> Bundling/making a specific code in a single unit. 4) Reduces code redundancies-> to avoid duplication of ...