cancel
Showing results for 
Search instead for 
Did you mean: 

URL of SapGui-embedded Webdynpro Applications?

TSTOFFELS
Explorer
0 Kudos

Hi there,

I am struggling to automate webdynro transactions with ecatt. I noticed webdynpro applications come in two flavours:

1) The ones opened in a browser window

2) The ones opened embedded in the SAPGUI with no extra browser window. Example: Transaction SOLMAN_WORKCENTER on a SOlution Manager System.

In order to automate Webdynpro transactions with ecatt one needs the URL of the webdynpro application.

I have no clue how to find out the URL of a webdynpro application if it is not opened in a browser (case 2).

There is no url bar, and no way to view the page source via the context menu.

Regards & Thanks in advance,

Thomas

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Thomas,

in webdynpro framework exists a class to create urls for all webdynpro applications:

CALL METHOD cl_wd_utilities=>construct_wd_url

EXPORTING

application_name = 'AGS_WORKCENTER'

IMPORTING

out_host = lv_out_host

out_port = lv_out_port

out_protocol = lv_out_protocol

out_local_url = lv_out_local_url

out_absolute_url = lv_out_absolute_url.

You can find your need url by setting a break point in the method "construct_wd_url" and debugging export parameter "out_absolute_url" of this method.

Best regards,

Christoph