Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Read Command

Former Member
0 Likes
643

Tell me abt Read Command in abap ?

4 REPLIES 4
Read only

Former Member
0 Likes
612

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

Read only

Former Member
0 Likes
612

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

Read only

Former Member
0 Likes
612

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

Read only

Former Member
0 Likes
612

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