‎2006 Nov 09 2:42 PM
‎2006 Nov 09 2:45 PM
Hi Chitrakant,
The best will be Go into ABAP Editor(Se38)-> Go inside the program ->type <b>READ</b> ->keep cursor on READ stmt -><b>Do F1...</b>
Hope that helps.
Manish
Message was edited by: Manish Kumar
‎2006 Nov 09 2:46 PM
Hi
Read statement is used to read a single line of an internal table.
For further information check the below link.
http://help.sap.com/saphelp_47x200/helpdata/en/fc/eb35f8358411d1829f0000e829fbfe/content.htm
‎2006 Nov 09 2:49 PM
Hi
READ command is used for to read one value or one row from internal table.
Ex
loop at itab.
read table itab1 with key f1 = itab-f1.
if sy-subrc = 0.
write:/ itab1.
endif.
endloop.
Mark points if helpful.
Regs
Manas Ranjan Panda
Message was edited by: MANAS PANDA
‎2006 Nov 09 2:51 PM
Chitrakant,
1. Read statement you use for internal tables to get a single record by giving condition or index.
2 . GIve u sy-subrc value.
-Anu