Suppose u r using FOR ALL ENTRIES. What happens when there
is no data in the itab which is using all the entries?
Answer Posted / tharun
when you are using for all enteries always check whether
IF ITAB NOT INITIAL.THis internal table is the one
used 'for all enteries in itab'.this will prevent from the
query fetching all data.
IF ITAB NOT INITIAL.
select ... for all enteries in itab.
endif.
Is This Answer Correct ? | 13 Yes | 0 No |
Post New Answer View All Answers
Can we use flow logic control key words in abap/4 and vice-verse?
Explain what is sap script? What is the purpose of sap script? Difference between sap script and report?
What are multiple use BADIS?
What are different data types in abap/4?
What are the organizational related Infotypes
What is the difference between call transaction and session method? : abap bdc
What is screen flow logic? What are the sections in it?
Can we write the code both call transaction and session method in single program?
Explain some essential objects in abap dictionary?
What are different abap/4 editors?
If A is the super class of B. And both the classes have constructor. We create an object of class B. Then which constructor will be called? If both then in which order?
How can we omit a leading sign and a leading zero in sapscript?
what is call back in alv?
How can an internal table with header line and one without header line bedistinguished when passed to a subroutine?
How do you process errors in call transaction method? : abap bdc