GeeKs Blogging @ dotCOM

Let’s share…
  • Home
  • About
  • How To – FAQs
  • Disclaimer
  • Terms & Conditions

Posts Tagged ‘Tricks’

14 Aug 2009

Siebel – Symbolic Strings – Change default ‘X_’

This is a smaill tip I was working on, which got me interested in Symbolic Strings all of a sudden. We have already discussed previously about the Symbolic Strings
Siebel – Symbolic Strings
Siebel – Symbolic Strings – Usage

Read the rest of this entry »

14 August, 2009 at 11:50 by Nitin Jain

Tags: Configuration, Siebel, Tools, Tricks
Posted in Siebel CRM | 1 Comment »

6 Aug 2009

Siebel EIM – USING SYNONYMS

Performance is always a major issue in most of the Siebel Intallations. In a project where large scale EIM Processing is needed, rest assured, Performance would be the from amongst the most discussed topics, at least from the Acceptance Testing phase, if not before!

EIM Data loads can turn out to be for millions of records, and many tens of GBs of Data being imported is a common sight (talking in terms of the Oracle Database Data File footprint). The customer has to be around that size, if he is actually going in for a Siebel CRM implementation I guess!

Read the rest of this entry »

6 August, 2009 at 13:02 by Nitin Jain

Tags: EIM, Performance, Siebel, Tips, Tricks
Posted in Siebel CRM | 3 Comments »

5 Aug 2009

Siebel – Automatic User Logout

Logging out a user automatically, when the user does not explicitly logoff.

This one came up as a request from NP on GeeksBlogging@dotCOM. I believe this would possibly be a very frequent issue and a common problem in almost all the Siebel Installations. The users generally come from a Sales background. They hardly care how they actually close the Siebel Application. In most cases, they just press the (X) button on top of the Browser window, rather than explicitly selecting File -> Logout.

Read the rest of this entry »

5 August, 2009 at 8:29 by Nitin Jain

Tags: Admin, logout, Siebel, Tips, Tricks, Workarounds
Posted in Siebel CRM | 7 Comments »

28 Jul 2009

Siebel – Autosave Opportunity data – Sample Code

This is a follow up post on my previous post, Siebel – Autosave Opportunity data – The concept where I introduced the concept and analysis of the following problem statement:
“System should have capability to automatically save opportunity (RFPs) data in Draft state after a certain interval.”

Following is the sample code for solving the above problem statement.

Read the rest of this entry »

28 July, 2009 at 8:07 by Renuka Ankam

Tags: Configuration, eScript, Siebel, Tricks, Tutorials
Posted in Siebel CRM | 2 Comments »

15 Jul 2009

Siebel – Refresh Applet retaining existing context

RefreshRecord() does not work in all cases, does it? :-)

This is a very common requirement I have seen in almost all Siebel EAI implementations. We have data flowing IN and OUT of the Siebel CRM system. It is updated in the Database alright, but, how do we update the user on the UI. I am assuming a quick data interchange in Real-time using a VBC or a Web Service or something similar. Whenever we update the Database using a Workflow or a script here, the UI will not refresh automatically, and though the process would end successfully (I hope it does), the user would never come to know about the successful updation until he manually does a Query + Go on the Applet, or uses the famed Alt+Enter Hotkey.

Read the rest of this entry »

15 July, 2009 at 8:04 by Nitin Jain

Tags: Configuration, EAI, Scriptless solutions, Siebel, Tricks, Workarounds
Posted in Siebel CRM | No Comments »

9 Jul 2009

Siebel – EAI Siebel Adapter – Looping Multiple Records

This is a follow-up post on the post, Siebel – Looping Multiple Records – III. We are looking at possibly more conventional methods to loop through multiple records in Siebel, than the SIA BC Utility Service.

We will make use of EAI Siebel Adapter’s QueryPage method to achieve the same. Knowledge of Siebel Workflow processes is essential to understanding this post.
The QueryPage method allows us to input an additional parameter, NumOutputObjects, to define the number of records that we want to output. Why not set this value to ‘1′?

Following is an outline of the Dummy Workflow I used to achieve this.

Read the rest of this entry »

9 July, 2009 at 8:00 by Nitin Jain

Tags: Configuration, EAI, Performance, Scriptless solutions, Siebel, Tricks, Tutorials, Workarounds, workflows
Posted in Siebel CRM | 1 Comment »

8 Jun 2009

Siebel – EAI Siebel Adapter Search Spec

Hi,

I can bet that for anybody who has worked on Siebel EAI, ‘EAI Siebel Adapter’ is not an Alien term. This post is about EAI Siebel Adapter’s Query method.

How to restrict the number of Child records returned in Siebel adapter’s Query.

Scenario – Order and related Order Line Items

Read the rest of this entry »

8 June, 2009 at 13:13 by Vikas Luthra

Tags: EAI, Siebel, Tips, Tricks, Tutorials, Workarounds, workflows
Posted in Siebel CRM | 1 Comment »

31 May 2009

Siebel – FINS Industry XML Query Service

“Extracting values from a tag deep down in the Hierarchy.” How many times have you come across this problem, and how many times have you wished that Siebel has an OOB method to help you extract these values?

Well, here it is. The “FINS Industry XML Query Service” in Siebel does just that. I am covering this here because of lack of documentation on the same by Oracle, and the immense use that this can be put to. This BS can save you a lot of headache of writing custom scripts to parse the entire XML Hierarchy in Siebel eScript, which can be a real pain in the neck.

This blog post will target the detailed usage of the BS, “FINS Industry XML Query Service” in Siebel CRM. This BS can be used directly in a Siebel Workflow, since this is vanilla. No scripting is needed which is as per the recommendations of Siebel Best Practices.

Read the rest of this entry »

31 May, 2009 at 2:35 by Nitin Jain

Tags: EAI, Scriptless solutions, Siebel, Siebel Secrets, Tricks, Workarounds, workflows
Posted in Siebel CRM | 4 Comments »

26 May 2009

Siebel – EnableServiceArgTracing – Logging Messages

Hi,

We have already discussed at quite a length the logging methods, the most prominent of these being the usage of vanilla Siebel EAI Queues. You can read about the entire series through the following links:
A meeting with Siebel EAI
Siebel – EAI Queue
Siebel – EAI Queue – Usage
Siebel – EAI Queue – a Critique’

I recently came across another vanilla method (EnableServiceArgTracing) to log the messages. Using this, the various Siebel logs can be created, and the Input and the Output messages to some of the Business Services can be written in XML format to a file. These XML files would appear as Siebel Dump files with a “.dmp” extension. These can be read off any standard text reading tool like Notepad, Editplus, Notepad++, etc. This process works with EAI Siebel Adapter and EAI Dispatcher business services.

Read the rest of this entry »

26 May, 2009 at 12:21 by Nitin Jain

Tags: Admin, CFG file, Configuration, Debugging, EAI, Logging, Siebel, Tricks, Tutorials, workflows
Posted in Siebel CRM | No Comments »

22 May 2009

Siebel- Close Browser window when logging off

In case of standard interactivity applications like eSales , eService, when user logs off, he is directed to the page through which he logged in the application. But there is a requirement to close the IE when user logs off. Here we are doing this for eSales Application. This can be done in following manner:

•         Create a new .swt file say “LogOffDestination “ which contains following HTML script:
<html>
<head>
</head>
<body>
</body>

Read the rest of this entry »

22 May, 2009 at 10:13 by Madhvi Arora

Tags: Admin, Client, Configuration, Login, Siebel, Tips, Tricks, Tutorials
Posted in Siebel CRM | 3 Comments »

« Older Entries
  • Admin Controls

    • Register
    • Log in
  • Talk to us

    • Bouquets, brickbats, suggestions, complaints?

    • Click here...
  • Authorships

    • We are currently looking out for active authors. Are you willing to contribute?

    • Please click here

    • Everyone's invited..
  • Subscribe by Email


  • Subscribe

    • Entries (RSS)
    • Comments (RSS)
  • Sponsors

  • Daily Dilbert

    •          
  • Sponsors

  • Categories

    • Admin Notifications (9)
    • Business Intelligence (2)
      • Actuate (2)
    • CRM (88)
      • CRM News (3)
      • Sage Software / ACT! (1)
      • Siebel CRM (83)
    • EAI (2)
    • FUN 'n' FROLIC (4)
    • IT News (25)
    • Meet the Author (8)
    • ORACLE (1)
      • Database (1)
    • Product Demostrations (3)
    • Uncategorized (2)
  • Tag Cloud

    Actuate Admin Admin Notifications Applet Author Introductions Business Component Calculated Function Certification CFG file Client Configuration Critique CRM Debugging EAI EIM eScript Fundamentals Fusion Middleware Gaming Google IT News License Logging Login Microsoft ORACLE Performance problems Product Defect Product Demostrations Scriptless solutions Security Server Siebel Siebel Secrets SOA SRF Tips Tools Tricks Tutorials User Property Workarounds workflows



  • Archives

    • September 2009
    • August 2009
    • July 2009
    • June 2009
    • May 2009
    • April 2009
    • March 2009
  • Authors

    • Ankit Bhardwaj
    • Ashish Kaul
    • brijesh
    • Himanshu Bajpai
    • Madhvi Arora
    • Nitin Jain
    • Prachi Sharma
    • Renuka Ankam
    • Vikas Luthra
  • Administrators

    • geeksblogging@gmail.com
    • admin@geeksbloggingat.com
  • Sponsors

Fresh Ideas

  • Salesforce CRM Essentials Webinar
  • Sun + Oracle is faster: Proof October 14
  • Oracle v/s IBM: One poster says it all
  • Geeks Blogging @ dotCOM - Subscribe by Email
  • Siebel - Installer hangs midway
  • Oracle finalizes new Training Partner
  • Oracle divorcing Prometric
  • What is Google?
  • Siebel - Case Insensitivity (CIAI) Wizard
  • Oracle VM Templates for Siebel CRM

Just Said