‎2007 Jul 20 5:20 AM
Hi
experts can u please help me.my problem is i want to know that how to read the value against a particular field by read statement .like i want to read emo_amend against order no.(both r in same table ymt_mill_order.
‎2007 Jul 20 5:23 AM
hi Gaurav,
do this way ..
loop at ymt_mill_order.
lv_tabix = sy-tabix.
clear emo_amend.
read table emo_amend with key order = ymt_mill_order-order.
if sy-subrc = 0.
<get the fields that you want>
endif.
endloop.
‎2007 Jul 20 5:23 AM
hi Gaurav,
do this way ..
loop at ymt_mill_order.
lv_tabix = sy-tabix.
clear emo_amend.
read table emo_amend with key order = ymt_mill_order-order.
if sy-subrc = 0.
<get the fields that you want>
endif.
endloop.
‎2007 Jul 20 5:26 AM
hi
<b>read table itab with key order no = <value> .
into work area.
move work area-emo_amend to <varable of type emo_amend ></b>
regards
ravish
<b>reward if useful</b>
‎2007 Jul 20 5:30 AM
Hi,
please check out the link below it might help you
http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb35f8358411d1829f0000e829fbfe/content.htm
http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3605358411d1829f0000e829fbfe/content.htm
**********please reward points if the information is helpful to you*****************