Hi Laxman,
This URL "http://<server>:50000/XMII/WSDLGen/<TrxPath>" will give you WSDL defination of the transaction.
This Definition will contain only the input param information and not the output param.
The WSDL defines the output as:
Thus it only tells that the output would contain a Rowset.
Inside this Rowset each output param of the transaction would be added as an element.
You can run this transaction as a webservice using Webservice Action block and see the output.
Also all the output param would be returned as string.
Thus the XML will come as string and would be encoded so that it confirms to the rules of XML.
e.g. output:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<XacuteResponse xmlns="http://www.sap.com/xMII">
<Rowset>
<Row> <outputXML>&lt;note&gt;&lt;to&gt;Tove&lt;/to&gt;&lt;from&gt;Jani&lt;/from&gt;&lt;heading&gt;Reminder&lt;/heading&gt;&lt;body&gt;Don&apos;t forget me this weekend!&lt;/body&gt;&lt;/note&gt;</outputXML>
</Row>
</Rowset>
</XacuteResponse>
Here output param name was outputXML.
Regards,
Rohit Negi.