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

Control break statement on numeric / amount field

Former Member
0 Likes
312

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

1 REPLY 1
Read only

Former Member
0 Likes
282

Instead of asking, why not just try it?? You seem to have the code already developed.

Rob