Skip to main content

Posts

Showing posts with the label IP16

How to create COM Objects in Siebel through client side VB Script

var objCon = COMCreateObject("ADODB.Connection"); objCon.Open("Provider=OraOLEDB.Oracle.1;Data Source=SIEBPRDDB;User Id=siebel;Password=P@ssWod;PLSQLRSet=1"); var oadoRecordsetUA = objCon.execute("SELECT MAX(SR_NUM) from siebel.s_srv_req where ROW_ID='"+sRowId+"'"); oadoRecordsetUA.moveFirst(); oadoFieldUA = oadoRecordsetUA.Fields.Item(0); strSRNum = oadoFieldUA.Value;

How to get current date in MM DD YYYY format in Siebel through eScript

function GetCurrentDateMMDDYYYY() { var dSysTime = Clib.time(); var dTime = Date.fromSystem(dSysTime); var sYYYY, sMM, sDD; sYYYY = ToString(dTime.getFullYear()); sMM = ToString(dTime.getMonth() + 1); if (sMM.length == 1) { sMM = "0" + sMM; } sDD = ToString(dTime.getDate()); if (sDD.length == 1) { sDD = "0" + sDD; } return (sMM + "/" + sDD + "/" + sYYYY); } -------------------------------------------------------- function GetCurrentDateYYMM() { var dSysTime = Clib.time(); var dTime = Date.fromSystem(dSysTime); var sYYYY, sMM, sDD, sYY; sYYYY = ToString(dTime.getFullYear()); sMM = ToString(dTime.getMonth() + 1); if (sMM.length == 1) { sMM = "0" + sMM; } sDD = ToString(dTime.getDate()); if (sDD.length == 1) { sDD = "0" + sDD; } sYY = sYYYY.substring(2,4); return (sYY + sMM); }

Closing Of Newly Created Workspace Will Not Take To Previous Screen (Doc ID 2476192.1) in Siebel

APPLIES TO: Siebel CRM - Version 17.5 [IP2017] and later Information in this document applies to any platform. SYMPTOMS On :  17.5 [IP2017] version, Configuration - General ACTUAL BEHAVIOR   --------------- Cannot open any workspace in WebTools  connect to db2 database EXPECTED BEHAVIOR ----------------------- After click the X button,   web tools should go the object  explorer view.    But it stays at workspace page. STEPS ----------------------- The issue can be reproduced at will with the following steps: 1. Log into Siebel WebTools 2. Select the newly created workspace 3. Click the Open button 4. Click the X button 5. The busy cursor shows up and disappear, but it stays in the same worksapce page.  It should to go to the object  explorer view CAUSE This is a known product defect BUG 27550972 - CLOSING OF NEWLY CREATED WORKSPACE WILL NOT TAKE TO PREVIOUS SCREEN SOLUTION Please use the below work aroun...

Error in "Find functionality" drilldown on record doesn't work in Siebel IP19

Problem Summary: Error in "Find functionality" drilldown on record doesn't work, no details found in logs and receiving below error in Siebel Financial Services CRM: This operation is not allowed when there are no records displayed. Please execute a query that returns at least one record or add a new record.(SBL-DAT-00215) Steps: The issue can be reproduced at will with the following steps: 1. Query for the Opportunity record in the Find object Opportunity. 2. The record is returned in the Find Results view. 3. Drilldown on the record. Getting error. Solution: 1. As per document 1990290.1 this should be removed. 2. The Find Views are defined as per document 1990290.1 3. The issue is seen only for non owned records. 4. Please remove the drill-down view (clear the 'Drilldown View' find property) and use the Find Views. Ensure you have the required view responsibilities. Please refer to the below document for more information. Actual behavio...

Server Jobs or Repeating Jobs - picking component parameters : The Server object was not found.(SBL-SCO-09100) (Doc ID 1944522.1)

APPLIES TO: Siebel CRM - Version 8.1.1.11 [IP2013] to 17.0 [IP2017] [Release V8 to V17] Siebel eAutomotive - Version 8.1.1.14.4 [IP2014] to 8.1.1.14.4 [IP2014] [Release V8] Information in this document applies to any platform. DESCRIPTION In Siebel version 8.1.1.11 Patch Sets ; 10, 11, 12 , 8.1.1.14 , IP15, IP16, IP17: 1) In Administration - Server Management --> Jobs 2) Create a job for Generate Triggers component 3) Go to Parameter applet and select EXEC parameter The picking of the parameter can fail with the error : The Server object <?> was not found.(SBL-SCO-09100) OCCURRENCE This is happening for some job parameters, not all parameters. The behavior may not necessarily occur if you are using Siebel version 8.1.1.11 Patch Set 10, 11, 12 , 8.1.1.14 , IP15, IP16, IP17 : This behavior has been observed for several target components (ie. it is not restricted to Generate Triggers). SYMPTOMS  The Server object <?> was not found.(SBL-SCO-09100) ...