siebel

Where are my Siebel Business Services?

Hi, in Siebel I can create Business Services at 2 locations: Siebel Client Siebel Tools In the Siebel Client I cannot see the Business Services created in Siebel Tools, and vice versa. (After creating a new Business Service in Siebel Tools, I compiled it - no errors reported - and ran the client with "Debug" from the Siebel Tools ...

Why are some Siebel objects read only?

Hi, I want to add some extensions to an existing Siebel application, but the objects which I need to change remain (partially) read only, despite I have locked the respective parent projects. E.g. Add a Menu item to the application main menu. => I can edit existing items, but I cannot add new items (Tool's menu "New record" is disabl...

Siebel - How to get all accounts of an employee with eScript?

Hi, how can I get all accounts of am employee? In the "Siebel Object Interaces Reference" I found an example, how to get all industries of an account: var myAccountBO = TheApplication().GetBusObject("Account"); var myAccountBC = myAccountBO.GetBusComp("Account"); var myAssocBC = myAccountBC.GetMVGBusComp("Industry"); So I would like ...

Siebel eScript varargs function always throws an exception

Hi all, according to Siebel documentation, eScript supports varargs. The following sample is taken from the Siebel documentation: function SumAll() { var total = 0; for (var ssk = 0; ssk < SumAll.arguments.length; ssk++) { total += SumAll.arguments[ssk]; } return total; } However, if I call this method like SumAll(1,2,...

Interacting with Siebel

Hi All. I'm trying to interact with the Siebel Communications activex web application.We have an existing web app that needs to interact with elemets in the siebel activex's Trying to add the Siebel app in an iframe is not effective,I can't script that iframe,it's on a different doamain. The approach I'm considering : Wrtitng anothe...

how to retrieve data from seibel to mdb

I am a newbie with Seibel CRM. So I need to retrieve data separate by object (account,lead,contact,…) into Access (mdb). Please advice me how to and any advise.. Thanks for support ...

Siebel CSSBCActivity.SetGridBeginEndDate or how to get all instances of a repeating action in eScript?

Hi, I would like to get all instances of a repeating action via a eScript bcAction query. What I already found out about repeating actions: I create an repeating action, repeat interval = daily I can see multiple instances for this action in Siebel calendar applet. If I query all actions by eScript, I get a single row for the repeat...

Siebel - Strange Error - ORA-01400: cannot insert NULL into ("SIEBEL".""."MODIFICATION_NUM")

After I do a WriteRecord() in the Business Service, I'm getting the error as ORA-01400: cannot insert NULL into ("SIEBEL".""."MODIFICATION_NUM") |An error has occurred writing to a record. Please continue or ask your systems administrator to check your application configuration if the problem persists.(SBL-DBC-00111). Its very strange...

Recommended Development practices for working with Siebel CRM?

I may be working with Siebel CRM soon, and I'm looking for advice on using modern development practices and enterprise best practices. Specifically I'd like advice on the following areas: How should we set up version control (specifically with Subversion)? What kind of structure should our repository have? How should we handle branc...

Siebel DB question

One of my client has a Siebel program installed and a .DBF database. I'd like to know if it's possible to make requests directly to this "db file" within a c# application? Do I need to install Siebel on my dev machine too? Thanks! UPDATE It worked. You'll need some dll and a EXE file : • dbctrs8.dll • dbcon8.dll • dbserv8.dll •...