cancel
Showing results for 
Search instead for 
Did you mean: 

Regd. Close Web Dynpro Application?

Former Member
0 Kudos

Hi @,

I have built some Web Dynpro Applications where the new requirement is to close the application with a button instead of close browser button. How can we do this ?

Regards

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi

please go through this link

Regards

Ruturaj

Answers (2)

Answers (2)

vmadhuvarshi_
Contributor
0 Kudos

Portal navigation will work only in Portal.

You can use Exit plug in interface view controller to navigate away and terminate the application. [This tutorial|/docs/DOC-8061#4] should be helpful.

Vishwas.

former_member190457
Contributor
0 Kudos

Hi,

if I undestand the requirement correctly you want to kill the WDP application without killing the browser.

To do so, you can navigate to a blank page in you pcd. Use the following code:

	WDPortalNavigation
		.navigateAbsolute(
			this.DEFAULT_PAGE, //the absolute pcd url of your page
		                WDPortalNavigationMode.SHOW_INPLACE,
			(String) null,
		// window features  		
		                (String) null, // window title
		                WDPortalNavigationHistoryMode.NO_HISTORY, 
                                                (String) null,
		// target title
		               (String) null, // target context
		               (String) null, //businessParameters
		               (String) null, // launcherParameters
		                true, // postParameters
		                true //useSAPLauncher
		                );

Kind regards

Vincenzo

Former Member
0 Kudos

Hi Vincent,

My Application is not built or currently linked to Portal . Will this work then also?

REgards