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

Article / Material Classification Table

Former Member
0 Likes
787

Dear All,

I would like know the table name where I can know the classification assigned to articles.

All helpful answers will be rewarded.

Regards

Renjan

5 REPLIES 5
Read only

Former Member
0 Likes
733

Hi

better use the following BAPI's: for material classification

BAPI_OBJCL_GETDETAIL

BAPI_OBJCL_CHANGE

or use the fun module:

CLAF_CLASSIFICATION_OF_OBJECTS.

related Tables are

CAWN, CABN, AUSP etc.

Reward points if useful

Regards

Anji

Read only

Former Member
0 Likes
733

Hi,

Can u be more specific.. r u looking for the Classification view details .. like class & characteristic tables...

Thanks,

Manjunath MS

Read only

0 Likes
733

Hi Manjunath,

See... We are assigning a classification to articles using the transaction CL20N...

I need to filter those articles for which this classification is not assigned. For that, I need to know to which table the data is getting saved...

Regards

Renjan

Read only

Former Member
0 Likes
733

Hi,

Check out these Tables KLAH,AUSP,CABN,CAWN tables.

Reward Points if it is Useful.

Thanks,

Manjunath MS

Read only

0 Likes
733

Hi...

this code list all clases for specific materials


SELECT kssk~objek
into corresponding fields of table ITAB
from KSSK join KLAH
ON
     kssk~clint = klah~clint
where
     kssk~objek in it_matnr.

hope it works for you