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: 

Batch characteristics

Former Member
0 Kudos

Hi,

I have an internal table with some data using this i need to get Batch characteristic field names from custom table.

The internal table contains Batchcharacteristic data.

Pls helpme...

Helpful answer will be rewarded with high points.

Edited by: Prince on Jun 6, 2008 11:14 AM

Edited by: Prince on Jun 6, 2008 11:14 AM

Edited by: Prince on Jun 6, 2008 11:14 AM

2 REPLIES 2

former_member184657
Active Contributor
0 Kudos

u can get batch characteristics from the followinf tables

MCH1, AUSP, CABN.

get the values of charg and cuobj_bm from mch1 and link that to ausp table for values objek, atinn, atwrt,

using objek = mch1-cuobj_bm.

now get atinn and atnam from cabn using atinn = ausp-atinn

pk

Former Member
0 Kudos

Hi,

To get Batch classification query these table's in the given sequence.

Get CUOBJ from INOB where klart = '023' and

objek = (concatenate matnr + charg).

Get CLINT from KSSK where OBJEK = cuobj and

klart ='023'.

Get IMERK from KSML (Key Clint)

Get ATNAM from CABN (key ATINN=IMERK).

Thanks,

MM.