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

Unicode - Read dataset dump

sudhakar196
Participant
0 Likes
866

*{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

4 REPLIES 4
Read only

Former Member
Read only

Former Member
0 Likes
580

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

Read only

Former Member
0 Likes
580

hi

good

i would suggest you to check the SAP release note.

thanks

mrutyun^

Read only

Former Member
0 Likes
580

Hi

Please set encoding as NON UNICODE when opening the dataset.

Issue will get resolved.

Sandeep Jain