Siebel Popup applet configuration
1=Base, 2=New, 3=Edit, 5=Query, 6=EditList : SLM Save List Service
1. ShowPopup
a. Create a button control on the UI with Method Invoked = ShowPopup.
b. Create following Control User Properties:
Name | Value | Comments |
Popup | <Applet Name> | Name of the popup applet |
Mode | <Mode> | Base, Edit, Edit List |
Popup Dimension | <Height> X <Width> | Eg: 300 X 300 |
2. From Server Script using business service : “SLM Save List Service”, Method: LoadPopupApplet
This method can be used as per below example:
var oBSSLM = TheApplication().GetService("SLM Save List Service");
var psInp = TheApplication().NewPropertySet();
var psOut = TheApplication().NewPropertySet();
psInp.SetProperty("Applet Height", "400");
psInp.SetProperty("Applet Mode", "1"); // 1 - List Applet, 2 - Form Applet
psInp.SetProperty("Applet Name", "<Applet Name>");
psInp.SetProperty("Applet Width", "800");
oBSSLM.InvokeMethod("LoadPopupApplet", psInp , psOut);
From Command
This can be used if there is a need to display popup applet from toolbar button or some menu item:
Name | <Any name you want to give to Command> |
Method | GotoApplet |
Method Argument | ShowMode=<Mode>, Applet = <Applet Name> |
HTML Popup Dimension | 200 X 200 (Height X Width) |
ShowPopup | True |
Target | Server |
Comments
Post a Comment