cancel
Showing results for 
Search instead for 
Did you mean: 

Special Characters

Former Member
0 Kudos

Hi Experts,

I have to pass a value in payload >.

but payload is going to convert it as & gt;

How I can do the same value to pass as special character ?

Help,

Regards,

Study SAP

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

please have a look here:

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

Patrick

Former Member
0 Kudos

Hi,

Thanks for your reply,

When I am giving the value & gt;, it is printing without conversion it.

and when I am giving the value >, it is converting it with & gt;.

But I have to pass the value > as output.

Is there any idea, how I can solve this problem ?

Regards,

Study SAP

Former Member
0 Kudos

Hi,

Any one have any idea, how to solve it ?

Regards,

former_member190389
Active Contributor
0 Kudos
Former Member
0 Kudos

Hi,

the best way u can is to go with the UDF in that

the condition should be specified and mapped accordingly

like

if &gt then

&gt = >

> consider it as character

if found worth pls do the req

Thanx

Sampath

former_member190389
Active Contributor
0 Kudos

You will have to write an XSLT mapping for it

Former Member
0 Kudos

Thanks to all,

I solved the problem by changing the properties of program.

Regards,

Study SAP

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi,

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

- ( invalid character-1)

- (invalid character-2)

Regards,

Suryanarayana

Former Member
0 Kudos

Hi,

You can make use of CDATA.

e.g. if you have a node say

<Node1>String & with &  Special & Characters</Node1>

replace it with

<Node1><![CDATA[String & with &  Special & Characters]]>

A CDATA section starts with

<![CDATA[

and ends with

]]>

Everything inside the CDATA section is ignored by the parser.

For more info about CDATA, refer - http://www.w3schools.com/XML/xml_cdata.asp

Regards,

Riyaz

Former Member
0 Kudos

Check this blog

https://weblogs.sdn.sap.com/pub/wlg/9420 [original link is broken] [original link is broken] [original link is broken]

Sameer