‎2006 Nov 13 3:14 AM
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
‎2006 Nov 13 3:20 AM
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
‎2006 Nov 13 3:20 AM
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
‎2006 Nov 13 3:53 AM
Hi Eswar,
Thanks for your kind help and my issues solved.
With Regards,
Rajendra.