‎2008 Feb 01 9:09 AM
the ABAP will sort attribute node by attribute name. for example.
if the source XML is
<A b="b" a="a"/>
suppose the XSLT is
<xsl:copy-of select="."/>
the result will be
<A a="a" b="b"/>
but actually, we do not want to sort it. so is there any option to prevent ABAP sort the attributes?
thanks and regards,
davin, wang
‎2008 Jul 17 8:20 AM
I recieve an official reply via CSS: sorting on xml attributes is not implemented because it's not W3C standard.