cancel
Showing results for 
Search instead for 
Did you mean: 

JCO Func Call-Parameter Value trancated (frm unicode system)

Former Member
0 Kudos

The parameter values which are being passed from R/3 system are getting truncated when it is being passed on from a unicode enabled RFC destination. When the RFC destination is unicode disabled the parameters are coming correctly.

For example in a func call the import parameters are

property1=0201 (number)

property2='Y' (string)

When we enable unicode, the value we recive in the rfc detination is

property1=02

property2=<null>

Once we disable unicode from the R/3 side the values are received properly. Looks like the charaters are getting truncated somewhere. We are using the latest java connector (sapjco.jar and other library files).

Any pointers?

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Fixed the issue. Changed the character types (in java side and R/3 side) to string and it started working.

Regards,

Deepak