2008 Jan 15 5:34 AM
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 ?
2008 Jan 15 6:53 AM
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