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

Validate Characteristic values

Former Member
0 Likes
2,993

I need to validate the characteristic values for material classification.

Can anyone let me know the function modules that can help me do that?

5 REPLIES 5
Read only

Former Member
0 Likes
1,336

Unfortunately Function modules do not retrieve all the Classification data in any master record.

But you can go to different DB tables to get the characteristic values of any Material.

We have tables like CABN, AUSP, INOB, CAWN, CAWNT, etc.

Look at them and you will get all the information in these tables.

Retrieve the values using simple ABAP code

Read only

Former Member
0 Likes
1,336

Hi Mahesh Sawant

You Can Use FM : ALM_ME_GET_CHAR_CHECKTABLE

thanks

Sreenivas Reddy

Read only

Azeemquadri
Contributor
0 Likes
1,336

Please check the FM CLAF_CLASSIFICATION_OF_OBJECTS

Read only

Former Member
0 Likes
1,336

Mahesh,

Try with the following function modules:

BAPI_OBJCL_GETCLASSES - gives you all the classes associated to a Material and their characteristics and values also.

BAPI_OBJCL_EXISTENCECHECK - checks whether a certain Material and Class are associated or not

Regards,

Kiran Bobbala

Read only

Former Member
0 Likes
1,336

Hi Guys,

Thanks for the replies,

I did find out some function modules that will help.

Function group is CTMS.

for my particular requirement, i uesd CTMS_CLASS_DDB and CTMS_CHAR_VALUE_CHECK.

Calling CTMS_CLASS_DDB is a pre-requisite for calling CTMS_CHAR_VALUE_CHECK.

Regards,

Mahesh.