cancel
Showing results for 
Search instead for 
Did you mean: 

How to generate Webdyn Pro URLs

Former Member
0 Kudos

Hello,

Within the class structure of our system hosting eRecruitment 6.03 there is a class and method with which I can generate a valid url for a posting object with the following code:

CALL METHOD cl_bsp_runtime=>construct_bsp_url

EXPORTING

in_protocol = 'https'

in_application = 'hrrcf_pinstappl'

in_page = 'application.do'

in_parameters = lt_params

IMPORTING

out_abs_url = abs_url

out_local_url = local_url.

Is there an equivalent method for generating a URL which will call the Webdyn Pro interface instead of the BSP.

Thanks,

A-

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Aaron,

check cl_hrrcf_wd_services=>construct_wd_url(

exporting

iv_application_name =

it_parameters =

receiving

rv_url =

)

Thanks

Bala Duvvuri

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi

Go throgh this link it will help u a lot

https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/7015b1f9-535c-2910-c8b7-e681fe75...

or u can also use this link it will solve your problem

http://www.riyaz.net/blog/getting-started-with-web-dynpro-for-abap/

Edited by: anand prakash rai on Oct 23, 2008 12:48 PM

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

Yes the class provided by WD Foundation is CL_WD_UTILITIES and the method is CONSTRUCT_WD_URL.