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

DUMP ERROR UNICODE PROG NOT CONVERTABLE

Former Member
0 Likes
500

Hi,

I am doing upload data from excel sheet and i have a dump in the function module AA_FILE_UPLOAD_EXCEL. and the dump error is showing as below :

Data objects in a Unicode program are not convertible.

and the error in the FM line show below

000870 ? CONCATENATE ls_result <lfs_excel

000880 ? IN CHARACTER MODE.

000890 ? CONDENSE ls_result.

000900 ?

000910 ? AT END OF row.

> ? et_filecontent = ls_result.

000930 ? APPEND et_filecontent.

000940 ? CLEAR et_filecontent.

000950 ? * Set previouse column to zero

000960 ? ld_prev_col = 0.

000970 ? ENDAT.

Pls help me to solve the issue and thanks ful to you.

Thanks,

RAJ

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
432

Hi Rajendra

To avoid the dump, please proceed as below:

1. If you system is <b>Unicode enabled</b>, please make sure that you transfer contents of one structure to other individually especially when there are other than CHAR fields.

Eg: struc2-fld1 = struc1-fld1...

2. If you are in <b>Non-Unicode System</b>: SE38-> Goto -> Attributes. Uncheck the option: "<b>Unicode Checks Active</b>".

Kind Regards

Eswar

2 REPLIES 2
Read only

Former Member
0 Likes
433

Hi Rajendra

To avoid the dump, please proceed as below:

1. If you system is <b>Unicode enabled</b>, please make sure that you transfer contents of one structure to other individually especially when there are other than CHAR fields.

Eg: struc2-fld1 = struc1-fld1...

2. If you are in <b>Non-Unicode System</b>: SE38-> Goto -> Attributes. Uncheck the option: "<b>Unicode Checks Active</b>".

Kind Regards

Eswar

Read only

0 Likes
432

Hi Eswar,

Thanks for your kind help and my issues solved.

With Regards,

Rajendra.