cancel
Showing results for 
Search instead for 
Did you mean: 

special characters problem

Former Member
0 Kudos

XI supports UTF-8 (standard which contains almost every character that exist in the world's languages). But mapping fails when some special characters like " &"(Corresponding hex value is 26) and " "(Corresponding hex value is 1A) comes in the payload.But both are part of Basic Latin block of the Unicode character set. (US-ASCII). Even sap help claims file adaper supports US-ASCII. But in contrary it fails in mapping when these kind of special characters comes. Is there any document where we can check what are all the characters that XI supports or what are all the characters that XI won't support when they comes in payload ??

http://help.sap.com/saphelp_nw04/helpdata/en/ae/d03341771b4c0de10000000a1550b0/frameset.htm

thanks

kumar

Accepted Solutions (1)

Accepted Solutions (1)

stefan_grube
Active Contributor
0 Kudos

When you have an & or an hex 1A value in the XML payload, the XML is not valid. This is not restricted to XI, this is a basic XML requirement.

You can do:

- convince the sender of the message to stick to XML standard

- change or delete the characters in a Java mapping in a seperate mapping step.

See this blog:

https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/9420 [original link is broken] [original link is broken] [original link is broken]

Regards

Stefan

Answers (1)

Answers (1)

prateek
Active Contributor
0 Kudos