‎2007 Dec 06 8:47 AM
hiiii.
iam using 2 itabs.my itab1 and itab2 consist of 411 fields (411 columns ) and it consist of only 1 records but 411 fields in that.so how to comapre each fields.......itab1 n itab2 is a structure of (CAUFVDB)
for eg....
loop at itab1.
read table itab2 with key field = itab1-field1.(how i wll comapre 411 fields)
if sy-subrc = 0.
....................
endif.
endloop.
‎2007 Dec 06 8:54 AM
You can try this
loop at itab1.
read table itab2 from itab1.
if sy-subrc = 0.
....................
endif.
endloop.
http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb35f8358411d1829f0000e829fbfe/content.htm
‎2007 Dec 06 8:58 AM
loop at it into wa.
read table it2 fro wa with key wa = wa-field1 wa = wa-field1.
if sy-subrc = o.
succ.
endif.
endloop.
‎2009 Mar 02 10:45 AM