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

Modify several characterics with BAPI_OBJCL_CHANGE

yonatanedgardo_diaz
Participant
0 Likes
890

Hi,

I have to change several characteric with BAPI_OBJCL_CHANGE, that change values in AUSP.

I only change one of characterics but not with several positions.

CALL FUNCTION 'BAPI_OBJCL_CHANGE'

EXPORTING

OBJECTKEY = l_object " For Example '000000000000064002'

OBJECTTABLE = C_TABLE " For Example 'EQUI'

CLASSNUM = C_CLASS " For Example 'EQUIPOS'

CLASSTYPE = C_TYPE " For Example '002'

STATUS = '1'

STANDARDCLASS = 'X'

KEYDATE = SY-DATUM

TABLES

ALLOCVALUESNUMNEW = TI_NUM

ALLOCVALUESCHARNEW = TI_CHAR

ALLOCVALUESCURRNEW = TI_CURR

RETURN = RETURN.

I look that in table TCLA i dont have field OBTAB = ' AUSP' as value. Any know how entries values in this table?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
680

TCLA will not have an entry of "AUSP" for field value "OBTAB" as AUSP is the table which has the characteristic values. You should be looking for an entry in TCLA for OBTAB = "EQUI".

2 REPLIES 2
Read only

Former Member
0 Likes
681

TCLA will not have an entry of "AUSP" for field value "OBTAB" as AUSP is the table which has the characteristic values. You should be looking for an entry in TCLA for OBTAB = "EQUI".

Read only

yonatanedgardo_diaz
Participant
0 Likes
680

Solved