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

Code page problem

david_fryda2
Participant
0 Likes
403

Hi everyone,

I created a webservice via XI.

In my internet explorer, I get to the web service form and fill a field text in hebrew before executing it.

Now using se37, I put an external breakpoint in the RFC to see what text I receive. I only receive gibrish and not hebrew.

Does anyone has a solution ?

Thanks.

Regards.

3 REPLIES 3
Read only

Former Member
0 Likes
374

Hello David,

This sounds like a unicode problem. Is your XI machine Unicode enabled? Is the Hebrew language installed in the XI-machine (check with transaction SMLT). If this is the case, could you tell me which function module you are testing?

Good luck!

Jan-Willem Kaagman

Read only

Former Member
0 Likes
374

Hi David,

You Should have Hebrew language installed into your system and when your are logging into SAP , you have login in Hebrew othere wise you will get "INVALID CODEPAGE" error.

Hope This Info Helps YOU.

<i>

Reward Points If It Helps YOU.</i>

Regards,

Raghav

Read only

0 Likes
374

Hi everyone,

I am sorry. I still get gibrish.

I have hebrew installed on my computer and I do logged into SAP with hebrew.


Destination dest = new Destination();
dest.AppServerHost = "server";
dest.Client = client;
dest.SystemNumber = syst;
dest.Language = "HE";
dest.Username = "user";
dest.Password = "pass";
ProxyBAPI_COMPANYCODE_GETDETAIL.ProxyBAPI_COMPANYCODE_GETDETAIL proxy = new ProxyBAPI_COMPANYCODE_GETDETAIL.ProxyBAPI_COMPANYCODE_GETDETAIL(dest.ConnectionString.ToString());

Thanks.