cancel
Showing results for 
Search instead for 
Did you mean: 

How to launch the ABAP Webdynpro from ITS Screen

Former Member
0 Kudos

Hello All,

I have a requirement to launch an ABAP WebDynpro from ITS Screen. There is  a button on the ITS Screen and when the user click on that button, the WebDynpro Screen has to be launched.

I have already searched in SDN related links but i am unable to find it hence i am posting this question.

Can anyone please provide us some sample applications or sample code to achieve the above functionality.

points will be awarded for the answers.

Thanks,

Pavan.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello

check this Link

http://scn.sap.com/thread/3255729

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>

Regards

G.Ganesh Kumar