cancel
Showing results for 
Search instead for 
Did you mean: 

Passing parameters values from webdynpro to SAP GUI

Former Member
0 Kudos

Dear Experts

iam trying to pass values from webdynpro application to SAP GUI Transaction

here is the sample code which iam using

CONCATENATE 'http://s0164dep01.adta.uae:50000/irj/portal/interop?NavigationTarget=pcd:portal_content/Testing/trn_iw33?'

'%20CAUFVD-AUFNR='

'ApplicationParameter=CAUFVD-AUFNR='

lv_workorder';'

'DYNP_OKCODE=SHOW'

INTO lv_url.

i could'nt able to succed as its displaying page not found exception.

Help me on this to proceed further

Regards

Jaipal.E

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member199125
Active Contributor
0 Kudos

Jaipal,

I don't see any tcode in your url...what tcode you are calling?

in url we should not pass name ''application parameter...'

i think you are trying to call portal navigation using pcd location.

CONCATENATE 'http://s0164dep01.adta.uae:50000/irj/portal/interop?NavigationTarget=pcd:portal_content/Testing/trn_iw33?'

'%20CAUFVD-AUFNR=' ''' u should pass some value here

'CAUFVD-AUFNR=' 'lv_workorder' ;'DYNP_OKCODE=SHOW'

INTO lv_url.

Regards

`srinivas

Former Member
0 Kudos

Yes Sana,

we are passing the PCD location as we have created the Transaction Iview for Tcode : IW33

i want to pass values from custom webdynpro application to this transaction any suggestion's on this

Regards

Jaipal.E

former_member199125
Active Contributor
0 Kudos

I am not confident about navigation using PCD location.. have to check it out. mean while

why dont you try to call directly tcode using below url

concatenate 'http://s0164dep01.adta.uae:50000/sap/bc/gui/sap/its/webgui?~transaction=*iw33%20CAUFVD-AUFNR=' lv_workorder ';'DYNP_OKCODE=SHOW' into lv_url.

And make sure about okcode value,,,

Regards

Srinivas