cancel
Showing results for 
Search instead for 
Did you mean: 

Batch Classification Data Report

Former Member
0 Kudos

Hi Experts,

I want to create a report that displays the contents of the batch classification data (characteristics) in each batch. Can I do this via ABAP query? May I know which tables contain this data? Thanks!

Regards,

Marvin

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member

Why dont you try using Txn CL30N to get the classification data?

Just provide the class name, type 023 (I assume so) and do a 'Find in initial class'.

You will get the batches you want.

Regards,

Aroop

Former Member
0 Kudos

Thanks for this! Something new to discover!

Former Member
0 Kudos

i'll post in a while how i came up with the report. thanks to those who helped!

Former Member
0 Kudos

Hello

First way:

1. With material number and batch number goto table MCH1 and get CUOBJ_BM.

2. Goto table AUSP with OBJEK = MCH1-CUOBJ_BM and KLART = '023' (or '022')

You will get characteristics (AUSP-ATWRT, AUSP-ATFLV)

Other way: use bapi BAPI_OBJCL_GETDETAIL for this. (examples of use you may find yourself in SDN)