Search here for wide range of results..
Loading
Home » Archive

Articles tagged with: Configuration

Configuration »

[8 Jun 2009 | 5 Comments | ]

Some people be wondering how does some screens have Icons, can we configure same for our custom screens??. I am referring to the icons similar to shown in the snap-shot below, like for Accounts, Contacts, Opportunities, Quotes.
Siebel Screen Icons
You can also put your custom icons to your custom screens by following the below procedure.
1. Get/Create your icon file and put it in the \Client\PUBLIC\enu\IMAGES folder. It should be in .gif format only. Say it, testicon.gif
2. Goto Tools -> Bitmap Categories.
3. Query for a existing Bitmap Category lets say – [Contact]
4. …

Configuration, Tips & Tricks »

[8 Jun 2009 | No Comment | ]

Sometimes you might need to add a extra Menu to Siebel Application. Lets say after “Help” menu as shown in the below screen shot.
Siebel Application Menus

Navigate to the Tools -> Application.
Locate your Siebel Application name, let’s say, [Siebel Universal Agent]
Go to its Menu field and get the Menu name, it might be [Generic WEB]
Now navigate to Tools -> Menu. Query the Menu as got above [Generic WEB]
Go to the child object Menu Items.
Now your new menu is going to come at 8th Position here as per above snapshot and there …

Configuration, Tips & Tricks »

[15 May 2009 | No Comment | ]

Suppose there is a description field in a form applet, having lots of lines of data, then how will you display that data in automatic continous scrolling-up form.
Pls post if anyone has a solution for achieveing this in siebel.
Possible Solution:
Lets take a Description field having some lines of data, then how to display that data in automatic continous scrolling-up format.
Here we go,
1. Let’s take a [Description] field at BC level which stores the data.
2. Create a new Calculated Field in the same BC as given below -
Field: Calc …

Configuration, Scripting »

[6 May 2009 | 2 Comments | ]

Suppose your data having special characters is stored in string variable sLoginName.
Then below is code that will do your job.
while(Clib.strchr(sLoginName, ‘ ‘) || Clib.strchr(sLoginName, ‘\n’) || Clib.strchr(sLoginName, ‘\r\n’)))
{
sLoginName = sLoginName.replace(”\r\n”,””);
sLoginName = sLoginName.replace(”\n”,””);
sLoginName = sLoginName.replace(” “,””);
}
Post your replies below and any question to Interview Forum.

Configuration, Scripting »

[6 May 2009 | 2 Comments | ]

Scenario:
When you select any record in a MVG applet, and then close the applet with that record selected, that record is shown on the MVF of parent. Now our requirement is that we want to show only the Primary Record of the MVG to show up in Parent MVF, how to achieve it –
Solution:
Write the below code in the MVG Applet’s Server Script – WebApplet_PreInvokeMethod
function WebApplet_PreInvokeMethod (MethodName)
{
if (MethodName == “CloseApplet”)
{
this.BusComp().ClearToQuery();
this.BusComp().SetSearchSpec(”SSA …