‎2009 Apr 03 3:23 PM
hi ,
I need to modify existing data in FKKVKP Z-field.
i am trying to use BAPI_ISUACCOUNT_CHANGE for this.
the EXTENSIONIN under the tables section allows the updation of the z-field value.
however, i can not pass the work area containing the updated FKKVKP values to the VALUEPART (under EXTENSIONIN) since there is a type mismatch of the data.
the statement i have used is move wa_fkkvkp to wa_extn
however i get an error saying they are not mutually convertible. In Unicode programs, they must have the same structure layout.
Please ignore details given if not required. I need help with the conversion matter.
thanks in advance,
Arindam.
‎2009 Apr 03 3:31 PM
HI,
Use this FM.. this help's in assiging the value to the variable which is not mutually converted
CALL FUNCTION 'HR_99S_COPY_STRUC1_STRUC2'
EXPORTING
P_STRUCT1 = wa_fkkvkp
IMPORTING
P_STRUCT2 = wa_extn.
‎2009 Apr 03 3:31 PM
HI,
Use this FM.. this help's in assiging the value to the variable which is not mutually converted
CALL FUNCTION 'HR_99S_COPY_STRUC1_STRUC2'
EXPORTING
P_STRUCT1 = wa_fkkvkp
IMPORTING
P_STRUCT2 = wa_extn.