‎2007 Sep 04 4:01 PM
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.
‎2007 Sep 04 10:16 PM
‎2007 Sep 05 12:21 AM
BAPI_OBJCL_CREATE - for creating the assignemnts
BAPI_OBJCL_CHANGE - can be used to update classification data.
The data gets updated in table AUSP.
‎2007 Sep 06 12:50 PM
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.