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 to get material characteristics

Former Member
0 Kudos

hello,

I am using SAP ECC 6.0 , Please show me how to get the characteristics for a material. ( which FM and how to pass the parameters)

Thanks

1 ACCEPTED SOLUTION

GauthamV
Active Contributor

Use this FM.

CLAF_CLASSIFICATION_OF_OBJECTS

8 REPLIES 8

Former Member
0 Kudos

Hi,

You can get material characterstics from AUSP table

thanks,

Pavan

GauthamV
Active Contributor

Use this FM.

CLAF_CLASSIFICATION_OF_OBJECTS

former_member404244
Active Contributor
0 Kudos

Hi,

Use the table AUSP and the field is objek, pass material number to this.

Regards,

Nagaraj

Former Member
0 Kudos

Hi,

you can get the Internal Characteristic from AUSP as below,

SELECT SINGLE ATINN

FROM AUSP INTO ln_atinn

WHERE OBJEK = '39608'. "Material Number

Below FM will give only the characteristic name for the fetched Internal characteristic (ln_atinn) from above query,

CALL FUNCTION 'CONVERSION_EXIT_ATINN_OUTPUT'

EXPORTING

INPUT = ln_atinn

IMPORTING

OUTPUT = ln_atnam. "Characteristic Name

CABN table would be helpful, If you are looking for detailed characteristic values.

Regards,

Hindhu

Former Member
0 Kudos

HI

Pass order number (VBAP-VBLEN) and line number for the line item in the sales order to Function VC_I_Get_Configuration

It will display all the characteristics for that material in that particular sales order.

try and revert

Former Member
0 Kudos

BAPI_MATERIAL_GETCHARMERCHHIER

0 Kudos

hi ,

Thank you for your help .

Here it is strange that , When I browse MM03 I can see the characteristic (001, MARA), but when I browse AUSP with objek = material number I see nothing ? and more the FM that you give me do not find any characteristics of any material .

Thanks

0 Kudos

This should be the right answer, more accurate & correct one.