Hello Kishor,
Guess this link should provide you some information.
http://help.sap.com/saphelp_erp2004/helpdata/en/94/f8c8a2e68811d6b2dc00508b5d5211/frameset.htm
Regards,
Anand Mandalika.
I use the SAP SOAP client.
You can download this at: https://www.sdn.sap.com/sdn/downloadarea.sdn
You have to select "Developer or Administrator tool" as the Available type and then Select "Web AS" as the Available Downloads.
Prerequisites: the SOAP Client tool uses Java Web Start <http://java.sun.com/products/javawebstart> technology and can be executed on any platform where a Java Virtual Machine (JVM) is running. You need the J2SE SDK 1.4.2 (or higher) or the J2SE JRE 1.4.2 (or higher). You can download the latest JVM version from the Sun Java website <http://java.sun.com/j2se/1.4.2/download.html>.
After you get this up and running you need to set up your settings - View-->Settings.
Set up your proxy server, if needed, this is also where you put in your login information to the SAP system you are accessing.
Then you just build your SOAP Request, here is an example SOAP Request for a very simple function module - SCP_STRING_ECHO
http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd=" http://www.w3.org/2001/XMLSchema">
<soap:Body>
<SCP_STRING_ECHO xmlns="urn:sap-com:document:sap:rfc:functions">
<IMP>This is the string to echo</IMP>
</SCP_STRING_ECHO>
</soap:Body>
</soap:Envelope>
Good Luck.
Jeff
Add a comment