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

customer classification table

Former Member
0 Likes
6,326

Hi Experts,

Need to know about customer classification table where characteristic values are save.

I found a FM which returns the values fixed as defauld etc but i am not getting anything related to a customer.

In T code XD01 & then extra - > Classification, if i put my class as TEST it gives its charactersitics set in Tx. CL04 with its default values. If i change those default values on which table it saves the data. I tried alot but didnt get any FM or table which saves data against customer no.

Plese help me on this,

Regards,

Nik

4 REPLIES 4
Read only

Former Member
0 Likes
3,742

HI ,

U can try This BAPI " BAPI_OBJCL_GETDETAIL "

Thanks

shambhu

Read only

0 Likes
3,742

Hi Shubham,

can you please tell me what will be the fields passed...

I am not able to get the data, may be i am passing the wrong values:

objectkey: 00000001(customer No)

object table: KNA1 (Customer general data)

classNum: 011

classtyp: temp

Confused with the objecttable as i am not getting objno in KNA1

Read only

0 Likes
3,742

Hello Nikhil,

Try the following

In the function odule BAPI_OBJCL_GETDETAIL pass the following parameters

Objectkey = customer number

objecttable = 'KNA1'

Classtype = '011'

for classnum you will have to pass the name of the class, Go to XD03, enter the customer number Extras->Classification. The screen which appears will have a table control and there will be Class coulmn, that would be passed to the parameter classnum. The output will be in the tables parameter ALLOCVALUESCHAR.

At table level check table AUSP

Hope this helps

Regards

Sachin

Read only

0 Likes
3,742

Solved