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

Articles Archive for May 2009

Downloads, Tips & Tricks »

[7 May 2009 | 4 Comments | ]

Download Oracle and Siebel Setups:
Here is a link that Oracle provides to freely download the Siebel Setup for versions Siebel 7.5, Siebel 7.8, Siebel 8.0, Siebel 8.1.

You need to register first, what ever free Siebel downloads available , you can do there from Oracle Site.
http://edelivery.oracle.com/
Thanks, Ramani K for providing such a useful link.

Workflows »

[6 May 2009 | One Comment | ]

The two monitor agents will separately pick the same records and take the same action as specified in the Policy, two times.
So, suppose your Policy runs a workflow which sends a email using , then you will see two emails coming when the policy is fired for one record.

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 …

Debugging Techniques, Scripting, Tips & Tricks »

[6 May 2009 | 2 Comments | ]

1. Create a simple batch file “SiebelKill.bat”
2. Right Click Edit the file with Notepad
3. Put the below text
REM******************************************************************************
TASKKILL /F /IM siebel.exe
TASKKILL /F /IM iexplore.exe /FI “WINDOWTITLE eq Siebel Call Center – Microsoft Internet Explorer*”
REM******************************************************************************
4. Save the file
5. Double click the file whenever you want your dedicated Siebel application and its task – Siebel.exe to get killed from Task Manager automatically.
And its done…