‎2010 Jun 17 3:32 PM
Hi All,
Can you please guide me if my internal table structure is as mentioned below:
types : begin of inttype,
vbeln type vbeln_vf,
vgbel type vgbel,
bstnk type bstnk,
matnr type matnr,
kbetr type kbetr,
posnr type posnr_vf,
fkimg type fkimg,
end of inttype.
data : t_table type standard table of inttype,
rec_table type inttype.
Sort t_table by vbeln vgbel bstnk matnr kbetr.
Loop at t_table into rec_table.
at new kbetr.
processing.
endat.
endloop.
-
Question : Can i use control break statement at KBETR (since this is an amount /rate)
Kindly add your valuable comments, please share the link / documentation on the same.
Regards,
Hemant
‎2010 Jun 17 3:52 PM
Instead of asking, why not just try it?? You seem to have the code already developed.
Rob