Application Development 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: 

Sales Order Total Weight Display in a report

Former Member
0 Kudos

Hi All,

Is there any way that i can display the total weight and Unit of weight of a sales order in a report. Please let me know all the possibilities..

RV45A-BTGEW and RV45A-GEWEI are the technical names of the fields that i have to display..

thank you in advance.

Suresh

2 REPLIES 2

Former Member
0 Kudos

Hi Suresh,

The fields and values you are looking for are available in VBAK and VBAP tables.

Do a select to these tables and pick up the values. I think this is the best place to look up for those values.

Cheers

VJ

Former Member
0 Kudos

Hi Suresh,

After having selected the required fields and the corresponding values into an internal Table..

do something like this..

loop at itab.
 at last.
 sum.
 write : / 'TOTAL',itab-BTGEW. 
 endat.
endloop.

the command sum adds up all the quantity fields..

regards

satesh