Articles Archive for May 2009
EAI »
The first question arises , why we need XSLT transformation, so here are some reasons -
- Suppose sometime we have the data in XML file but we want to present it in different ways depending on its contents.
- Or we need to read data of a email template from a file and email needs to be with colors, tables and more HTML look.
- Or when our email data is coming from different BCs or calculations in a Business Service, or Property Sets, and we are not able to use Siebel …
EAI, Integration Objects, Workflows »
EAI Queuing is one of the Siebel integration tool to capture the SiebelMessage in a Integration Workflow in case the Workflow Errors out.
For more details, follow below link as I have already posted redarding this there -
http://www.siebelintegration.com/SiebelInterviewForum/index.php?topic=8.msg8#new
Post your comments in case you find any difficulty in getting it.
Configuration, Tips & Tricks »
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 …
EAI, Web Services »
When we want to expose Siebel functionality to other non-Siebel applications, we create Inbound Web Service and expose Siebel functionality either by a Business Service or a Workflow. We can expose these entities as Web Services. Once you have created a Web Service and generated the WSDL file, you need any third party application to do a live test for the Web Service. SoapUI is a nice software and freely available to test Web Services.
Below are some steps to get SoapUI and make it ready for testing. You can test …
Downloads, Tips & Tricks »
Here is a link that Oracle Provides to get the avaliable Siebel Licence Keys –
http://licensecodes.oracle.com/siebel_master.html#SIA81
How to Apply Licence Keys in Siebel – Click Here.
Downloads, Tips & Tricks »
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 »
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 »
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.
