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

Background Execution: Special character problem

Former Member
0 Likes
686

Hi,

I am facing a issue with special character :

we have certain materials with descrpition like:

COMPACT,PCKLCELL,94%,0° WEDGE, in foreground this is upload as is wihtout problem..

But in background option the Material is uploaded as:

COMPACT,PCKLCELL,94%,0# WEDGE

There is a problem with ° symbol in this case..

Please suggest something on this so that we get exact material description..

Thanks

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
521

This is a issue with the open dataset statement.

Did you try using different possible options of ENCODING?? sometimes this solves the problem.

IF this doesnt solve the problem you might have to convert the file first to a different codepage so that open dataset can read it correctly.

Check program RSCP_CONVERT_FILE.

3 REPLIES 3
Read only

Former Member
0 Likes
522

This is a issue with the open dataset statement.

Did you try using different possible options of ENCODING?? sometimes this solves the problem.

IF this doesnt solve the problem you might have to convert the file first to a different codepage so that open dataset can read it correctly.

Check program RSCP_CONVERT_FILE.

Read only

0 Likes
521

'#' is diaplayed because SAP cannot recognize the particular character. SAP uses '#' to represent any unrecognized formats.

R u using a flat file to upload this data? If so, save the file as tab delimited text file and then ftp the file to the application server and then use it in ur program using open dataset.

Regards,

Nirmal.

Read only

Former Member
0 Likes
521

Hi Aparna,

Thanks for help..

My problem got solved using the options in Encoding..

Thanks & Regards,

Rohit