!--a11y-->
Use
JavaScript function for sending commands.
Features
The URL is executed in a new window (output device permitting). This can be useful for selecting filter values and in properties dialogs.
|
JavaScript Function |
SAPBWOpenWindow |
|
Parameter |
Description |
|
url |
URL to be launched. |
|
Name |
Window name |
|
Width |
Width of the window |
|
Height |
Height of the window |
Example
Call Select filter value dialog for characteristic 0Costcenter of Data Provider ABC
SAPBWOpenWindow(SAP_BW_URL_Get() + "&CMD=PROCESS_HELP_WINDOW&HELP_SERVICE=DP_VIEW_FILTER&DATA_PROVIDER=ABC&IOBJNM=0COSTCENTER","FILTER",800,600);
or in HTML:
<a href="JavaScript:SAPBWOpenWindow(SAP_BW_URL_GET() + '&CMD=PROCESS_HELP_WINDOW&HELP_SERVICE=DP_VIEW_FILTER&DATA_PROVIDER=ABC&IOBJNM=0COSTCENTER','FILTER',800,600);">Define filter value for cost center</a>
Display tailor-made form in a new window
SAPBWOpenWindow("http://.../CustomerForm.htm","CONFIG",300,200);
Open SAP Portals homepage in a new window
SAPBWOpenWindow("http://www.sapportals.com","SAPPORTALS",800,600);