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

not mutually convertible

Former Member
0 Likes
379

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
341

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.

1 REPLY 1
Read only

Former Member
0 Likes
342

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.