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: 

characterstics for cuatomer material combination

Former Member
0 Kudos

Hi All,

I want to validate the following for a customer / material

1.class type

2.class number

3.characterstic name

4.characterstic values

Could any one of you guide me which tables to look for if i want to validate the following all the characterstics name and their values under customer / material combination.

there must be some bapi

as we assign characterstics for cust / material through transaction VCH1.

PLS HELP ME ON THIS

1 ACCEPTED SOLUTION

Former Member
0 Kudos

<b> TABLE KOTH002</b> USE <b>knumh</b> FROM THIS

GO TO <b>TABLE KONDH</b>

HERE IS WHAT YOU LOOKING FOR.

REWARD IF USEFUL.

AMIT SINGLA

Message was edited by:

Amit Singla

4 REPLIES 4

Former Member
0 Kudos

<b> TABLE KOTH002</b> USE <b>knumh</b> FROM THIS

GO TO <b>TABLE KONDH</b>

HERE IS WHAT YOU LOOKING FOR.

REWARD IF USEFUL.

AMIT SINGLA

Message was edited by:

Amit Singla

0 Kudos

thanks amit for the information

but from kondh table i able to get

condition record no.

object no.

class no.

but i also need the characterstics related to customer / material combination

so i think i need to enter oject no. and class no. to some table to get characterics and their values

so can u pls guide me on this also

pls tell if any function module or bapi is available for this

Thanks

Taran

0 Kudos

CALL FUNCTION 'CLAF_CLASSIFICATION_OF_OBJECTS'

EXPORTING

CLASSTYPE = classtype

OBJECT = OBJECT

OBJECTTABLE = 'KONDH '

INITIAL_CHARACT = ' '

TABLES

T_CLASS = XCLASS

T_OBJECTDATA = XCLOBJDAT

EXCEPTIONS

NO_CLASSIFICATION = 1

NO_CLASSTYPES = 2

INVALID_CLASS_TYPE = 3

OTHERS = 4.

0 Kudos

thanks amit for the help.