!--a11y-->
Executing a Form in the Opening Window 
Use
JavaScript function for sending commands.
Functions
You can execute a form on the opening window from a new window with this function.

The properties of the output device are taken into consideration.
|
JavaScript Function |
SAPBWOpenerSubmitForm |
|
Parameter |
Description |
|
formname |
Name of form |
|
close true = close, false = leave open |
Then close window |
Example
Execute form in the opening window and close window
SAPBWOpenerSubmitForm("FormName",true);
or in HTML:
<a href="JavaScript:SAPBWOpenerSubmitForm('FormName',true);">Execute form and close window</a>