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

passing '&' in xml generation

Former Member
0 Likes
370

hi i m ish , when we generating XML and in text file passes with special charecter '&' throught parser so it show a error ,so if i want to pass this special charecter as '&' in XML data (without replacing with any other charecter ), so what to do ?

hi i m ish , when we generating XML and in text file passes with special charecter '&' throught parser so it show a error ,so if i want to pass this special charecter as '&' in XML data (without replacing with any other charecter ), so what to do ?

1 REPLY 1
Read only

settipalli_raj
Explorer
0 Likes
338

Hi

Try using hexadecimal code this '&' character, i.e. 26.

For example

Data: l_hex type x value '26'.

concatenate <your xml data> l_hex into <your xml data>.

Hope this helps.

Regards

Raj