cancel
Showing results for 
Search instead for 
Did you mean: 

Open Webpage in portal as java webdynpro iView

Former Member
0 Kudos

Hi Experts,

I am trying to find the way to open Webpage in portal as webdynpro iView. Do any one know how to do this using webDynpro programming. I promise to award point for the answers. Please help.

Thank you && Regards

Maruti CR

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

MAruti,

create a simple webdynpro application with LinktoURI element (that has reference to webpage url) and deploy that application on to portal

Thanks

Bala Duvvuri

Former Member
0 Kudos

Hi Bala,

Thank you for the answer. I appreciate your help and I have awarded points.

But could you please tell me is there any way I can display with webpage with out having LinkToURL?.Please let me know if you know.

Based on the condition I want to open the webpage url with out clicking on link.

I appreciate you help.

Thak you

Maruti CR

I

Former Member
0 Kudos

Maruti,

in the wdDoInit() method of the view of the webdynpro application write this code

String url = "";

IWDWindow window = wdThis.wdGetAPI().getComponent().getWindowManager().createNonModalExternalWindow(url,"Title");

window.setWindowPosition(WDWindowPos.CENTER);

window.show();

Thanks

Bala Duvvuri

Former Member
0 Kudos

Hi Bala,

Thank you for the reply. I am aware of this approach. Using this approach ,user able to display page in seperate browser. But I want to open the page in the same place where iView is opened. Please do let me know your suggestions.

Thank you

Maruti CR

Former Member
0 Kudos

Hi,

You have 2 options:

1. Create an URL iview and on evaluation of the condition in WD fire a portal navigation to this iview. This would also mean that the URL needs to be static.

2. You can use the suspend-resume mechanism in WD. You can find more information [here|http://help.sap.com/saphelp_nwce10/helpdata/en/68/3aee42c4257176e10000000a1550b0/frameset.htm].

Regards,

Satyajit.

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

While creating iview in portal you can select the type of iview as webdynpro application and then as it is a wizard keep selcting the options and you can create a webdynpro iview then you assign this iview to a page and assign page to a role.

Please let me know if it is of any help.

Rashmi.