cancel
Showing results for 
Search instead for 
Did you mean: 

Replace createExternalWindow (deprecated)

Former Member
0 Kudos

Hi everybody,

i use the deprecated method createExternalWindow, how can i replace this method?


    Map params = new HashMap();    
	params.put( "ZEEKP_TAC_UEB-TAC", "ML81N" );
	params.put( "ZEEKP_TAC_UEB-PARID", "BAN" );
	params.put( "ZEEKP_TAC_UEB-AUSWAHL", "11428005" );
		
	String url = getLaunchUrl("SAP_K1_140", "ZEEKP_TAC", params);
		
	IWDWindow window = wdComponentAPI.getWindowManager().createExternalWindow( url, "ME53N", false);
	window.removeWindowFeature(WDWindowFeature.ADDRESS_BAR);
	window.removeWindowFeature(WDWindowFeature.TOOL_BAR);
	window.removeWindowFeature(WDWindowFeature.MENU_BAR);
	window.removeWindowFeature(WDWindowFeature.STATUS_BAR);
	window.open();  




regards,

Sid

Accepted Solutions (1)

Accepted Solutions (1)

junwu
Active Contributor
0 Kudos

createNonModalExternalWindow

hope it helps

Answers (1)

Answers (1)

former_member185879
Active Contributor
0 Kudos

Hello Sid,

Please use the one he suggested. Example

IWDWindow window = wdComponentAPI.getWindowManager().createNonModalExternalWindow("URL","WindowTitle");

window.show();

hope it helps. Revert for any queries.

Regards

Nizamudeen SM