Download Video Tutorial of How to Enable logs for Siebel Dedicated Client | Next Tip »?

Recent Posts

Recent Comment


How to Invoke Popup Applet on button click.

By neel | March 11, 2008

This post will discuss the configuration required to invoke a Popup Applet on a button click. As always we will discuss it with the help of a requirement.

Requirement:

Solution:

I am not listing the normal configuration steps like creating an applet or code to enable the button. I am assuming that you have already done that and just need configure the popup.

And you are done. When you click on that button it should popup the applet mentioned by you.


OkAvarageGoodVery GoodExcellent (4 votes, average: 4.25 out of 5)
Loading ... Loading ...

Related Posts

Categories: Configuration, How - To |

7 Responses to “How to Invoke Popup Applet on button click.”

  1. Ajay MonsterID Icon Ajay Says:
    March 11th, 2008 at 6:21 am

    Those “Names” and “Values” you mentioned, are predefined or what…from where can we get the list of such “Names” & “Values”(Like Mode,Popup etc) that we are providing there…What is actually happening when we provide such data..Can you explain the mechanism please?

  2. Abhi MonsterID Icon Abhi Says:
    March 11th, 2008 at 7:35 am

    —————————
    Siebel
    —————————
    Method ‘ShowPopup’ requires a value for argument ‘SWETA’.(SBL-UIF-00355)

    —————————
    OK
    —————————

    I am getting this error

  3. stuandgravy MonsterID Icon stuandgravy Says:
    March 11th, 2008 at 8:53 pm

    @Abhi: you get that error if you try to call ‘ShowPopup’ from script. The way the function’s been implemented it has to be invoked from a button click. I discussed a way around that restriction in this post.

  4. Rohit MonsterID Icon Rohit Says:
    April 18th, 2008 at 6:24 am

    i have two buttons on an applet. Both buttons are using the “ShowPopup” method. I want to write some code to restrict one button, but since both button are using the same method code is getting fired from both button. I want it to work only for one button not for both.
    Any help will be appreciated.

  5. Venkatesh MonsterID Icon Venkatesh Says:
    May 3rd, 2008 at 2:49 am

    Hi,
    I am using the Siebel 8 version. I am new to working in Siebel. I have a form applet. I have a minbutton in it. The button is enabled. When i click on the button, i want to invoke another form applet. How to invoke another form applet through the button click?

  6. rama MonsterID Icon rama Says:
    May 26th, 2008 at 7:51 am

    Hi Venkatesh,

    Please find the following solution for your requ

    1) Create a New Button in the applet and place it in web layout

    2) Write the following code in the Applet PreInvokeMethod method

    if(MethodName== “Add-Record”)
    {
    var destBO = TheApplication().GetBusObject(”Activity”);
    var destBC = destBO.GetBusComp(”Activity”);
    with(destBC)
    {
    SetViewMode(AllView);
    ClearToQuery();
    SetSearchSpec(”Id”,vCopyId);
    ExecuteQuery(ForwardOnly);
    TheApplication().GotoView(”Request Document View”,destBO);
    }
    }

    Hope this will work ..let me know if ur facing any issues

  7. rama MonsterID Icon rama Says:
    May 27th, 2008 at 3:48 am

    Adding few more words,

    The class file for the Popup applet should be “CSSSWEFramePopupHiGantt”

    Cheers
    Ram

Comments