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

How to save classification data?

Former Member
0 Likes
887

Hallo guys,

I have a pop-up window with table control for inserting classification data: class, characteristic description, value... This classification data has to be assigned to service master number - asnum from asmd table. How can I save this classification data? Where to save it? What tables are used for that? Can I use some standard FM to save classification data?

Thanks.

3 REPLIES 3
Read only

Former Member
0 Likes
621

check standard SAP program RCCLBI03 and its documentation.

Rob

Read only

Former Member
0 Likes
621

BAPI_OBJCL_CREATE - for creating the assignemnts

BAPI_OBJCL_CHANGE - can be used to update classification data.

The data gets updated in table AUSP.

Read only

0 Likes
621

Does anybody know why

CALL FUNCTION 'BAPI_OBJCL_GET_KEY_OF_OBJECT'

EXPORTING

objectname = lv_objkey

objecttable = 'ASMD'

classtype = '038'

  • create_missing_key = 'X'

IMPORTING

clobjectkeyout = lv_objkey_o

TABLES

return = lt_return.

doesn't work for services?

It gives me 'Class type 038 requires additional objects' message in lt_return.

Thank you.