Waht is "READ TABLE" command?? Whats the use of it??
Whats the syntax of the same?
Answer Posted / sayak roy
for better performance please use the below syntax.
SORT it_tab2 BY fname1 fname2.
LOOP AT it_itab1 into wa_itab1.
READ TABLE it_tab2 into wa_itab2
WHERE fname1 = wa_itab1-fname1
fname2 = wa_itab1-fname2
BINARY SEARCH.
IF SY_SUBRC = 0.
Do the processing.
ENDIF.
ENDLOOP.
Even if you read the table with INDEX you can sort the table
depending on what result you are expecting from that read,
means, the order and the priority of the value of the
particular fields expected from that READ statement.
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is an abap?
What are the dynapro keywords?
Difference between domain and data element? What are aggregate object?
How to handle error in session method? : abap bdc
What are the components of sap scripts? : abap hr
What are the different attributes that can be assigned to a variant?
What is asap methodology? : sap abap hr
if while coding power goes off , how to retrieve the codes?
Differentiate between transparent tables, cluster tables and pooled tables
What is a development class? : abap data dictionary
Update types in Call transaction method. What is the difference?
What are the aggregate objects in the data dictionary? : abap data dictionary
Explain the function module in bdc?
What is meant by performance analysis? Have done anything to improve the performance?
What are the different types of operators in the sap abap?