Joined: 26 Jun 2001 Posts: 69 Location: Paris - France
Ok, thanks
I've done the following code to add the line :
SET OutputRoot.XML.(XML.ProcessingInstruction)"Siebel-Property-Set"='';
SET OutputRoot.XML.(XML.ProcessingInstruction)"Siebel-Property-Set".(XML.Attribute)EscapeNames VALUE ='false';
But the result is only :
<?Siebel-Property-Set?>
Why I don't have the attribute ? _________________ Eric Galichet
SMABTP
France
EscapeNames="false" is the processing instruction data, as opposed to EscapeNames being an attribute and false being the value of that attribute. So I think you need to write your ESQL along the lines of:
SET OutputRoot.XML.(XML.ProcessingInstruction)"Siebel-Property-Set" = 'EscapeNames="false"';
See Page 196 of Working with Messages for more info.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum