Skip to main content

Posts

Showing posts with the label ShowPopup

How to display URL in a modal popup window? Doc ID 1360705.1

APPLIES TO: Siebel Tools - Version 8.1.1.1 SIA [21211] and later Information in this document applies to any platform. GOAL How to display external web page in a modal popup window using symbolic URL? SOLUTION 1. Create calculated field in Account buscomp: name = TestSymbolicURL calculated value = TestSymbolicURL 2. Create new form applet using the new object wizard with following properties: name = Account Symbolic URL Popup Applet buscomp = Account web template = Analytics Applet type = base Select TestSymbolicURL field in the wizard to be included in the applet. Deselect all button controls in the wizard. The wizard will create control in the applet Set the following control properties: name = Test field = TestSymbolicURL field retrieval type = Symbolic URL HTML display mode = EncodeData HTML type = Text field type = BC Field Edit the class property of the created applet and set it to: class = CSSSWEFramePopup 3. Create new button control on SIS Account Entry Applet with following p...

How to call Popup Applet through Browser Script in Siebel

There are different ways of invoking popup applet below scrip will be used in applet browser scripts. This script is using Siebel's vanilla method "ShowPopup". Please note that on parent applet vanilla method can be used only once. Either through Filed user proper or script. Below is the script for calling popup applet through applet browser script: if (name == "MethodName") { var inp = theApplication().NewPropertySet(); inp.SetProperty("SWEH", "200");        //Height of popup inp.SetProperty("SWEW", "800");      // Width of popup inp.SetProperty("SWETA", "ABC Popup Applet"); //inp.SetProperty("SWEM", "URL Applet"); this.InvokeMethod("ShowPopup", inp); return ("CancelOperation"); }   Change the applet name. Compile and generate browser scripts. Note: After every compilation you need to generate fresh browsers scripts and place on web server path.   See ...

How to call Popup Applet through Server Script in Siebel

Background: Based on the requirements you need to show data or reports on a popup applet. You can invoke popup applet using workflow (below business service will be used in business service step), applet server script or browser script and using vanilla method and setting field user properties. Procedure: Below is the script for calling popup applet through server script: if (MethodName == "MethodName") { var oServiceAF = TheApplication().GetService("SLM Save List Service"); var inputPropAF = TheApplication().NewPropertySet(); var outputPropAF = TheApplication().NewPropertySet(); inputPropAF.SetProperty("Applet Name","ABC Popup Applet"); inputPropAF.SetProperty("Applet Mode","6"); inputPropAF.SetProperty("Applet Height", "700"); inputPropAF.SetProperty("Applet Width", "700"); oServiceAF.InvokeMethod("LoadPopupApplet", inputPropAF, outputPropAF) return (CancelOperati...

How to call Popup Applet through Workflow in Siebel

Background: With few different ways you can call/invoke popup applet in Siebel. Which are applet server/ browser script, Applet field user properties with vanilla method. Below is the detail of calling popup applet through Siebel workflow. Process: Add new Business Service step in Siebel Workflow, set its properties as below: Business Service Name: SLM Save List Service Business Service Method: LoadPopupApplet Set the values of Input Arguments as below: Input Argument: Applet Mode Type: Literal Value: 1 Input Argument: Applet Width Type: Literal Value: 800 Input Argument: Applet Height Type: Literal Value: 800 Input Argument: Applet Name Type: Literal Value: ABC Popup Applet Applet Modes: 1=Base, 2=New, 3=Edit, 5=Query, 6=EditList     See Also: How to call Popup Applet through Browser Script in Siebel How to call Popup Applet through Server Script in Siebel