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

MATERIAL CLASSIFICATION

Former Member
0 Likes
513

hi

can ny1 tell me if i hv characteristic value description then how can i find the charactisic value ...of a material characteristic.

lets say for a material with matnr 12242 we hv a characteristic Z_ewr_12 with value C.

nd characteristic value desc is 'consumer'.

How can i get characteritic values associated with a material....ny FM ????

need FM or table name....hv to use that in abap program soc ant use mm03

4 REPLIES 4
Read only

Former Member
0 Likes
463

Hit the table ausp.

Regards,

ravi

Read only

Former Member
0 Likes
463

AUSP table doesnt link material no with characteritic values.....

Read only

Former Member
0 Likes
463

Hey,

Use the Function BAPI_OBJCL_GETDETAIL with the below values

OBJECTKEY = Material No. with leading zeroes

OBJECTTABLE = MARA

CLASSNUM = Class Name

CLASSTYPE = 001

See tables CABN and CAWN for characteristics

-Kiran

Message was edited by: Kiran Raorane

Read only

Former Member
0 Likes
463

Use function module CLAF_CLASSIFICATION_OF_OBJECTS to get what you need. AUSP is where the characteristic values of an object are stored but sometimes(for instance, batch characteristics), you need to go through INOB. So it is better to use the FM.