SAP ABAP Question:
Download Questions PDF

How do you take care of performance issues in your ABAP programs?

Answer:

Performance of ABAP programs can be improved by minimizing the amount of data to be transferred. The data set must be transferred through the network to the applications, so reducing the amount of time and also reduces the network traffic.

Some measures that can be taken are:

- Use views defined in the ABAP/4 DDIC (also has the advantage of better reusability).

- Use field list (SELECT clause) rather than SELECT *.

- Range tables should be avoided (IN operator)

- Avoid nested SELECTS.

Download SAP ABAP Interview Questions And Answers PDF

Previous QuestionNext Question
What are internal tables? How do you get the number of lines in an internal table? How to use a specific number occurs statement?What are datasets in ABAP?