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 the difference between dialog program and a report?
How to convert normal function module to bapi?
What is the difference between synchronous and asynchronous update?
Which objects are independent transport objects?
How to debug a script in abap?
What are match codes? describe?
Print options in smartforms?
How do you connect to the remote server if you are working from the office for the client in remote place?
Define infotype ? : abap hr
how to capture the errors in bdc Call transaction method?
After running a BDC program in background, next day morning when you see the results, few records are not updated(error records). What will you do then ?
What are the disadvantages of different types of bdc's?
What are conversion & interface programs in sap?
What are different abap/4 editors?
How do we handle multiple line items in BDC's.