Cannot create Objects

Hi All,
Could any one please suggest possible reason and solution for teh below error in Essbase.
"CANNOT CREATE OBJECT \s510.1
I have been trying to update the outline (using data and rules files) When trying to save changes I keep receivng errors similar to this one (object name tends to vary at each attampt).
When making manual changes I am able to save the updated outline (working on TEST database).
Version of essbase is 6.5.6 in unix environment.
Please suggest solution ASAP.

This is part of the trace file :
*** ACTION NAME:() 2012-12-13 15:28:25.874
*** MODULE NAME:(SQL*Plus) 2012-12-13 15:28:25.874
*** SERVICE NAME:(oramult) 2012-12-13 15:28:25.874
*** SESSION ID:(1062.879) 2012-12-13 15:28:25.874
DEADLOCK DETECTED ( ORA-00060 )
[Transaction Deadlock]
The following deadlock is not an ORACLE error. It is a
deadlock due to user error in the design of an application
or from issuing incorrect ad-hoc SQL. The following
information may aid in determining the deadlock:
Deadlock graph:
---------Blocker(s)-------- ---------Waiter(s)---------
Resource Name process session holds waits process session holds waits
TX-000a002d-0098a33e 22 1062 X 22 1062 S
session 1062: DID 0001-0016-0000000C     session 1062: DID 0001-0016-0000000C
Rows waited on:
Session 1062: no row
Information on the OTHER waiting sessions:
End of information on OTHER waiting sessions.
Current SQL statement for this session:
delete from obj$ where obj# = :1

Similar Messages

  • Error starting Web Start App: automation server cannot create object

    When starting Web Start Application without java installation just by starting javaws xyz.jnlp in Windows2000 there comes 2 times the Error Message "Microsoft JScript: automation server cannot create object", but the application starts nevertheless.
    Where does this error come from?
    How can we avoid it?

    see:
    http://forum.java.sun.com/thread.jspa?threadID=639218&tstart=10
    this dialog is thrown from the IE javascript engine when Java Web Start tries to invoke it to resolve the correct proxy for a given URL using the configured PAC file.
    /Andy

  • Cannot create object CrystalEnterprise.PSReportFactory.

    Hello,
    I'm getting the following error when I try to obtain the PSReportFactory:
         Cannot create object CrystalEnterprise.PSReportFactory.
    I am using BusinessObjects XI R2 .Net sdk and Visual Studio 2005. I am also connecting to Crystal Reports Server 2008. Here is my code:
    static EnterpriseSession ceSession;
    EnterpriseService ceEnterpriseService;
    ceEnterpriseService = ceSession.GetService("PSReportFactory");
    Object serviceAsObject = ceEnterpriseService.Interface;
    PSReportFactory psReportFactory = (PSReportFactory)serviceAsObject;
    int reportIDAsInteger= Convert.ToInt32(ReportId);
    ReportSource reportSource = psReportFactory.OpenReportSource(reportIDAsInteger);   
    ISCRReportSource iscrReportSource = reportSource;   
    return iscrReportSource;
    The error occurs at the following line:
          ceEnterpriseService = ceSession.GetService("PSReportFactory");
    Thanks for your help,
    koko1313

    I solved this issue by installing all the Developer Components from the Crystal Reports XI R2 disk.  I had previously installed only the sdk for BusinessObjects XI R2 .Net sdk for .net 2.
    Now when I run my application, I get an "Object reference not set to an instance of an object." error in the viewer.  I tried adding a virtual directory in iis pointing to the crystalreportviewer115 folder. But this has not helped. 
    Is there something else that I should be installing in my deployment? I have tried everything I could find on various forums, but nothing works.
    Also, I have simplified my code and removed the creation of the PSReportFactory. Here is what I have now:
    static EnterpriseSession ceSession;
    EnterpriseService ceEnterpriseService;
    ceEnterpriseService = ceSession.GetService("", "InfoStore");
    ceInfoStore = new InfoStore(ceEnterpriseService);
    string sQuery = "Select * From CI_INFOOBJECTS Where SI_PROGID = 'CrystalEnterprise.Report' AND SI_ID=" + reportId;
    ceReportObjects = ceInfoStore.Query(sQuery);
    if (ceReportObjects.Count > 0)
           ceReportObject = ceReportObjects[1];
    CrystalReportViewer1.ReportSource = ceReportObject ;
    This code was working when I used the Crystal Reports .NET sdk for Visual Studio 2005...
    Thanks again,
    koko1313

  • MSXML6 not supporting VB6 outlook.Attachments (MailItem.Attachments) getting ActiveX cannot create object error

    Hi, This is about msxml4 removal from my application for security reason.
    Currently in my application Outlook Addin with VB6 using Office2010 and outlook object is refering with MSOUTL.OLB from C:\Program Files\Microsoft Office\Office14
    When unregister MSXML4.dll to remove the dependacy of it and use MSXML6.dll, My application getting error.
    VB6 outlook.Attachments getting ActiveX cannot create object error
    if i register msxml4.dll again, then the same is working fine.
    Pls suggest how to remove msxml4 dependancy without this error
    Regards,
    Sathiya

    Firstly, you shouldn't be messing with the system dlls.
    Secondly, do you create an instance of the outlook.Attachments object (using "new" etc.)? That object cannot be created, you can only retrieve if from an Outlook item (e.g. MailItem.Attachments property).
    Please show the relevant snippet of your code.
    Dmitry Streblechenko (MVP)
    http://www.dimastr.com/redemption
    Redemption - what the Outlook
    Object Model should have been
    Version 5.5 is now available!

  • Cannot create object if Acrobat is already running

    Hello! Recently I had to update an old VB6 application that was working well with Acrobat 5 (full version, not the Reader) to use Acrobat 9, because Acrobat 5 is not compatible with Windows 7. I have downloaded the SDK and with a minimal modification the application works fine, but there is one annoying problem which I am quite sure did not exist before. If for some reason Acrobat is already running when my application tries to create the AcroApp object, I first get the error "There was an error opening this document. This file cannot be found." followed by "Run-time error '429': ActiveX component can't create object".
    The problem occurs on the line "Set acrApp = New AcroApp". This happens if either the full version of Acrobat or Acrobat Reader are running, even if no PDF file is open. Is it possible to avoid this error? The best I can do now is to check for the Acrobat's window and if it's open, to display a message to the users asking them to close it, but it's not very user-friendly :-) Thanks in advance for any hints you can give me!

    *BUMP* Has anyone figured this out? I have this same issue, however I really need to instantiate an AcroApp object while Acrobat Pro is open, so that I can close all of the open documents that the user may have opened manually.
    When I run this line of code:
    Dim appAcrobat As New Acrobat.AcroApp
    I'm getting this message in Acrobat:
    There was an error opening this document. This file cannot be found.
    Followed by an error in my VB.NET code that says:
    Retrieving the COM class factory for component with CLSID {85DE1C45-2C66-101B-B02E-04021C009402} failed due to the following error: 80080005 Server execution failed (Exception from HRESULT: 0x80080005 (CO_E_SERVER_EXEC_FAILURE)).
    I am using VB.NET 2010, Acrobat 9 PRO 9.4.6, and I guess it's version 1.1.0.0 of Interop.Acrobat.dll

  • Cannot create object

    Hi gurus,
    the following code:
    <b><i>DATA: ref_cl_rsd_odso TYPE REF TO cl_rsd_odso,
          ref_if_rsd_dta  type ref to if_rsd_dta,
          e_s_dta TYPE rsd_s_dta,
          wa_e_s_dta TYPE rsd_s_dta.
    START-OF-SELECTION.
    create object ref_cl_rsd_odso.
      CALL METHOD ref_cl_rsd_odso->if_rsd_dta~dta_get_info
        IMPORTING
          e_s_dta = e_s_dta.</i></b>
    return an activation error:
    "You cannot create an instance of the class "CL_RSD_ODSO" outside the class"          
    Could you help me?
    Thanks in advance!
    Bye!
    Ferdinando

    Hi,
    Go through the below code,
    We need to call the factory method to get the instance of this class.
    DATA: ref_cl_rsd_odso TYPE REF TO cl_rsd_odso,
    ref_if_rsd_dta type ref to if_rsd_dta ,
    e_s_dta TYPE rsd_s_dta,
    wa_e_s_dta TYPE rsd_s_dta.
    START-OF-SELECTION.
    CALL METHOD CL_RSD_ODSO=>FACTORY
    EXPORTING
       I_ODSOBJECT   = SPACE
       I_REFNM       =
       I_TXTLG       =
       I_TXTSH       =
       I_INFOAREA    =
       I_BWAPPL      =
      RECEIVING
        R_R_ODSO      = ref_cl_rsd_odso.
    EXCEPTIONS
       INPUT_INVALID = 1
       CANCELLED     = 2
       others        = 3
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL METHOD ref_cl_rsd_odso->if_rsd_dta~dta_get_info
    IMPORTING
    e_s_dta = e_s_dta.
    Regards,
    Azaz Ali.

  • Scripting Problem with the Default SplitStory.vbs Schript. Windows Scripting Error No. 429, ActiveX-Component cannot create object: 'InDesign.Application", Engine: Default File: C:\Program Files (x86)\Adobe\Adobe InDesign CS6\Scripts\Scripts Panel\Samples

    On another PC it works. I can't find any difference in the script line 15. I could run the Script 1 time and the 2nd time it Show this error
    Set myInDesign = CreateObject("InDesign.Application")
    Rem Set the user interaction level to allow the display of dialog boxes and alerts.

    Hi
    delete the tbl file so it regenerates see Re: InDesign CS6 scripts don't work on CC anymore
    HTH
    Trevor

  • Cannot Create Object 'SAP.Functions'

    Hi All -
    I know this is a simple issue.  I have a SQL server that retrieves info from SAP via SSIS. using sap.functions.  somehow I dont have the AX controls installed properly.  Can someone give me some guidance? 
    I am not really very familiar with the ins and outs of SAP but I had this setup on another server and it works ok.  SQL is running on Win2K3. 
    I installed the entire 4.6d gui, but I had to install it in non standard directories.  can someone tell me what I need to make this work?
    I have seen some notes where people say make sure you have wdtfuncs.ocx wdtlog.ocx and librfc32.dll registered. 
    I figured the full install of the gui would do that but maybe not.  I registered each one manually but when I got to librfs32.dll i got an '80004005' error

    Hello Kelly
    The SAP GUI 4.6d which you are using is very old. There has been quite many fixes that had gone in wdtlog.ocx, wdtfuncs.ocx binaries. So it is always better to use either 6.40 or 7.10 latest SAP GUI patch.
    Regards,
    Dinesh

  • Cannot create registered control.

    I am trying to see how the activex bridge works. Anyway I have a simple (no gui) bean called PersonBean. I have jar'd it up and it works fine in beanbox. Then I packaged it up (calling it ActivePerson for the control name) and let it register the control. When I tried to use the control from VBA in Word like this...
    Set myPerson = CreateObject("JavaPerson.Bean")
    but this gives me a 'Run-time error '429' ActiveX Component cannot create object'
    So i decided to test with ActiveX Control Container a tool from MS and part of Visual C++ 6. When I tried to add the control it gives me an error saying "Failed to create control: unspecified error" (which is oh so helpful an error message...)
    So I am stuck. Could anyone point me in the direction of what might be wrong.
    In case it helps I am pasting below an extract from my registry of what was added for the control. The paths all seem ok to me.
    REGEDIT4
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}]
    @="JavaPerson Bean Control"
    "AppID"="{724CFE50-604A-11D5-A195-0050BA8CF492}"
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\Control]
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\DataFormats]
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\DataFormats\GetSet]
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\DataFormats\GetSet\0]
    @="2,1,16,1"
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\DataFormats\GetSet\1]
    @="3,1,32,1"
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\DataFormats\GetSet\2]
    @="14,1,64,1"
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\DataFormats\GetSet\3]
    @="1,1,1,1"
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\DefaultIcon]
    @="C:\\Program Files\\JavaSoft\\JRE\\1.3.0_01\\classes\\awt.ico"
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\InprocServer32]
    @="C:\\Program Files\\JavaSoft\\JRE\\1.3.0_01\\classes\\bin\\beans.ocx"
    "ThreadingModel"="Apartment"
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\Insertable]
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\InterfaceClass]
    @="sun/beans/ole/OleBeanInterface"
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\JarFileName]
    @="G:\\activex\\PersonBean.jar"
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\JavaClass]
    @="PersonBean"
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\MiscStatus]
    @="0"
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\MiscStatus\1]
    @="3473"
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\ProgID]
    @="JavaPerson.Bean.1"
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\Programmable]
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\ToolboxBitmap32]
    @="C:\\Program Files\\JavaSoft\\JRE\\1.3.0_01\\classes\\bin\\beans.ocx,0"
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\TypeLib]
    @="{724CFE51-604A-11D5-A195-0050BA8CF492}"
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\verb]
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\verb\-1]
    @="Show,0,0"
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\verb\-2]
    @="Open,0,0"
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\verb\-3]
    @="Hide,0,1"
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\verb\0]
    @="&Edit,0,2"
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\Version]
    @="1.0"
    [HKEY_CLASSES_ROOT\CLSID\{724CFE50-604A-11D5-A195-0050BA8CF492}\VersionIndependentProgID]
    @="JavaPerson.Bean"

    please do not post any more answers on here. i fixed my problem already. thanks to everyone who did post but the problem was with the runtime or the packager or something anyway here...
    http://forum.java.sun.com/thread.jsp?forum=40&thread=157223
    you can see what i did to fix my first problem and also my workaround for memory exceptions when working with ms-office

  • How to create Object!

    Hi all,
            Can anyone tell me how to create an object of the class CL_BP_HEAD_CORPACCOUNTDET_CTXT .
    Please reply as fast as possible.
    Regards,
    Vijay

    Hi Balasubramanian,
    The below steps might help u out.
    1.      Call the function Create Object.
    You have the following options:
    ¡        Choose Object ->New () in the main menu (or the pushbutton Create Object ).
    ¡        Position the cursor on a structure node in the navigation area and choose New () from the context menu.
    In this case, there are already entries in the Create Object dialog, corresponding to the position of the cursor in the navigation area.
    Integration Builder (Integration Directory): You have positioned the cursor on the Service node of a communication party. If you call the function Create Object from the context menu, there are already entries for the object type Service and the party field.
    You cannot create objects of type RFC or IDoc again.
           2.      Enter the required information. Select the object type first and then specify the object key.
    An input help  is available to help you specify the key values. To call the input help, use the icon . The value selection offered by the input help may depend on which values have already been defined for the other key attributes.
    Integration Builder (Integration Repository): The namespace selection depends on the selected software component version.
           3.      To confirm your entries, choose Create.
    This calls the object editor for this object. The specifications that you made when you created the object are displayed in the header. You can edit the object further in the work area of the object editor.
    Once you have confirmed your entries by choosing Create in the Create Object dialog, you can no longer change the object key.
    Reward if helpful.
    Thankyou,
    Regards.

  • Easy DMS create object links

    Hi,
    I cannot create object links from within the EasyDMS SAP properties screen for a document. However if I edit the document using the SAP GUI and create object links there, I can view it through EasyDMS. Could somebody tell me what the issue could be
    thanks!
    ps: I am using sp06 patch level1

    Hi Athol,
    Since it does not show any errors how do I get to the short dump? Secondly I also notice that there is some other functionality eg drag and drop of multiple originals onto a DIR which does not work. When I try it with another SAP installation everything works perfectly. The installation which is giving me problems is an ECC 5.0 one. Any details on what components/interfaces/packages etc which must be on their? Maybe that is an issue.
    thanks,
    Rahul

  • Automation Server cannot create object_error in Java script

    Hi
    I am using window.open method to save contents of xml file in my local pc.
    I am getting this error (Automation Server cannot create object),for this,i need to change internet settings.
    But i dont want to change the internet settings as other pages are getting affected.
    Please guide me regarding this....

    Javascript is not Java.

  • Problems using creating Objects after Updating to 3.0.1

    Hi folks,
    the update from 2.0.1 or so to 3.0.1 in the 10g XE had brought up more new aspects and changes than expected...
    The - hopefully- last problem I encounter now is that I cannot create objects anymore in the SQL Workshop.
    If I try to create a new table in the end the error message reads
    ORA-01031: Insufficent privileges
    The same for a test sequence... I didn't change anything to my existent schema users, they are assigend the "ressource" role, so it should work fine. If I connect to the DB via an development tool like sqlplus the table is created - as expected.
    In the apex user administration I found no section for setting additional privileges...
    Can anyone help me to establish the privileges to my old users/schemes so that the SQL Workshop is working again? Even with a new administrator account in a new workspace on an old schema the workshop can't create a table.
    Thanks alot.
    Ragnus

    thanks, I solved by myself.
    Here comes what it had been:
    After upgrading all apps had been in workspaces named to the corresponding old schema user.
    I wanted to consolidate the apps into one big workspace so they can share some components like authorization schema and so on.
    I additionally assigned the schemes to the new workspace so there had been 2 workspace assignements for each schema. This had been a temporary consolidation situation until all apps had been exported from the old workspaces into the new one.
    But development during this double assigned state seems to be not possible in the SQL Workshop.
    After deleting an old workspace I can now create objects again in the now single workspace assigned schema.
    Ragnus

  • ActiveX can't create object when VB Script called from Labview

    I have an interesting issue that I can't find a solution for. I am using the DIAdem Run Script.VI in Labview to call a script that opens an Outlook object and sends an email. When the script is called via LabView I get this error:
    However, when I manually run the script from the DIAdem script tab it works as expected with no errors.
    This is the code:
    'Begin email send function
    Dim oOutlookApp
    Dim oOutlookMail
    Dim cnByValue : cnByValue = 1
    Dim cnMailItem : cnMailItem = 0
    ' Get Outlook Application Object
    Set oOutlookApp = CreateObject("Outlook.Application")
    ' Create Mail Item
    Set oOutlookMail = oOutlookApp.CreateItem(cnMailItem)
    ' Set Mail Values
    With oOutlookMail
    .To = "[email protected]"
    .Subject = "Report: " & Data.Root.ActiveChannelGroup.Name & " for " & CurrDate
    .Body = "test automatic report emailing with VB Script."
    ' Add Attachement
    Call .Attachments.Add(strLocFileName, cnByValue, 1 )
    ' Send Mail
    Call .Send()
    End With
     (Original code includes Option Explicit and all variables are properly included/declared, I just took the snippet of what's causing the error).
    I have looked at the following threads for info already:
    http://forums.ni.com/t5/DIAdem/Some-errors-when-calling-LabVIEW-VIs-Interactively-from-DIAdem/td-p/2...
    http://forums.ni.com/t5/DIAdem/Active-X-component-cannot-create-object-Diadem-8-1/m-p/71212/highligh...
    -I tried running the script via Windows explorer (per Brad's suggestion) by itself without the DIAdem specific functions and it runs fine.
    http://forums.ni.com/t5/DIAdem/Error-while-runing-diadem-asynchronous-script-from-labview-on/m-p/111...
    -I am not running the scripts asynchronously
    Using Windows 7 (64bit), DIAdem 11.2 and LabView 7.1.1
    Thank you.

    Hey techerdone -
    I'm afraid I personally can't be of much help - I tested your code both from DIAdem and from LabVIEW and each worked without issues in both cases (Outlook closed, Outlook open).  I'm using DIAdem 2011 SP1, LabVIEW 2011, and Outlook 2007...
    Derrick S.
    Product Manager
    NI DIAdem
    National Instruments

  • Error Message: JBO-25009: Cannot create an object of type:oracle.jbo.domain

    Hi, When im giving a default value to a date column in the attribute settings i get this error when im running my jsp page (bc4j web application):
    Error Message: JBO-25009: Cannot create an object of type:oracle.jbo.domain.Date with value: 31-dic-2099
    How can i fix that? I�ve already trying all possible date formats.
    Thanku

    The default format for Date (oracle.sql.DATE which is the superclass of oracle.jbo.domain.Date) is yyyy-mm-dd.

Maybe you are looking for

  • Question on mail settings - reply does not allow me to view other emails

    When I am in Mail and I am replying to a message, I used to be able to check the contents of other emails by clicking on them. Since Masvericks I just get a pane in the middle of the screen which is the reply email pane. I cannot click on anything el

  • TS1702 I did not buy the cliff ap but was charged.

    I was charged an ap that I don,t even remember ordering it. What do i do.

  • XML syntax

    I've tried to write several simple pages using the XML syntax, but I can't solve the following problem. I have a form, where I want to prefill some values (for example the values filled in before), but I'm not able to do this using the XML syntax. Us

  • Problem after moving to new house

    I previously had no problem with wireless Airport Express connected via cable modem. Now I've moved to a new house and cannot get it to work. Same Internet Service Provider. The green light on AX is on. Internet Connect utility says I am connected to

  • ContactManager Class

    I wrote a program that allows a user to add contact information to a file and also displays contact information in the file. Unfortunately my professor wanted me to have a ContactManager class. Is it possible to write a ContactManager class and not h