cancel
Showing results for 
Search instead for 
Did you mean: 

Adobe form not working in quality !

Former Member
0 Kudos

Dear Sir

I designed an adobe interactive form using webservices method that works fine in devlopment but not working in Quality server. I moved webservice to devlopment to quality and bind the submit button with the WSDL file generated in Quality server

as i done in devlopment. but submit button is not working. need help urgent.

OR

Can anyone please tell me the process of migration of devlopment to quality of adobe form.

Thanks in advance.

Chitta Ranjan Mahato

Edited by: mahato123 on Aug 5, 2011 7:50 AM

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

thanks solved

Former Member
0 Kudos

Hi,

This is a known problem with transport of web services. Currently your webservice URL is pointing to DEV server.

In QA, Goto SOAMANAGER, Create seperate endpoint for webservice.

Activate related sicf nodes if required.

Generate wsdl files.

Go back to DEV server. Change data connection in Adobe form. Make sure that the url is pointing to QA.

Again do a seperate transport to QA.

Regards,

Sanoosh

mh97
Contributor
0 Kudos

Hi,

It might help if you give more description of the error or behavior that "doesn't work".

If this is the first time you've used Adobe forms in your quality system you may want to have your Basis team check that the ADS server is connected correctly.

Here is a SAP Help area that might be useful to you: http://help.sap.com/saphelp_nw04/helpdata/en/04/8e0a414f3af223e10000000a155106/frameset.htm

Hope this helps,

Margaret

p.s. I see you did mention the submit button. But what do you mean by "not working"?

Edited by: Margaret Hilsbos on Aug 5, 2011 9:00 AM

Former Member
0 Kudos

Hi

I am giving the brief what i done in DEV i created a web service on a function module after that i activated that web service in SICF and bind the each component of the form with the data connection (the WSDL file generated by webservice) .In form i have a submit button on the click event of the submit button i had written the following code



var cURL =_ "http://DEVxxxxxxxxxxxxxxxxxxxxx/sap/bc/srt/wsdl/bndg_4E37289DEF8112D0E1008000AC100051/wsdl11/allinone/ws_policy/document?sap-client=900"_;
var service = SOAP.connect(cURL);     
xfa.connectionSet.DataConnection.execute(0);

here the underline link is WSDL link generated in DEV sever from web service.

after that i transport the same web service to QAS and activate the web service in Quality server


var cURL =_ "http://QASxxxxxxxxxxxxxxxxxxxxx/sap/bc/srt/wsdl/bndg_4E37289DEF8112D0E1008000AC100051/wsdl11/allinone/ws_policy/document?sap-client=900"_;
var service = SOAP.connect(cURL);     
xfa.connectionSet.DataConnection.execute(0);

now i bind all the field with the WSDL file generated by QAS server but here my submit button is not working but it work perfectly fine in DEV.

please help

Thanks

Chitta Ranjan