Siebel Sales 7.8

Good day, Dear all how i can change the currency in Siebel from Euro to Us doll?
thanks in advance

One way to achieve this is change the currency at Organization level.
Administration Group->Orgnization and change the default currency here.

Similar Messages

  • Joining Quotes with Orders in OBIA Siebel Sales

    Hi Gurus,
    I need to find a way to join the Quotes with the Order in the OOTB RPD from Siebel Sales implementation. I am trying to join with the Row_WID but i do not get any results for the below query, i want to have the the Quote number and the related Order Number and details.
    select * from obaw.w_order_d a, obaw.w_order_f b, obaw.w_Quote_f c, obaw.w_quote_d d
    where a.row_wid=b.row_wid
    and b.row_wid=c.row_wid
    and c.row_wid = d.row_wid
    I am sure i am going grossly going wrong somewhere.
    Quick help will be appreciated.
    Regards,
    Amit

    Amith,Is this answered Common key to join Opportunity, Quotes & Orders
    Coming to your question,you established the joins wrong,here is the query i have written for you
    select a.integration_id ,a.row_wid,a.vis_pr_bu_id,
    b.integration_id "quote integration",b.row_wid "quote wid",b.vis_pr_bu_id "quote vis",
    c.integration_id "fact int",c.quote_wid "fact quote",c.vis_pr_bu_id "fact vis"
    from w_order_d a,
    w_quote_d b,
    w_quote_f c,
    w_order_f d
    where a.row_wid=b.row_wid
    and b.row_wid=c.quote_wid
    and a.row_wid=d.order_wid
    hope answered.
    Cheers,
    KK
    Edited by: Kranthi.K on Jun 27, 2011 9:24 PM

  • Java Script Errors on Siebel Sales and Call Center Login Pages

    Hello,
    This only happens with some users, but not all of them.
    When we first open the login screen in TRIAL we get several Internet Explorer errors.
    1. Line: 1153
    Char: 16
    Error: Expected ')'
    Code: 0
    URL: http://topaxsear009.iss.bnr.com/callcenter_enu/start.swe?SWECmd=Start&SWEHo=topaxsear009.iss.bnr.com
    2. Line: 59
    Char: 1
    Error: Object expected
    Code: 0
    URL: http://topaxsear009.iss.bnr.com/callcenter_enu/start.swe?SWECmd=Start&SWEHo=topaxsear009.iss.bnr.com
    3. Line: 13
    Char: 1
    Error: Object expected
    Code: 0
    URL: http://topaxsear009.iss.bnr.com/callcenter_enu/start.swe?SWECmd=Start&SWEHo=topaxsear009.iss.bnr.com
    4. Line: 30
    Char: 1
    Error: Object expected
    Code: 0
    URL: http://topaxsear009.iss.bnr.com/callcenter_enu/start.swe?SWECmd=Start&SWEHo=topaxsear009.iss.bnr.com
    Once we enter our login credentials and click the login button or press Enter nothing happens. No Siebel errors are shown and the login page does not react. No additional IE errors are thrown either.
    As mentioned earlier, this does not happen to everyone that tries to log in to Trial. This also does not happen in Dev or Prod. Also, this only occurs in Thin Client. We are able to log into Thick Client which leads me to believe it is a web server issue.
    Has anyone ever seen this behavior beenbefore and what would cause this to occur?
    Thanks,
    Andrea Thomas
    (817) 352-0175
    [email protected]

    There isn't any browser script on the Siebel Sales Enterprise or the Siebel Universal Agent Applications.
    We have the following script in the Application_Start function on the Siebel Sales Enterprise and Siebel Universal Agent Applications:
    function Application_Start (CommandLine)
    var sysDate = new Date();
    //var sDate = Date("2003","10","16","03","00","00");
    //var sDate = ((sysDate.getMonth() + 1) + "/" + sysDate.getDate() + "/" + sysDate.getFullYear());
    var sDate = (sysDate.getMonth() + 1) + "/" + sysDate.getDate() + "/" + sysDate.getFullYear() +" "+sysDate.getHours()+":"+sysDate.getMinutes()+":"+sysDate.getSeconds();
    var sLogin = TheApplication().LoginName();
    var ZepBO = TheApplication().GetBusObject("ZephyrUsage-BNSF");
    var ZepBC = ZepBO.GetBusComp("ZephyrUsage-BNSF");
    var sLastError = "" ;
         try
         ZepBC.SetViewMode(AllView);
         ZepBC.ClearToQuery();
         ZepBC.ActivateField("Login Name");
         ZepBC.ActivateField("Recent Login");
         ZepBC.ActivateField("Previous Login");
         ZepBC.SetSearchSpec("Login Name",TheApplication().LoginName());
         ZepBC.ExecuteQuery(ForwardBackward);
         var sflg = ZepBC.FirstRecord();
              if(sflg == true)
                   ZepBC.SetFieldValue("Previous Login",ZepBC.GetFieldValue("Recent Login"));
                   ZepBC.SetFieldValue("Recent Login",sDate);
                   ZepBC.WriteRecord();
                   ZepBC = null;
                   ZepBO = null;
         catch(e)
              e=null;
         finally
              ZepBC = null;
              ZepBO = null;
    We have the following script in the Application_Close function on the Siebel Sales Enterprise Siebel Universal Agent Applications:
    function Application_Close ()
    var sysDate = new Date();
    var sDate = (sysDate.getMonth() + 1) + "/" + sysDate.getDate() + "/" + sysDate.getFullYear() +" "+sysDate.getHours()+":"+sysDate.getMinutes()+":"+sysDate.getSeconds();
    var sLogin = TheApplication().LoginName();
    var ZepBO = TheApplication().GetBusObject("ZephyrUsage-BNSF");
    var ZepBC = ZepBO.GetBusComp("ZephyrUsage-BNSF");
    var sLastError = "" ;
    //var fp = Clib.fopen('d:\\AppScript.txt', 'wt');
    //Clib.fputs('\n I am UnGracefully Closed', fp);
    //Clib.fclose(fp);
         try
         ZepBC.SetViewMode(AllView);
         ZepBC.ClearToQuery();
         ZepBC.ActivateField("Login Name");
         ZepBC.ActivateField("Last Logout");
         ZepBC.SetSearchSpec("Login Name",TheApplication().LoginName());
         ZepBC.ExecuteQuery(ForwardBackward);
         var sflg = ZepBC.FirstRecord();
              if(sflg == true)
                   ZepBC.SetFieldValue("Last Logout",sDate);
                   ZepBC.WriteRecord();
                   ZepBC = null;
                   ZepBO = null;
         catch(e)
              e=null;
         finally
              ZepBC = null;
              ZepBO = null;
    We have the following script in the general declarations of the Siebel Sales Enterprise Siebel Universal Agent Applications:
    //     8/20/01 Melissa Ahluwalia
    //     Define global variables for the VBC connections
    //     MA 8/1/2 - Add global variable for URL
    var gOLTP;
    var gOLAP;
    var gURL;
    var LOVBC;
    // CS Project: Yash: 09/16/2004
    var gEqUndoRecord;
    //Aditya CS REDESIGN
    var gEnforceSRReqFields;
    var gForceSRInput;
    var gRunSREquipmentAutoTrace;
    TheApplication().SetSharedGlobal("gEqUndoRecord", "N");
    TheApplication().SetSharedGlobal("gEnforceSRReqFields", "Y");
    TheApplication().SetSharedGlobal("gForceSRInput", "N");
    TheApplication().SetSharedGlobal("gRunSREquipmentAutoTrace", "Y");
         LOVBC = TheApplication().GetBusObject("List Of Values").GetBusComp("List Of Values");
                             LOVBC.SetViewMode(AllView);
                             LOVBC.ClearToQuery();
                             LOVBC.ActivateField("Type");
                             LOVBC.ActivateField("Value");
                             LOVBC.ActivateField("Active");
                             LOVBC.SetSearchSpec("Active", "Y");
                             LOVBC.SetSearchSpec("Type", "BNSF_CONNECT_OLTP");
                             LOVBC.ExecuteQuery(ForwardBackward);
                             LOVBC.FirstRecord();
         TheApplication().SetSharedGlobal("gOLTP", LOVBC.GetFieldValue("Value"));
                             LOVBC.SetSearchSpec("Type", "BNSF_CONNECT_OLAP");
                             LOVBC.SetSearchSpec("Active", "Y");
                             LOVBC.ExecuteQuery(ForwardBackward);
                             LOVBC.FirstRecord();
         TheApplication().SetSharedGlobal("gOLAP", LOVBC.GetFieldValue("Value"));
                             LOVBC.SetSearchSpec("Type", "BNSF_CONNECT_URL");
                             LOVBC.SetSearchSpec("Active", "Y");
                             LOVBC.ExecuteQuery(ForwardBackward);
                             LOVBC.FirstRecord();
         TheApplication().SetSharedGlobal("gURL", LOVBC.GetFieldValue("Value"));
    //     LOVBC = '';
    LOVBC = null;
    The following script is in the function EmpAvailability in the general section of the Siebel Universal Agent Application:
    function EmpAvailability(sLogin, sStatus)
         //Availability Setting
         var EmpBO = TheApplication().GetBusObject("Employee")
         var EmpBC = EmpBO.GetBusComp("Employee");
         EmpBC.SetViewMode(AllView);
         EmpBC.ClearToQuery();
         EmpBC.ActivateField("Login Name");
         EmpBC.ActivateField("Availability Status");
         EmpBC.SetSearchSpec("Login Name", sLogin);
         EmpBC.ExecuteQuery(ForwardBackward);
         var bRec = EmpBC.FirstRecord();
         if (bRec == true)
              EmpBC.SetFieldValue("Availability Status", sStatus);
              EmpBC.WriteRecord();
         EmpBC = null;
         EmpBO = null;
    }

  • OBIEE integration with Siebel Sales 8.1.1

    Hi All,
    We are using Siebel sales version 8.1.1 and OBIEE 10.1.3. Can anyone help us with the steps to integrate OBIEE with Siebel Sales?
    Thanks in advance.
    Imtiaz.

    Will this help you http://boardreader.com/thread/Integration_between_Siebel_and_OBIEE_lme9Xmbbv.html
    See the comments section here http://oracle-bi.siebelunleashed.com/articles/differences-between-siebel-analytics-obiee/
    UPDATED POST
    Siebel sales and siebel marketing is a module in siebel.....so same way as marketing is done.....siebel sales also is integrated......its just a module difference.
    Specifically i dont have a document on this imtiaz
    Cheers,
    KK
    Edited by: Kranthi.K on Mar 7, 2011 12:56 AM

  • Siebel Sales Enterprise 8.0.0.8 - problem with Screen Tab Layout

    Hello all !
    I create [Manager] Resonsibility and check hide [Opportynities screen] in Screen Tab Layout for [Manager] Resonsibility for Siebel Sales Enterprise.
    I added user Bob with [Manager] resonsibility.
    But user Bob stiil see Opportunities Screen when log on.
    User Bob has no other resonsibilities.
    I cannot inactivate Opportynities screen because this screen used by other resonsibilities.
    What is cause of with issue?
    Best Regards
    Lev

    Hello,
    Did you delete the user preferences of this user prior to your test ?
    I also assumed that the default view is not part of Opportunity screen when you log in.
    Best Regards
    EvtLogLvl

  • Siebel Sales Rep Visibility in BI Publisher, Bug???

    Hi,
    I have run into an issue with a bi publisher report in Siebel 8.1.1.0 and BI Publisher 10.1.3.4.0 where there is a Siebel View with a Visibliity Applet Type = Sales Rep. The data showing in the report on this view is not filtered according to "Sales Rep" I believe this is because of the View having visiblility set to "Sales Rep". Is there a way to set the visiblity type on the Integration Object/Component???

    Hi Antonio,
    Thanks for the reply. I have tried applying the ViewMode user property to my integration object by setting the Integration Object User Property name to "ViewMode" and setting the value to "Sales Rep" but the report then pulls back 0 records. If I inactivate the user prop it should default the ViewMode to "All", if I run the report with ViewMode = All I am seeing records which are not in the view and which belong to other Sales Reps. Has anyone successfully tried using the Integration Object User property ViewMode = Sales Rep? I have been unable to get it to work.
    Thanks

  • Siebel Sales 8.1.1.10 object tagging

    Hello,
    We would like start to use "Object Tagging" functionality however it doesn't work.
    I have added views to app. Changed "Enable Object Tagging" to true however when I try to open tools with server data source with SADMIN account the I receive "ERROR:: Development Tag is not associated to this user."
    The confusing is that the SADMIN by default have a lot of tags. I tried this also with different users, new custom tags, vanilla srf but always I receive the same error. Below is the log file.
    Maybe someone know where is the issue?
    Best regards,
    Peteris
    2021 2014-03-03 15:49:07 2014-03-03 15:49:34 +0200 000008ae 001 003f 0001 09 siebdev 5700 4116 C:\LOG\siebdev(013).log 8.1.1.10 [23021] ENU
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [CTEvent] is initialized in client mode.
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [CTEvent] sets its MaxItemCount to [0].
    CchMgrLog CchMgrConnInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [CTEvent] trys to subscribe to invalidation message.
    CchMgrLog CchMgrConnInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [CTEvent] in client mode adds itself to the global cache map.
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [CTRule] is initialized in client mode.
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [CTRule] sets its MaxItemCount to [0].
    CchMgrLog CchMgrConnInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [CTRule] trys to subscribe to invalidation message.
    CchMgrLog CchMgrConnInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [CTRule] in client mode adds itself to the global cache map.
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [Currency] is initialized in client mode.
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [Currency] sets its MaxItemCount to [0].
    CchMgrLog CchMgrConnInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [Currency] trys to subscribe to invalidation message.
    CchMgrLog CchMgrConnInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [Currency] in client mode adds itself to the global cache map.
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [EAI Runtime Int Obj Cache] is initialized in client mode.
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [EAI Runtime Int Obj Cache] might be vaild even if it can't subscribe to invalidation message.
    CchMgrLog CchMgrConnInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [EAI Runtime Int Obj Cache] trys to subscribe to invalidation message.
    CchMgrLog CchMgrConnInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [EAI Runtime Int Obj Cache] in client mode adds itself to the global cache map.
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [LOV] is initialized in client mode.
    CchMgrLog CchMgrConnInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [LOV] trys to subscribe to invalidation message.
    CchMgrLog CchMgrConnInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [LOV] in client mode adds itself to the global cache map.
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [LOV] sets its MaxItemCount to [2147483647].
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [LOV] might be vaild even if it can't subscribe to invalidation message.
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [] sets its MaxItemCount to [256].
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [ED] is initialized in client mode.
    CchMgrLog CchMgrConnInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [ED] trys to subscribe to invalidation message.
    CchMgrLog CchMgrConnInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [ED] in client mode adds itself to the global cache map.
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [ED] might be vaild even if it can't subscribe to invalidation message.
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [Currency] might be vaild even if it can't subscribe to invalidation message.
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [CTEvent] might be vaild even if it can't subscribe to invalidation message.
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [CTRule] might be vaild even if it can't subscribe to invalidation message.
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [] sets its MaxItemCount to [256].
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [Responsibility] is initialized in client mode.
    CchMgrLog CchMgrConnInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [Responsibility] trys to subscribe to invalidation message.
    CchMgrLog CchMgrConnInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [Responsibility] in client mode adds itself to the global cache map.
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [Responsibility] might be vaild even if it can't subscribe to invalidation message.
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [] sets its MaxItemCount to [1].
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [UserToResponsibilityKey] is initialized in client mode.
    CchMgrLog CchMgrConnInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [UserToResponsibilityKey] trys to subscribe to invalidation message.
    CchMgrLog CchMgrConnInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [UserToResponsibilityKey] in client mode adds itself to the global cache map.
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [UserToResponsibilityKey] might be vaild even if it can't subscribe to invalidation message.
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [] sets its MaxItemCount to [256].
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [BusinessSvcProcAccessControl] is initialized in client mode.
    CchMgrLog CchMgrConnInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [BusinessSvcProcAccessControl] trys to subscribe to invalidation message.
    CchMgrLog CchMgrConnInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [BusinessSvcProcAccessControl] in client mode adds itself to the global cache map.
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [BusinessSvcProcAccessControl] might be vaild even if it can't subscribe to invalidation message.
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [] sets its MaxItemCount to [256].
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [TaskAccessControl] is initialized in client mode.
    CchMgrLog CchMgrConnInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [TaskAccessControl] trys to subscribe to invalidation message.
    CchMgrLog CchMgrConnInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [TaskAccessControl] in client mode adds itself to the global cache map.
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [TaskAccessControl] might be vaild even if it can't subscribe to invalidation message.
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [] sets its MaxItemCount to [16].
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [DataSqlCursor] is initialized in client mode.
    SARMLog SARMDetail 4 0000000253141644:0 2014-03-03 15:49:07 SARMBufferSize = 500000
    SARMLog SARMDetail 4 0000000253141644:0 2014-03-03 15:49:07 SARMFileSize = 15000000
    SARMLog SARMDetail 4 0000000253141644:0 2014-03-03 15:49:07 SARMMaxFiles = 4
    SARMLog SARMDetail 4 0000000253141644:0 2014-03-03 15:49:07 SARMPeriod = 3
    SARMLog SARMDetail 4 0000000253141644:0 2014-03-03 15:49:07 SARMThreshold = 1
    SARMLog SARMInformation 3 0000000253141644:0 2014-03-03 15:49:07 SARM is OFF -change param SARMLevel to enable
    SARMLog SARMInformation 3 0000000253141644:0 2014-03-03 15:49:07 SARM Client is OFF -change param SARMClientLevel to enable
    SARMLog SARMDetail 4 0000000253141644:0 2014-03-03 15:49:07 SARMBufferSize = 500000
    SARMLog SARMDetail 4 0000000253141644:0 2014-03-03 15:49:07 SARMFileSize = 15000000
    SARMLog SARMDetail 4 0000000253141644:0 2014-03-03 15:49:07 SARMMaxFiles = 4
    SARMLog SARMDetail 4 0000000253141644:0 2014-03-03 15:49:07 SARMPeriod = 3
    SARMLog SARMDetail 4 0000000253141644:0 2014-03-03 15:49:07 SARMThreshold = 1
    SARMLog SARMInformation 3 0000000253141644:0 2014-03-03 15:49:07 SARM is OFF -change param SARMLevel to enable
    SARMLog SARMInformation 3 0000000253141644:0 2014-03-03 15:49:07 SARM Client is OFF -change param SARMClientLevel to enable
    SARMLog SARMDetail 4 0000000253141644:0 2014-03-03 15:49:07 SARMBufferSize = 500000
    SARMLog SARMDetail 4 0000000253141644:0 2014-03-03 15:49:07 SARMFileSize = 15000000
    SARMLog SARMDetail 4 0000000253141644:0 2014-03-03 15:49:07 SARMMaxFiles = 4
    SARMLog SARMDetail 4 0000000253141644:0 2014-03-03 15:49:07 SARMPeriod = 3
    SARMLog SARMDetail 4 0000000253141644:0 2014-03-03 15:49:07 SARMThreshold = 1
    SARMLog SARMInformation 3 0000000253141644:0 2014-03-03 15:49:07 SARM is OFF -change param SARMLevel to enable
    SARMLog SARMInformation 3 0000000253141644:0 2014-03-03 15:49:07 SARM Client is OFF -change param SARMClientLevel to enable
    SARMLog SARMDetail 4 0000000253141644:0 2014-03-03 15:49:07 SARM Initialized implicitly
    CchMgrLog CchMgrConnInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [DataSqlCursor] trys to subscribe to invalidation message.
    CchMgrLog CchMgrConnInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [DataSqlCursor] in client mode adds itself to the global cache map.
    CchMgrLog CchMgrAttrInfo 4 0000000253141644:0 2014-03-03 15:49:07 Cache [DataSqlCursor] might be vaild even if it can't subscribe to invalidation message.
    ObjMgrLog Detail 4 0000000253141644:0 2014-03-03 15:49:07 Reading .cfg file from C:\Siebel\8.1.1.10\Tools_81110_3\bin\enu\tools.cfg.
    FDRLog FDRDetail 4 0000000253141644:0 2014-03-03 15:49:07 FDR Enabled = true
    FDRLog FDRDetail 4 0000000253141644:0 2014-03-03 15:49:07 FDR Append = false
    FDRLog FDRDetail 4 0000000253141644:0 2014-03-03 15:49:07 FDR Buffer size = 500000 bytes
    SecAdptLog API Trace 4 0000000253141644:0 2014-03-03 15:49:23 DB Initialize security adapter.
    SecAdptLog API Trace 4 0000000253141644:0 2014-03-03 15:49:23 DB SecurityLogin with username=SADMIN, parameters=cb5c650.
    SecAdptLog API Trace 4 0000000253141644:0 2014-03-03 15:49:23 Security DB user connect to DB SERVER_DEV_DB with username=SADMIN returns err 0 and connection 1f13a50.
    SecAdptLog API Trace 4 0000000253141644:0 2014-03-03 15:49:23 Security DB user delete DB connectoin 1f13a50
    SecAdptLog API Trace 4 0000000253141644:0 2014-03-03 15:49:23 DB SecurityGetUsername, user=SADMIN.
    ObjMgrSessionLog ObjMgrLogin 3 0000000253141644:0 2014-03-03 15:49:23 Siebel Id : SADMIN
    ObjMgrSessionLog ObjMgrAuth 3 0000000253141644:0 2014-03-03 15:49:23 Authentication name : SADMIN
    SecAdptLog API Trace 4 0000000253141644:0 2014-03-03 15:49:23 DB SecurityGetCredentials for user=SADMIN, pType=ServerDataSrc.
    ObjMgrSessionLog ObjMgrLogin 3 0000000253141644:0 2014-03-03 15:49:23 Shared Connection Id:
    ObjMgrSqlObjLog Execute 4 0000000253141644:0 2014-03-03 15:49:23 Begin: Execute SqlObj 'System Preferences' at d0465d0
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 SELECT statement with ID: D0470C0
    SELECT
          T1.CONFLICT_ID,
          T1.DB_LAST_UPD_SRC,
          CONVERT (VARCHAR (10),T1.DB_LAST_UPD, 101) + ' ' + CONVERT (VARCHAR (10),T1.DB_LAST_UPD, 8),
          CONVERT (VARCHAR (10),T1.LAST_UPD, 101) + ' ' + CONVERT (VARCHAR (10),T1.LAST_UPD, 8),
          CONVERT (VARCHAR (10),T1.CREATED, 101) + ' ' + CONVERT (VARCHAR (10),T1.CREATED, 8),
          T1.LAST_UPD_BY,
          T1.CREATED_BY,
          T1.MODIFICATION_NUM,
          T1.ROW_ID,
          T1.COMMENTS,
          T1.SYS_PREF_CD,
          T1.VAL,
          CAST(? AS VARCHAR(128))
       FROM
           dbo.S_SYS_PREF T1
       ORDER BY
          T1.SYS_PREF_CD
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 Bind variable 1: ,,,SADMIN,0000000253141644:0,,System Preferences,
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23
    ***** SQL Statement Prepare Time for SQL Cursor with ID D0470C0: 0.000 seconds *****
    ObjMgrSqlLog SqlTag 2 0000000253141644:0 2014-03-03 15:49:23 Begin: Execute SqlObj 'System Preferences' at d0465d0 with SqlTag=,,,SADMIN,0000000253141644:0,,System Preferences,
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23
    ***** SQL Statement Execute Time for SQL Cursor with ID D0470C0: 0.002 seconds *****
    ObjMgrSqlLog SqlTag 2 0000000253141644:0 2014-03-03 15:49:23 End: Execute SqlObj with SqlTag
    ObjMgrSqlObjLog Execute 4 0000000253141644:0 2014-03-03 15:49:23 End: execute SqlObject at d0465d0
    ObjMgrSqlObjLog Execute 4 0000000253141644:0 2014-03-03 15:49:23 Begin: Execute SqlObj 'Database Version' at d089118
    ObjMgrSRFLog Warning 2 0000000253141644:0 2014-03-03 15:49:23 (cdf.cpp (2628)) SBL-DAT-00144: Could not find 'Table' named 'Docking Node'. This object is inactive or nonexistent.
    ObjMgrSRFLog Warning 2 0000000253141644:0 2014-03-03 15:49:23 (cdf.cpp (2628)) SBL-DAT-00144: Could not find 'Table' named 'HQ Instance'. This object is inactive or nonexistent.
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 SELECT statement with ID: D08D050
    SELECT
          T1.CONFLICT_ID,
          T1.DB_LAST_UPD_SRC,
          CONVERT (VARCHAR (10),T1.DB_LAST_UPD, 101) + ' ' + CONVERT (VARCHAR (10),T1.DB_LAST_UPD, 8),
          CONVERT (VARCHAR (10),T1.LAST_UPD, 101) + ' ' + CONVERT (VARCHAR (10),T1.LAST_UPD, 8),
          CONVERT (VARCHAR (10),T1.CREATED, 101) + ' ' + CONVERT (VARCHAR (10),T1.CREATED, 8),
          T1.LAST_UPD_BY,
          T1.CREATED_BY,
          T1.MODIFICATION_NUM,
          T1.ROW_ID,
          T1.CUSTOM_SCHEMA_VER,
          T1.DB_MAINT_VER,
          T1.DB_SCHEMA_VER,
          T1.DB_MINOR_VER,
          T1.CUSTOM_DOCK_VER,
          T2.ROW_ID,
          T1.NODE_NAME,
          T2.ROUTE_ID,
          T1.CUSTOM_EIM_VER,
          T3.ROW_ID,
          T1.INST_MAJ_NUM,
          T1.INST_MIN_NUM,
          T3.NAME,
          T1.REPOS_BRANCH,
          T1.ZD_UPG_MODE,
          T2.ROW_ID,
          T2.NODE_TYPE_CD,
          T2.NAME,
          T2.MODIFICATION_NUM,
          CONVERT (VARCHAR (10),T2.DB_LAST_UPD, 101) + ' ' + CONVERT (VARCHAR (10),T2.DB_LAST_UPD, 8),
          T3.ROW_ID,
          T3.INST_MAJ_NUM,
          T3.INST_MIN_NUM,
          T3.MODIFICATION_NUM,
          CONVERT (VARCHAR (10),T3.DB_LAST_UPD, 101) + ' ' + CONVERT (VARCHAR (10),T3.DB_LAST_UPD, 8),
          CAST(? AS VARCHAR(128))
       FROM
           dbo.S_APP_VER T1
              LEFT OUTER JOIN dbo.S_NODE T2 ON T1.NODE_NAME = T2.NAME AND T2.NODE_TYPE_CD = N'REMOTE'
              LEFT OUTER JOIN dbo.S_INT_INSTANCE T3 ON T1.INST_MAJ_NUM = T3.INST_MAJ_NUM AND T1.INST_MIN_NUM = T3.INST_MIN_NUM
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 Bind variable 1: ,,,SADMIN,0000000253141644:0,,Database Version,
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23
    ***** SQL Statement Prepare Time for SQL Cursor with ID D08D050: 0.000 seconds *****
    ObjMgrSqlLog SqlTag 2 0000000253141644:0 2014-03-03 15:49:23 Begin: Execute SqlObj 'Database Version' at d089118 with SqlTag=,,,SADMIN,0000000253141644:0,,Database Version,
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23
    ***** SQL Statement Execute Time for SQL Cursor with ID D08D050: 0.002 seconds *****
    ObjMgrSqlLog SqlTag 2 0000000253141644:0 2014-03-03 15:49:23 End: Execute SqlObj with SqlTag
    ObjMgrSqlObjLog Execute 4 0000000253141644:0 2014-03-03 15:49:23 End: execute SqlObject at d089118
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23
    ***** SQL Statement Initial Fetch Time for SQL Cursor with ID D08D050: 0.000 seconds *****
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Accesses item [ZERO_DTIME_MODE..ENU] in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Item [ZERO_DTIME_MODE..ENU] is not loaded to cache [LOV] or it's invalidated by others.
    ObjMgrSqlObjLog Execute 4 0000000253141644:0 2014-03-03 15:49:23 Begin: Execute SqlObj 'List Of Values (Internal)' at d096af8
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 SELECT statement with ID: D097608
    SELECT
          T1.CONFLICT_ID,
          CONVERT (VARCHAR (10),T1.LAST_UPD, 101) + ' ' + CONVERT (VARCHAR (10),T1.LAST_UPD, 8),
          CONVERT (VARCHAR (10),T1.CREATED, 101) + ' ' + CONVERT (VARCHAR (10),T1.CREATED, 8),
          T1.LAST_UPD_BY,
          T1.CREATED_BY,
          T1.MODIFICATION_NUM,
          T1.ROW_ID,
          T2.BU_ID,
          T1.MULTI_LINGUAL_FLG,
          CAST(? AS VARCHAR(128))
       FROM
           dbo.S_LST_OF_VAL T1
              LEFT OUTER JOIN dbo.S_LST_OF_VAL_BU T2 ON T1.ROW_ID = T2.LST_OF_VAL_ID
       WHERE
          (T1.NAME = ? AND T1.TYPE = ?)
       ORDER BY
          T1.TYPE, T1.ORDER_BY, T1.VAL
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 Bind variable 1: ,,,SADMIN,0000000253141644:0,,List Of Values (Internal),
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 Bind variable 2: ZERO_DTIME_MODE
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 Bind variable 3: LOV_TYPE
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23
    ***** SQL Statement Prepare Time for SQL Cursor with ID D097608: 0.000 seconds *****
    ObjMgrSqlLog SqlTag 2 0000000253141644:0 2014-03-03 15:49:23 Begin: Execute SqlObj 'List Of Values (Internal)' at d096af8 with SqlTag=,,,SADMIN,0000000253141644:0,,List Of Values (Internal),
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23
    ***** SQL Statement Execute Time for SQL Cursor with ID D097608: 0.001 seconds *****
    ObjMgrSqlLog SqlTag 2 0000000253141644:0 2014-03-03 15:49:23 End: Execute SqlObj with SqlTag
    ObjMgrSqlObjLog Execute 4 0000000253141644:0 2014-03-03 15:49:23 End: execute SqlObject at d096af8
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23
    ***** SQL Statement Initial Fetch Time for SQL Cursor with ID D097608: 0.000 seconds *****
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Accesses item [ZERO_DTIME_MODE..ENU] in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Item [ZERO_DTIME_MODE..ENU] is not loaded to cache [LOV] or it's invalidated by others.
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Item [ZERO_DTIME_MODE..ENU] is loaded into cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Accesses item [ZERO_DTIME_MODE.DO.ENU] in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Item [ZERO_DTIME_MODE.DO.ENU] is not loaded to cache [LOV] or it's invalidated by others.
    ObjMgrSqlObjLog Execute 4 0000000253141644:0 2014-03-03 15:49:23 Begin: Execute SqlObj 'List Of Values (Internal)' at d096af8
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 SELECT statement with ID: D09D278
    SELECT
          T1.CONFLICT_ID,
          CONVERT (VARCHAR (10),T1.LAST_UPD, 101) + ' ' + CONVERT (VARCHAR (10),T1.LAST_UPD, 8),
          CONVERT (VARCHAR (10),T1.CREATED, 101) + ' ' + CONVERT (VARCHAR (10),T1.CREATED, 8),
          T1.LAST_UPD_BY,
          T1.CREATED_BY,
          T1.MODIFICATION_NUM,
          T1.ROW_ID,
          T1.DFLT_LIC_FLG,
          T1.NAME,
          T1.VAL,
          CAST(? AS VARCHAR(128))
       FROM
           dbo.S_LST_OF_VAL T1
       WHERE
          (T1.ACTIVE_FLG = ? OR T1.ACTIVE_FLG IS NULL) AND
          (T1.TYPE = ? AND T1.BU_ID IS NULL)
       ORDER BY
          T1.TYPE, T1.ORDER_BY, T1.VAL
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 Bind variable 1: ,,,SADMIN,0000000253141644:0,,List Of Values (Internal),
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 Bind variable 2: Y
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 Bind variable 3: ZERO_DTIME_MODE
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23
    ***** SQL Statement Prepare Time for SQL Cursor with ID D09D278: 0.000 seconds *****
    ObjMgrSqlLog SqlTag 2 0000000253141644:0 2014-03-03 15:49:23 Begin: Execute SqlObj 'List Of Values (Internal)' at d096af8 with SqlTag=,,,SADMIN,0000000253141644:0,,List Of Values (Internal),
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23
    ***** SQL Statement Execute Time for SQL Cursor with ID D09D278: 0.001 seconds *****
    ObjMgrSqlLog SqlTag 2 0000000253141644:0 2014-03-03 15:49:23 End: Execute SqlObj with SqlTag
    ObjMgrSqlObjLog Execute 4 0000000253141644:0 2014-03-03 15:49:23 End: execute SqlObject at d096af8
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Accesses item [ZERO_DTIME_MODE.DO.ENU] in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Item [ZERO_DTIME_MODE.DO.ENU] is not loaded to cache [LOV] or it's invalidated by others.
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23
    ***** SQL Statement Initial Fetch Time for SQL Cursor with ID D09D278: 0.000 seconds *****
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Item [ZERO_DTIME_MODE.DO.ENU] is loaded into cache [LOV].
    ObjMgrSqlObjLog Execute 4 0000000253141644:0 2014-03-03 15:49:23 Begin: Execute SqlObj 'Audit Trail Version' at d0b23d0
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 SELECT statement with ID: D0B7F78
    SELECT
          T1.CONFLICT_ID,
          T1.DB_LAST_UPD_SRC,
          CONVERT (VARCHAR (10),T1.DB_LAST_UPD, 101) + ' ' + CONVERT (VARCHAR (10),T1.DB_LAST_UPD, 8),
          CONVERT (VARCHAR (10),T1.LAST_UPD, 101) + ' ' + CONVERT (VARCHAR (10),T1.LAST_UPD, 8),
          CONVERT (VARCHAR (10),T1.CREATED, 101) + ' ' + CONVERT (VARCHAR (10),T1.CREATED, 8),
          T1.LAST_UPD_BY,
          T1.CREATED_BY,
          T1.MODIFICATION_NUM,
          T1.ROW_ID,
          T1.VERSION_NUM,
          CAST(? AS VARCHAR(128))
       FROM
           dbo.S_AUDIT_VERSION T1
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 Bind variable 1: ,,,SADMIN,0000000253141644:0,,Audit Trail Version,
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23
    ***** SQL Statement Prepare Time for SQL Cursor with ID D0B7F78: 0.000 seconds *****
    ObjMgrSqlLog SqlTag 2 0000000253141644:0 2014-03-03 15:49:23 Begin: Execute SqlObj 'Audit Trail Version' at d0b23d0 with SqlTag=,,,SADMIN,0000000253141644:0,,Audit Trail Version,
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23
    ***** SQL Statement Execute Time for SQL Cursor with ID D0B7F78: 0.001 seconds *****
    ObjMgrSqlLog SqlTag 2 0000000253141644:0 2014-03-03 15:49:23 End: Execute SqlObj with SqlTag
    ObjMgrSqlObjLog Execute 4 0000000253141644:0 2014-03-03 15:49:23 End: execute SqlObject at d0b23d0
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23
    ***** SQL Statement Initial Fetch Time for SQL Cursor with ID D0B7F78: 0.000 seconds *****
    GenericLog GenericInfo 3 0000000253141644:0 2014-03-03 15:49:23 [AUDIT_LOG]: Global audit cache version '' is different from database version 'L'. Global cache needs to be reloaded.
    GenericLog GenericInfo 3 0000000253141644:0 2014-03-03 15:49:23 [AUDIT_LOG]: Global audit cache will be loaded/reloaded.
    GenericLog GenericInfo 3 0000000253141644:0 2014-03-03 15:49:23 [AUDIT_LOG]: Global audit cache cleaned.
    ObjMgrSqlObjLog Execute 4 0000000253141644:0 2014-03-03 15:49:23 Begin: Execute SqlObj 'Audit Trail Buscomp' at d0c13b0
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 SELECT statement with ID: D0C1EC0
    SELECT
          T1.CONFLICT_ID,
          T1.DB_LAST_UPD_SRC,
          CONVERT (VARCHAR (10),T1.DB_LAST_UPD, 101) + ' ' + CONVERT (VARCHAR (10),T1.DB_LAST_UPD, 8),
          CONVERT (VARCHAR (10),T1.LAST_UPD, 101) + ' ' + CONVERT (VARCHAR (10),T1.LAST_UPD, 8),
          CONVERT (VARCHAR (10),T1.CREATED, 101) + ' ' + CONVERT (VARCHAR (10),T1.CREATED, 8),
          T1.LAST_UPD_BY,
          T1.CREATED_BY,
          T1.MODIFICATION_NUM,
          T1.ROW_ID,
          T1.ASSOC_FLG,
          T1.BUSCOMP_NAME,
          T1.COPY_FLG,
          T1.DELETE_FLG,
          CONVERT (VARCHAR (10),T1.END_DT, 101) + ' ' + CONVERT (VARCHAR (10),T1.END_DT, 8),
          T1.NEW_FLG,
          T1.RESTRICTION_CD,
          CONVERT (VARCHAR (10),T1.START_DT, 101) + ' ' + CONVERT (VARCHAR (10),T1.START_DT, 8),
          T1.UPDATE_FLG,
          T1.BASE_TBL_NAME,
          T1.DESC_TEXT,
          T1.EXPORT_FLG,
          T1.SYS_AUDIT_FLG,
          CAST(? AS VARCHAR(128))
       FROM
           dbo.S_AUDIT_BUSCOMP T1
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 Bind variable 1: ,,,SADMIN,0000000253141644:0,,Audit Trail Buscomp,
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23
    ***** SQL Statement Prepare Time for SQL Cursor with ID D0C1EC0: 0.000 seconds *****
    ObjMgrSqlLog SqlTag 2 0000000253141644:0 2014-03-03 15:49:23 Begin: Execute SqlObj 'Audit Trail Buscomp' at d0c13b0 with SqlTag=,,,SADMIN,0000000253141644:0,,Audit Trail Buscomp,
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23
    ***** SQL Statement Execute Time for SQL Cursor with ID D0C1EC0: 0.002 seconds *****
    ObjMgrSqlLog SqlTag 2 0000000253141644:0 2014-03-03 15:49:23 End: Execute SqlObj with SqlTag
    ObjMgrSqlObjLog Execute 4 0000000253141644:0 2014-03-03 15:49:23 End: execute SqlObject at d0c13b0
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23
    ***** SQL Statement Initial Fetch Time for SQL Cursor with ID D0C1EC0: 0.000 seconds *****
    ObjMgrSqlObjLog Execute 4 0000000253141644:0 2014-03-03 15:49:23 Begin: Execute SqlObj 'Time Zone' at d0d0820
    ObjMgrSRFLog Warning 2 0000000253141644:0 2014-03-03 15:49:23 (cdf.cpp (2628)) SBL-DAT-00144: Could not find 'Table' named 'S_TIMEZONES_TIMEZONE_LANG - Translation'. This object is inactive or nonexistent.
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 SELECT statement with ID: D0D32D8
    SELECT
          T1.CONFLICT_ID,
          T1.DB_LAST_UPD_SRC,
          CONVERT (VARCHAR (10),T1.DB_LAST_UPD, 101) + ' ' + CONVERT (VARCHAR (10),T1.DB_LAST_UPD, 8),
          CONVERT (VARCHAR (10),T1.LAST_UPD, 101) + ' ' + CONVERT (VARCHAR (10),T1.LAST_UPD, 8),
          CONVERT (VARCHAR (10),T1.CREATED, 101) + ' ' + CONVERT (VARCHAR (10),T1.CREATED, 8),
          T1.LAST_UPD_BY,
          T1.CREATED_BY,
          T1.MODIFICATION_NUM,
          T1.ROW_ID,
          T1.ACTIVE_FLG,
          T1.DST_ABBREV,
          T1.NAME,
          T1.STD_ABBREV,
          T2.DST_ABBREV,
          T2.NAME,
          T2.STD_ABBREV,
          T2.ROW_ID,
          T2.LANG_ID,
          T2.PAR_ROW_ID,
          T2.MODIFICATION_NUM,
          CONVERT (VARCHAR (10),T2.DB_LAST_UPD, 101) + ' ' + CONVERT (VARCHAR (10),T2.DB_LAST_UPD, 8),
          CAST(? AS VARCHAR(128))
       FROM
           dbo.S_TIMEZONE T1
              LEFT OUTER JOIN dbo.S_TIMEZONE_LANG T2 ON T1.ROW_ID = T2.PAR_ROW_ID AND T2.LANG_ID = ?
       WHERE
          (T1.ACTIVE_FLG = N'Y')
       ORDER BY
          T1.NAME
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 Bind variable 1: ,,,SADMIN,0000000253141644:0,,Time Zone,
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 Bind variable 2: ENU
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23
    ***** SQL Statement Prepare Time for SQL Cursor with ID D0D32D8: 0.000 seconds *****
    ObjMgrSqlLog SqlTag 2 0000000253141644:0 2014-03-03 15:49:23 Begin: Execute SqlObj 'Time Zone' at d0d0820 with SqlTag=,,,SADMIN,0000000253141644:0,,Time Zone,
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23
    ***** SQL Statement Execute Time for SQL Cursor with ID D0D32D8: 0.002 seconds *****
    ObjMgrSqlLog SqlTag 2 0000000253141644:0 2014-03-03 15:49:23 End: Execute SqlObj with SqlTag
    ObjMgrSqlObjLog Execute 4 0000000253141644:0 2014-03-03 15:49:23 End: execute SqlObject at d0d0820
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Accesses item [TIME_ZONE_DST_ORDINAL..ENU] in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Item [TIME_ZONE_DST_ORDINAL..ENU] is not loaded to cache [LOV] or it's invalidated by others.
    ObjMgrSqlObjLog Execute 4 0000000253141644:0 2014-03-03 15:49:23 Begin: Execute SqlObj 'List Of Values (Internal)' at d096af8
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 SELECT statement with ID: D097608
    SELECT
          T1.CONFLICT_ID,
          CONVERT (VARCHAR (10),T1.LAST_UPD, 101) + ' ' + CONVERT (VARCHAR (10),T1.LAST_UPD, 8),
          CONVERT (VARCHAR (10),T1.CREATED, 101) + ' ' + CONVERT (VARCHAR (10),T1.CREATED, 8),
          T1.LAST_UPD_BY,
          T1.CREATED_BY,
          T1.MODIFICATION_NUM,
          T1.ROW_ID,
          T2.BU_ID,
          T1.MULTI_LINGUAL_FLG,
          CAST(? AS VARCHAR(128))
       FROM
           dbo.S_LST_OF_VAL T1
              LEFT OUTER JOIN dbo.S_LST_OF_VAL_BU T2 ON T1.ROW_ID = T2.LST_OF_VAL_ID
       WHERE
          (T1.NAME = ? AND T1.TYPE = ?)
       ORDER BY
          T1.TYPE, T1.ORDER_BY, T1.VAL
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 Bind variable 1: ,,,SADMIN,0000000253141644:0,,List Of Values (Internal),
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 Bind variable 2: TIME_ZONE_DST_ORDINAL
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 Bind variable 3: LOV_TYPE
    ObjMgrSqlLog SqlTag 2 0000000253141644:0 2014-03-03 15:49:23 Begin: Execute SqlObj 'List Of Values (Internal)' at d096af8 with SqlTag=,,,SADMIN,0000000253141644:0,,List Of Values (Internal),
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23
    ***** SQL Statement Execute Time for SQL Cursor with ID D097608: 0.001 seconds *****
    ObjMgrSqlLog SqlTag 2 0000000253141644:0 2014-03-03 15:49:23 End: Execute SqlObj with SqlTag
    ObjMgrSqlObjLog Execute 4 0000000253141644:0 2014-03-03 15:49:23 End: execute SqlObject at d096af8
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23
    ***** SQL Statement Initial Fetch Time for SQL Cursor with ID D097608: 0.000 seconds *****
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Accesses item [TIME_ZONE_DST_ORDINAL..ENU] in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Item [TIME_ZONE_DST_ORDINAL..ENU] is not loaded to cache [LOV] or it's invalidated by others.
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Item [TIME_ZONE_DST_ORDINAL..ENU] is loaded into cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Accesses item [TIME_ZONE_DST_ORDINAL.DO.ENU] in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Item [TIME_ZONE_DST_ORDINAL.DO.ENU] is not loaded to cache [LOV] or it's invalidated by others.
    ObjMgrSqlObjLog Execute 4 0000000253141644:0 2014-03-03 15:49:23 Begin: Execute SqlObj 'List Of Values (Internal)' at d096af8
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 SELECT statement with ID: D09D278
    SELECT
          T1.CONFLICT_ID,
          CONVERT (VARCHAR (10),T1.LAST_UPD, 101) + ' ' + CONVERT (VARCHAR (10),T1.LAST_UPD, 8),
          CONVERT (VARCHAR (10),T1.CREATED, 101) + ' ' + CONVERT (VARCHAR (10),T1.CREATED, 8),
          T1.LAST_UPD_BY,
          T1.CREATED_BY,
          T1.MODIFICATION_NUM,
          T1.ROW_ID,
          T1.DFLT_LIC_FLG,
          T1.NAME,
          T1.VAL,
          CAST(? AS VARCHAR(128))
       FROM
           dbo.S_LST_OF_VAL T1
       WHERE
          (T1.ACTIVE_FLG = ? OR T1.ACTIVE_FLG IS NULL) AND
          (T1.TYPE = ? AND T1.BU_ID IS NULL)
       ORDER BY
          T1.TYPE, T1.ORDER_BY, T1.VAL
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 Bind variable 1: ,,,SADMIN,0000000253141644:0,,List Of Values (Internal),
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 Bind variable 2: Y
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 Bind variable 3: TIME_ZONE_DST_ORDINAL
    ObjMgrSqlLog SqlTag 2 0000000253141644:0 2014-03-03 15:49:23 Begin: Execute SqlObj 'List Of Values (Internal)' at d096af8 with SqlTag=,,,SADMIN,0000000253141644:0,,List Of Values (Internal),
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23
    ***** SQL Statement Execute Time for SQL Cursor with ID D09D278: 0.001 seconds *****
    ObjMgrSqlLog SqlTag 2 0000000253141644:0 2014-03-03 15:49:23 End: Execute SqlObj with SqlTag
    ObjMgrSqlObjLog Execute 4 0000000253141644:0 2014-03-03 15:49:23 End: execute SqlObject at d096af8
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Accesses item [TIME_ZONE_DST_ORDINAL.DO.ENU] in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Item [TIME_ZONE_DST_ORDINAL.DO.ENU] is not loaded to cache [LOV] or it's invalidated by others.
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23
    ***** SQL Statement Initial Fetch Time for SQL Cursor with ID D09D278: 0.000 seconds *****
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Item [TIME_ZONE_DST_ORDINAL.DO.ENU] is loaded into cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Accesses item [TIME_ZONE_DST_ORDINAL..ENU] in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Item [TIME_ZONE_DST_ORDINAL..ENU] is in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Accesses item [TIME_ZONE_DST_ORDINAL.DO.ENU] in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Item [TIME_ZONE_DST_ORDINAL.DO.ENU] is in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Accesses item [TIME_ZONE_DST_ORDINAL..ENU] in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Item [TIME_ZONE_DST_ORDINAL..ENU] is in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Accesses item [TIME_ZONE_DST_ORDINAL.DO.ENU] in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Item [TIME_ZONE_DST_ORDINAL.DO.ENU] is in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Accesses item [TIME_ZONE_DST_ORDINAL..ENU] in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Item [TIME_ZONE_DST_ORDINAL..ENU] is in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Accesses item [TIME_ZONE_DST_ORDINAL.DO.ENU] in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Item [TIME_ZONE_DST_ORDINAL.DO.ENU] is in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Accesses item [TIME_ZONE_DST_ORDINAL..ENU] in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Item [TIME_ZONE_DST_ORDINAL..ENU] is in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Accesses item [TIME_ZONE_DST_ORDINAL.DO.ENU] in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Item [TIME_ZONE_DST_ORDINAL.DO.ENU] is in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Accesses item [DAY_NAME..ENU] in cache [LOV].
    CchMgrLog CchMgrAcsInfo 4 0000000253141644:0 2014-03-03 15:49:23 Item [DAY_NAME..ENU] is not loaded to cache [LOV] or it's invalidated by others.
    ObjMgrSqlObjLog Execute 4 0000000253141644:0 2014-03-03 15:49:23 Begin: Execute SqlObj 'List Of Values (Internal)' at d096af8
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 SELECT statement with ID: D097608
    SELECT
          T1.CONFLICT_ID,
          CONVERT (VARCHAR (10),T1.LAST_UPD, 101) + ' ' + CONVERT (VARCHAR (10),T1.LAST_UPD, 8),
          CONVERT (VARCHAR (10),T1.CREATED, 101) + ' ' + CONVERT (VARCHAR (10),T1.CREATED, 8),
          T1.LAST_UPD_BY,
          T1.CREATED_BY,
          T1.MODIFICATION_NUM,
          T1.ROW_ID,
          T2.BU_ID,
          T1.MULTI_LINGUAL_FLG,
          CAST(? AS VARCHAR(128))
       FROM
           dbo.S_LST_OF_VAL T1
              LEFT OUTER JOIN dbo.S_LST_OF_VAL_BU T2 ON T1.ROW_ID = T2.LST_OF_VAL_ID
       WHERE
          (T1.NAME = ? AND T1.TYPE = ?)
       ORDER BY
          T1.TYPE, T1.ORDER_BY, T1.VAL
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 Bind variable 1: ,,,SADMIN,0000000253141644:0,,List Of Values (Internal),
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 Bind variable 2: DAY_NAME
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23 Bind variable 3: LOV_TYPE
    ObjMgrSqlLog SqlTag 2 0000000253141644:0 2014-03-03 15:49:23 Begin: Execute SqlObj 'List Of Values (Internal)' at d096af8 with SqlTag=,,,SADMIN,0000000253141644:0,,List Of Values (Internal),
    ObjMgrSqlLog Detail 4 0000000253141644:0 2014-03-03 15:49:23
    ***** SQL Statement Execute Time for SQL Cursor with ID D097608: 0.001 seconds *****
    ObjMgrSqlLog SqlTag 2 0000000253141644:0 2014-03-03 15:49:23 End: Execute SqlObj with SqlTag
    ObjMgrSqlObjLog Execute 4 0000000253141644:0 2014-03-03 15:49:23 End: execute SqlObject at d096af8

    Clear the files in C:\Windows\Downloaded Program Files directory
    Make sure IE browser settings are set to allow downloading activex controls (Prompt for signed and unsigned ActiveX).
    Restart Siebel Server and open the URL in IE
    After logging in, you will be prompted to download Siebel HI Client and Siebel Automation ActiveX files. Say Yes and it will download it to the above directory.
    Now verify if it is recorded.
    Also, make sure you have selected the correct plugin (Siebel Functional or Siebel Load) in OpenScript
    -Raj

  • License Model for Siebel CDI

    Hello Team,
    I have a question regarding the license model for a Siebel project of the following functionality:
    1.- Opportunity Management
    2.- CDI
    My question is:
    If I quote the Siebel Sales Base Functionality, Do I need to quote also the Customer Hub (B2B) or Is that functionality already included in the Siebel Sales Base Functionality?
    I know that I have to quote also the Data Steward and Data Quality.
    Many thanks AF

    Alex, I hope i dont steal the thunder of thread you started.
    Experts,
    I want to add to Alex's question , Is it also possible that CHARM can be a common setup for a set of small/mid sized companies provisioned by a central  Service provider based Solman and use authorization concepts and BP based restrictions to allow creation of RFCs / CDs only for the systems they are allowed to?
    Would be the future cloud model?
    Thx
    Chandrakanth

  • How to install and integrate siebel crm with oracle application r12

    Hi,
    i would like to install siebel sales crm on my linux machine and intigrate it with oracle application r12. i need some kind of doc id or metalink id from which i can get all information.Kindly help on the same.
    Thanks,
    Vishal Joshi
    Edited by: Vishal Joshi on Jan 25, 2011 3:15 PM

    Hi,
    Most of these integrations are prebuilt. Look for AIA/PIP.
    If you check out the presentations from OOW there were session on how other customers have done this.
    HTH,
    R
    Robert Ponder
    Lead Architect and Director
    Ponder Pro Serve
    cell: 770.490.2767
    fax: 770.412.8259
    email: [email protected]
    web: www.ponderproserve.com

  • Siebel CRM's Subject Areas

    Hi All,
    Can some one tell me what are all subject areas available for Siebel CRM product. I have document that lists only for EBS 11i / R12.
    But, no information on siebel. So, can some one route me to proper documents or list down here which product in siebel CRM have its respective subject areas?
    Thanks in advance.

    First of all, cross-posting (Siebel CRM's Subject Areas isn't good forum behaviour..
    But here is an overview:
    Siebel Sales:
    Sales Analytics
    Usage Accelarator Analytics Option
    Siebel Call Center, Siebel Service, Siebel Field Service:
    Service Analytics
    Siebel Enterprise Marketing, Siebel Marketing Resource Management:
    Marketing Analytics
    Marketing Planning Analytics Option
    Siebel Customer Order Management:
    Order Management Analytics
    Siebel Partner Relationship Management:
    Partner Analytics
    Siebel Life Sciences - Pharmaceuticals:
    Pharma Sales Analytics
    Pharma Marketing Analytics
    Siebel FINS:
    Financial Institution Analytics
    Financial Retail Analytics
    Siebel Consumer Goods:
    Consumer Packaged Goods Sales Analytics
    Siebel Public Sector:
    Case Management Analytics
    Case Investigations Analytics Option
    Benefits Management Analytics Option
    Regards,
    Stijn

  • Req. Siebel License Keys Information.

    Hi,
    I want small information about Siebel License Keys if i want to active license key for a particular siebel Product (For example call center or sales or Loyalty) which are i select in oracle site they provide no.of products list
    (like 1. Siebel CRM Base "CRM Base" includes Sales, Service and Marketing Automation
    2.Siebel Sales Base
    3. Siebel Service Base
    4. Siebel Call Center (no longer available - upgrades from pre-7.8 purchases only)
    5. Siebel Sales option
    6. Siebel Service option
    7. Siebel Anywhere
    8. Siebel Connector for Oracle Applications
    9. Siebel CRM Desktop
    10.Siebel eSales
    11.Siebel Quotes
    12.Siebel Tools etc.)
    If i select All-Inclusive License Keys it expires 01-Aug-2011 after that is it possible to update License key without modifying existing setup.
    Plz reply me if you know.
    Thanks & Regards

    Hi,
    If you're talking about a live environment, then you'll get the keys that you paid for through your Oracle Sales Manager or Technical Account Manager.
    If you're talking about anything else, get your keys from here:
    http://www.oracle.com/us/support/licensecodes/siebel/index.html
    Note that if you're talking about a real live environment, you need to pay Oracle - there are no two ways about it. If you try to use demo keys in a live environment, that's a bad, bad thing.
    Regards,
    mroshaw

  • Oracle EBS 11.5.10 Sales Specific Dashboards.

    Hi All,
    After completing a successful load of "Oracle 11.5.10 Enterprise Sales", I expected to get data in the Sales Dashboard. Instead I am getting data in the Supply Chain and Order Management dashboards.
    The Sales Dashboard is giving an error "Table or View does not exist" for the table W_REVN_F. Is this an error or is the Sales Dashboard not meant for Oracle 11.5.10 Sales.
    Is there some document that lists which dashboards will display data for which ETL plans?
    Thanks,
    Nilanshu

    Hi,
    The Sales dashboards in Oracle BI Apps source their data from Oracle Siebel Sales, hence the no data found error.
    View the documentation library for Oracle BI Apps; (http://www.oracle.com/technology/documentation/bi_apps.html)
    In the Getting Started section, there is a document entitled 'System Requirements and Supported Platforms';
    (http://download.oracle.com/docs/cd/E10783_01/doc/nav/portal_1.htm)
    Within that document, refer to the 'Supported Source Systems' section;
    (http://download.oracle.com/docs/cd/E10783_01/doc/bi.79/e10920.pdf)
    This section lists what BI Apps dashboards are available for Siebel CRM, Oracle EBS, and PeopleSoft Enterprise applications.
    For Oracle Sales 11.5.10, only the Daily Business Intelligence (DBI) dashboards are available currently, and the DBI for Sales license is bundled in with your EBS license.
    Hope that helps!

  • BI Apps CRM Sales

    Hi Guys,
    when you implement BI Apps CRM Sales, it is to obtain data from the Siebel CRM module Sale.
    Have we in the same time the data from the Siebel CRM modules eSales and eCommerce ?
    Thanks,

    Yes.
    Sales Analytics includes transaction of Siebel Order Management and eCommerce uses tables of Siebel OM.
    eSales uses tables of Siebel Sales.
    With Sales Analytics we have data from Siebel Sales, eSales and eCommerce.

  • Siebel Live Chat

    Hi,
    We are using Siebel Sales application (Version 8.1.1.7) and would like to implement Siebel Live Chat between users ( just IM chat between Agents). I have gone through the "Chat.pdf" but it says CCA or COD is required to set up Siebel Live chat. However, we are looking for light solution which does not require any additional infrastructure & license.
    I have gone through the "Thread: Chat options with PRM" post in this forum in which it's clearly mentioned that *"Its very easy to embed IM chat like windows live messenger within Siebel CRM, but this provides only agent-agent chat without the routing COD/CCA provides..."*
    Could you please offer any suggestions how to integrate windows live messenger or some other third party messenger like Yahoo or microsoft lync with Siebel application so as to help each other.
    Thanks and Regards,
    Bala

    Live chat with... Mozilla?? There used to be a support chat option, but that has been discontinued.
    Or did you mean someone else's live chat?

  • How to change default currency in BI Apps

    We need to run siebel sales & marketing analytics . Now we have two questions.
    1. I can't find default currency parameter in DAC's Source System Parameters. How could we change the default currency from USD to CNY.
    2. We can run all jobs successfully, but most of area in BI Dashboard id displaied 'No resault' ... even if we use the copy of product data.

    Hi,
    In DAC>Source System Parameters > $$GLOBAL1_CURR_CODE parameter, here you need to change from USD to CNY. Refer OBIA document for these currency codes. Genereally $$GLOBAL1_CURR_CODE refers to Document currency, $$GLOBAL2_CURR_CODE refers to Local currency and $$GLOBAL3_CURR_CODE refers to Global currency.
    You need to change this code based on your requirement.
    Anyone correct me if am wrong....Hope this helps you.........
    Thanks,
    Navin Kumar Bolla
    Edited by: Navin Kumar Bolla on May 26, 2011 1:09 AM

Maybe you are looking for