cancel
Showing results for 
Search instead for 
Did you mean: 

Reg:WDDynamicRFCExecuteException

Former Member
0 Kudos

Hi Experts,

I have uploaded a file from web dynpro to back end system(R/3),but When i deploy and run it works fine and there is no exception in this project.

After uploading the file it gives WDDynamicRFCExecuteException......

(com.sap.tc.webdynpro.modelimpl.dynamicrfc.WDDynamicRFCExecuteException: Error connecting using JCO.Client: null

Please tell me at what suitation this error will occur & how to rectify that?....

Thanks & Regards

Mathi

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

solved

former_member751941
Active Contributor
0 Kudos

Hi Mathi,

SAP Note : <a href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes/sdn_oss_bc_wd/~form/handler">1089788</a>

http://www.sappro.com/downloads/WebDynproJava.pdf

Regards,

Mithu

Former Member
0 Kudos

Hi,

Check sevral things:

1. Is the JCO Destinations has enough "max connections" - should be set to 200 app.

2. The user using the application is not locked in the backend.

3. Is the mapping to the backend is set on "Ticket", if not check the password on the JCO Destination model data.

4. Is the mapping to the backend is set for user/password for the metadata in the JCO Destinations.

Aviad

Former Member
0 Kudos

Hi,

Thanks For your reply..

How we increase "Max connections".

Thanks & Regards

Mathi

Former Member
0 Kudos

Hi,

To increase max connetion follow this steps:

1. goto http://<host>:<port>/index.html

2. select "Web Dynpro"

3. select "Content Administrator"

4. Login using user with administrator priviliges.

5. click on "Maintain JCO Destinations"

6. select & edit the relevant JCO

7. change the property "Maximum Connections" to 200.

8. click next until finish is lighted then click finish

Aviad

former_member751941
Active Contributor
0 Kudos

Hi Mathi,

Check this.

<a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webdynpro/wd%20java/guertler/how%20to%20configure%20the%20jco%20destination%20settings.pdf">How to Configure the JCo Destination Settings</a>

Regards,

Mithu

Former Member
0 Kudos

Hi Mathi

Use Try Catch Block

    try {
		model.modelObject().execute();
		---
		---
		---	
		wdContext.nodeOutput().bind(model.modelObject().getOutput());
	} catch (WDDynamicRFCExecuteException e) {
		e.printStackTrace();
	}

Regards

Chaitanya.A