cancel
Showing results for 
Search instead for 
Did you mean: 

How to launch an ABAP WebDynpro from an ITS screen

Former Member
0 Kudos

Hi,

I have a requirement to launch an ABAP WebDynpro from an ITS Screen. There will be a link on the ITS screen and when the user will click on the link, the webdynpro will be launched.

Need your suggestion / input on the HTMLB code (which runs behind the ITS screen) to create a hyperlink which can trigger the existing Webdynpro URL.

Thanks in advance.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Javi,

Thanks for your response

I have already created the WebDynpro URL.

My question is : How do we call this URL from ITS (HTMLB) page ?

Thanks.

amy_king
Active Contributor
0 Kudos

Hi Debadrita,

HTMLb is just HTML with a few extra capabilities, so you can simply build a regular hyperlink anchor to launch the web dynpro application URL:

<a href="http://host:post/application">run the application</a>

or using the HTMLb <server> tag or its shortcut character, `

`the_url = "http://host:post/application"`

<a href="`the_url`">run the application</a>

Cheers,

Amy

Answers (2)

Answers (2)

Former Member
0 Kudos

Thank you Amy

Former Member
0 Kudos

Hello,

You can generate the webdynpro URL with this method:

CL_WD_UTILITIES=>CONSTRUCT_WD_URL

Best Regards,

Javi