‎2008 Feb 07 1:20 PM
*{Comm Unicode Conversion
OPEN DATASET DDDEIN FOR INPUT IN TEXT MODE.
*}Comm Unicode Conversion
*{Ins Unicode Conversion
OPEN DATASET DDDEIN FOR INPUT IN TEXT MODE
ENCODING DEFAULT.
*}Ins Unicode Conversion
READ DATASET DDDEIN INTO DEIN.
here i am geeting dump. this is due ot DEIN is a structure, contains quanity and currency fields. these are not converted.
So, How can i solve this issues.
Note: if dont understand plese leave youe quiries here, i will give reply immediately.
Thanks
Sudhakar
Edited by: sudhakara reddy on Feb 7, 2008 2:34 PM
‎2008 Feb 07 1:22 PM
Hi,
Check this link
http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3d42358411d1829f0000e829fbfe/content.htm
Regards
Shiva
‎2008 Feb 07 1:38 PM
Declare your structure DEIN with only characters ...
DATA: BEGIN OF fs_input,
data(500) TYPE c.
DATA: END OF fs_input.
Read into fs_input and after that move data into your structure
DEIN
‎2008 Feb 07 2:02 PM
hi
good
i would suggest you to check the SAP release note.
thanks
mrutyun^
‎2015 Aug 27 6:49 AM
Hi
Please set encoding as NON UNICODE when opening the dataset.
Issue will get resolved.
Sandeep Jain