cancel
Showing results for 
Search instead for 
Did you mean: 

clicking on the "download to excel" button, program terminates.

Former Member
0 Kudos

Hello Experts,

This issue is raised after upgrade form 4.6c to ECC 6.0

After execution using transaction code ZFAQN with variant UPGARDE and clicking on the "download to excel" button, program terminates. Runtime error: UC_OBJECTS_NOT_CONVERTIBLE.

Error analysis:

The statement

"MOVE src TO dst"

requires that the operands "dst" and "src" are convertible.

Since this statement is in a Unicode program, the special conversion

rules for Unicode programs apply.

In this case, these rules were violated.

Trigger Location of Runtime Error

Program SAPLOLEA

Include LOLEAU10

Row 510

Module type (FUNCTION)

Module Name AC_FLUSH_CALL_INTERNAL

Error is coming in this line:

SYSTEM-CALL SOLID POINTER

MOVE RESULT_VARS_WA-POINTER FROM VARS-VALUE.

Please reply asap.

Regards.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi, Unlike earlier in Unicode enabled systems we can not pass data from one structure to another directly if the structure has types other than C(Character). To overcome, you have to explicitly move value of each field. Incase you are moving to a string, use offset operations.