‎2008 Aug 21 7:52 PM
I need to validate the characteristic values for material classification.
Can anyone let me know the function modules that can help me do that?
‎2008 Aug 22 4:41 AM
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
‎2008 Aug 22 7:29 AM
Hi Mahesh Sawant
You Can Use FM : ALM_ME_GET_CHAR_CHECKTABLE
thanks
Sreenivas Reddy
‎2008 Aug 22 8:23 AM
‎2008 Aug 22 10:01 AM
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
‎2008 Aug 22 2:19 PM
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.