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: 

How do you get the serial number per Batch/Material combination?

Former Member
0 Kudos

Hi,

How do you get a serial number, for a batch/material combination?

Will it be unique?

Thanks,

John

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi,

Go to table EQUI. The select query would be:

select single sernr from equi

where matnr = v_matnr

and charge = v_charge.

2 REPLIES 2

Former Member
0 Kudos

hi,

Go to table EQUI. The select query would be:

select single sernr from equi

where matnr = v_matnr

and charge = v_charge.

former_member749051
Discoverer
0 Kudos

Perfect answer !!!