‎2011 Jun 30 3:14 PM
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?
‎2011 Jun 30 5:42 PM
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".
‎2011 Jun 30 5:42 PM
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".
‎2011 Sep 05 1:46 PM