Articles tagged with: Scripting
Configuration, Siebel Slide Shows »
For Full Screen of Slide, click on Bottom-Left corner – “Menu”.
Siebel Scripting – eScript
.
.
.
Hope you enjoy this slide, post your feed back below.
Configuration, Quiz, User Properties »
Try out the below questions on Siebel Configuration that will help you revise your siebel skills.
Configuration
Scripting
Applets
Views & Screens
Workflows
Business Services
Tools & Client
And lot more
So, what are you waiting for, just go through the QUIZZ and post your questions and feedback on Commets and Contact Me pages.
Configuration, Scripting »
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 »
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 …
Configuration, Import Objects »
Import Objects are configured in Siebel for End Users for loading small quantity of data to any Siebel Entity. You can load data from flat files to Siebel using a simple Import Wizard. Below is a case study for the same.
Some check-points before starting the development –
1. Import Objects should only be defined on the BCs which are Primary BCs of the BO.
2. Import Objects will be active for a list applet only.
3. We cannot configure Imports for Child BCs in a BO.
4. “Import” menu item is present on …
