COM error reference

Does anyone know of a document where COM error codes are described?
Specifically we're seing messages as below in background job logs.
Error for COM routine using application program (return code 3)
Error for COM routine using application program (return code 2)
Thank you

Hi
There is a transaction which returns the meaning of any COM error return code, run /SAPAPO/OM10 and then enter the return code you want to investigate. The program should then provide the full message details.
Regards
Ian

Similar Messages

  • Requirements Gateway: Visio - COM error

    Dear Developers!
    I have a problem using Visio files in Requirements Gateway 1.1: when I open the example project ('Visio Example.rqtf) this info is shown:
    Error: COM error (Class not registered)
    Error: Conversion problem (file ...\Visio Example.vsd)
    The operation system is Windiws Server Standard SP1. There is no full version Visio installed only Microsoft Office Visio Viewer 2007. Could this be the problem, or should I change some configuration of the Requirements Gatewaw?
    Knáb László

    You can perform traceability analysis on Visio documents by capturing
    traceability information from the custom properties in Visio 2003 or shape
    data in Visio 2007 or by creating references in the Graphical View in
    Requirements Gateway.
    (Excerp from "Coupling Microsoft Visio with NI Requirements Gateway")
    Hm, i would say your guess is quite promissing: you will need i full version of Visio in order to get it to work since ther is nothing said about Visio Viewer.
    Maybe you can get some kind of evaluation version for Visio in order to test this.
    thanks,
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • Lync 2013 federation with Skype error: 'Reference error id 504 (Source ID 239)

    I have setup lync 2013, configured skype federation (http://www.techtroubleshoot.com/federate-lync-server-with-skype/) and also done Lync provisioning. Skype federation worked for a few days (2weeks) and then stopped. Currently I am getting the following
    error 'Reference error id 504 (Source ID 239)'.
    Ports are open on the firewall. I however still get the error.
    KimaniBob

    Verify from following:
    you can telnet to your sip domain on port 5061 and 443 from external and resolve of nslookup to srv record of sipfederation is correct.
    Certificate on Edge Server not expire or damaged.
    This link had similar issue, you can check it.
    http://terenceluk.blogspot.com/2013/04/unable-to-send-instant-messages-or-view.html
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer"

  • COM error while submitting certificate request

    Hello there
    I have created a group and assigned Read, Issue and Manage Certtificate, Manage CA & Request Certificate permission on the CA.When any member of this group try to sign a certificate request,
    the following error accours.
    Your request failed. An error occurred while the server was processing your request.
    Contact your administrator for further assistance.
    " type=button
    Request Mode: newreq - New Request
    Dis"font-size:9pt;">(never set)
    Disposition message: (none)
    Result: The RPC server is unavailable. 0x800706ba (WIN32: 1722)
    COM Error Info: CCertRequest::Submit: The RPC server is unavailable. 0x800706ba (WIN32: 1722)
    LastStatus: The operation completed successfully. 0x0 (WIN32: 0)
    Suggested Cause: This error can occur if the Certification Authority Service has not been started.
    During this time event ID 10016 is logged on the eventlog
    The application-specific permission settings do not grant Local Launch permission for the COM Server application with CLSID
    {D99E6E73-FC88-11D0-B498-00A0C90312F3}
    and APPID
    {D99E6E74-FC88-11D0-B498-00A0C90312F3}
    to the user <Domain>\<Username> SID (<SID>) from address LocalHost (Using LRPC). This security permission can be modified using the Component Services administrative tool.
    I have assigned the required permissions to the group on
    CertSrv Request. Also verified the membership of
    Certificate Service DCOM Access.
    Can you please help me to resolve this?
    Thanks
    Ranjith

    Hi Ranjith,
    I suggest you restart the certificate services and try to enroll certificates to test if the Certification Authority is functioning.
    In addition, please make sure that ports in the blogs below are open:
    Firewall Rules for Active Directory Certificate Services
    http://blogs.technet.com/b/pki/archive/2010/06/25/firewall-roles-for-active-directory-certificate-services.aspx
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Getting a COM error when calling MenuItemExecute in batch mode

    I support an internal document management system for our corporate contracts. Among other applications, I have one that runs nightly in batch mode to store new invoices and connect them via bookmarks to their corresponding “parent” contract files. The original program was created in 2005 with Acrobat 7 (later updated to Acrobat 8) and it worked well for several years. However, a few months ago I upgraded the system to Acrobat 9 and since then the program has not run consistently.
    The “program” actually consists of a VB application and two plug-ins. The VB application does as much work as it can with IAC and the JSO bridge, but because the files are (owner) password protected one plug-in automatically applies the necessary password using AVDocDidOpen when the VB application opens the AVDoc. The VB application then also calls the other plug-in using MenuItemExecute. The second plug-in is used to create the bookmarks between the two files by grabbing info off bookmark strings and creating the necessary actions. It also applies the password to the files.
    Here is brief outline form is how this is all structured:
    pdDocParent.Open
             pdDocInvoice.Open
                     avDocParent.Open (This triggers the first plug-in to apply the password)
                             Create bookmark strings in both files using JSO bridge
                                    MenuItemExecute (To create the bookmark action in the parent)
                                    pdDocParent.Save
                            avDocParent.Close
                            avDocInvoice.Open (This triggers the first plug-in to apply the password)
                                    MenuItemExecute (To create the bookmark action in the invoice)
                                    pdDocInvoice.Save
                            avDocInvoice.Close
                    pdDocInvoice.Close
            pdDocParent.Close
    Since the upgrade, I’m getting a COM error [The server threw an exception. (Exception from HRESULT: 0x80010105 (RPC_E_SERVERFAULT))] on a non-consistent basis when the application tries to call MenuItemExecute. When I say “non-consistent” I mean that some days the program will process several hundred files just fine. Other days it won’t process any. Then some days it will not process the first, oh, four files but will process the next 300. Usually it runs fine when started interactively, but even then the error sometimes occurs.
    I recompiled both plug-ins and the VB app using the Acrobat 9 SDK (headers for the plug-in and the Acrobat type library for the VB app) but that didn’t make any difference. I added code to check if the MenuItem is available and it is in all cases.
    After reviewing this more, I got to thinking that perhaps a race condition was the culprit—that a string hadn’t been completely written before the second plug-in tried to create an action for it. So I added some half-second pauses along the way, but that doesn’t seem to have helped, either.
    At this point the only thing I can think of is to rewrite the application as a pure plug-in. But it’s a long and involved application and if I can get the current app to work I’d prefer to do that. I tested it with Acrobat 10.1 and encountered similar problems.
    As I said, it’s been working fine up until Acrobat 9. Does anyone know of anything that might have changed with Acrobat 9 that I haven’t considered? Is there anything else I might check? Thanks.

    Leonard,
    I'd be interested in hearing why you think that because others at Adobe have told me it's OK. Acrobat is only being called by one user at a time and we've paid for a full license.
    Thanks,
    Dick

  • Trying to update creative cloud, comes error: The installation program could not access the important files / directories. Try to run the installer again. (Error code: 43), please contact customer support. The same error comes updating Muse. Mac 10.9.5. W

    Trying to update creative cloud, comes error: The installation program could not access the important files / directories. Try to run the installer again. (Error code: 43), please contact customer support. The same error comes updating Muse. Mac 10.9.5. What shall I do?

    Alauda_positos I would recommend reviewing your installation log files to determine the exact directory which the installer is unable to access.  You can find details on how to locate and interpret your installation log files at Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html.  You are welcome to post any specific errors discovered to this discussion.
    For information on how to adjust file permissions please see Error "Exit 6" or "Exit 7" | Install log | Read, write, system file errors | CS5, CS5.5 - http://helpx.adobe.com/creative-suite/kb/error-exit-6-exit-7.html.

  • Crystal Reports COM Error

    I have a Crystal Report that I load and run from an ASP.Net Web Application. It works fine on my machine. However when the code is deployed to the servers, intermittently (does not happen everytime), I receive the following exception:
    System.IO.FileLoadException: Retrieving the COM class factory for component with CLSID {XXX}  failed due to the following error: 8007045a.
    at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.CreateRptDoc()
    at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper..ctor()
    at CrystalDecisions.CrystalReports.Engine.ReportDocument.Initialize()
    at CrystalDecisions.CrystalReports.Engine.ReportDocument..ctor()
    at CrystalDecisions.CrystalReports.Engine.ReportClass..ctor()
    When I search for this error I am not able to find the exact cause of the COM error 8007045a or the System.IO.FileLoadException. But many people have encountered other COM Errors with Crystal Reports and have suggested changing the Project properties -> Build -> Platform Target to x86 from 'Any CPU'.
    Is this indeed the action to be taken for the COM error 8007045a or the System.IO.FileLoadException too?
    One of the folks suggested the following: It is a low-level Windows error, not a COM error. The DllMain() entrypoint of one of the unmanaged code DLLs used by CR returned FALSE.
    Any suggestions here?
    Thanks in advance
    Vikas
    Edited by: vikasmanghani on Dec 22, 2011 3:53 PM

    Hi Don
    The CR version is Crystal Reports 2008 SP3.
    OS - Windows Server 2003
    IIS - IIS 6 (I am not entirely sure, but most likely it is IIS 6).
    Does it matter, if I instantiate the ReportDocument derived class on a separate thread. For e.g.
    Main Thread:
    MyReportClass rpt;
    Thread t1 = new Thread(InitRpt);
    t1.IsBackground = true;
    t1.Start();
    //perform some additional work
    t1.Join();
    Thread t1:
    rpt = new MyReportClass();
    rpt.FileName = "";
    rpt.Load();
    Also the BuildAction property for the report is set to Content.
    As an aside, I noticed another error on a different server:
    System.Runtime.InteropServices.COMException (0x80000003): Retrieving the COM class factory for component with CLSID {D7F5D7C3-B06C-4CAC-BC47-A06E66D2EE9B} failed due to the following error: 80000003.
       at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.CreateRptDoc()
       at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper..ctor()
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.Initialize()
       at CrystalDecisions.CrystalReports.Engine.ReportDocument..ctor()
       at CrystalDecisions.CrystalReports.Engine.ReportClass..ctor()
    For this COM Error 80000003, I was able to search on SAP forums and locate the following:
    1. Some people have asked to re-register clientdoc.dll using regsvr32.
    2. Some people have suggested rebooting the server.
    3. Some have suggested running in 32-bit mode. I am not sure if this server is 64-bit or 32-bit.
    It would be great if you could help me with this one too.
    Thanks in advance.
    Regards
    Vikas
    Edited by: vikasmanghani on Dec 24, 2011 4:38 AM
    Edited by: vikasmanghani on Dec 24, 2011 4:42 AM

  • COM - error Unknown in /sapapo/mat1 transaction

    Hi,
    I am using SCM 4.1 and LiveCache 7.5.0.
    In the transaction /sapapo/mat1 i select a product and its location.
    Then in the Extras Menu when i select Where-Used List, it shows the message "COM - error Unknown"
    COM - error Unknown
    Message no. /SAPAPO/OM001
    Diagnosis
    A COM routine has encountered a program error.
    System response
    The program will be terminated.
    Procedure
    Start the program again.
    If this message appears again, contact your system administration.
    Please help me on this.
    Regards,
    Chintan

    hi - try running the livecache consistency check (/n/sapapo/om17) for product-locations and correct any errors that may be detected and try again to use the where-used functionality.
    Regards
    Vinod

  • Error: reference to method is ambiguous

    Hi guys,
    Here is the line that won't compile:
    ((p)(o1)).g.a.(this);
    Here is the error:
    reference to a is ambiguous, both method a(av) in au and method a(bu)in at match ((p)(o1)).g.a.(this);
    So I want to try calling either au.a or at.a explicitly but I can't figure out how to do that.
    Any help is greatly appreciated. This is for an online game where (bad)people can boot others so I am trying to write a patch. Thanks alot.

    The explanation isn't totally clear - but you can use as much of "package.classname.method()" reference as needed to disambiguate the code. I.E. "package.classname.method()" or "classname.method()".
    Post some applicable code that clearly shows the relationships if more help is needed.

  • EXCEL COM ERROR Error Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046}

    Hi,
    I have excel 2013 Professional installed and i have created a windows service to open the excel document and read it.
    Service is running as System account.
    Now when i am trying to access the excel doucment, it is throwin the exception as 
    EXCEL COM ERROR Error Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046}
    however, when i am using the console application running as administrator, i am able to open same file.
    Any yes, i am using 64 bit service C++ and excel binaries are Any CPU.
    Please note: I have already tried using dcomconfig and assigned full permission to the system user.
    Is there any other solution for this issue.
    regards
    Pushpendra

    Hello Pushpendra,
    Microsoft does not currently recommend, and does not support, Automation of Microsoft Office applications from any unattended, non-interactive client application or component (including ASP, ASP.NET, DCOM, and NT Services), because Office may exhibit
    unstable behavior and/or deadlock when Office is run in this environment.
    If you are building a solution that runs in a server-side context, you should try to use components that have been made safe for unattended execution. Or, you should try to find alternatives that allow at least part of the code to run client-side.
    If you use an Office application from a server-side solution, the application will lack many of the necessary capabilities to run successfully. Additionally, you will be taking risks with the stability of your overall solution.
    You can read more about that in the
    Considerations for server-side Automation of Office article.
    Consider using the Open XML SDK, see
    Welcome to the Open XML SDK 2.5 for Office . Also any third-party components can be used instead.

  • Optimizer run error - COM error 2 1 when deleting transportation orders

    Hi Experts,
    Optimizer run job (program /SAPAPO/RMSNPOPT) gets failed with following error: -
    COM error 2 1 when deleting transportation orders
    Can anybody let us know why this error occurs and how to resolve it. Thanks a lot.
    Regards,
    Chandan

    Hi Chandan,
    Could you check SAP note 1232670 whether applicable
    for you
    Regards
    R. Senthil Mareeswaran.

  • HT4802 I want to update m'y iPad with my MacBook pro it com error 9003

    I want to update m'y iPad with my MacBook pro it com error 9003

    You can share the files via your iCloud account, if they are Pages or Numbers files. You can email them as attachments to the other person, or provide them on a flash drive so they can import them on their computer.
    I would not try to copy the files direct from my computer to someone else's iPad.

  • How to find Error Reference Number Additional details in HFM

    <font color="Blue">
    Hi All
    How to find Error Reference Number additional details in HFM ?
    Example:
    Error Reference Number:{01977FBD-DB42-4655-99B5-4ABF38D3E082}
    Where to Find above id additional details??
    I mean HSVErrorLogViewer ? OR RegistrySettings ? OR Dcomcnfg ? OR any other way to find the detailed information?
    Any ideas? Appreciate your help in advance.
    Regards
    Taruni
    </font>

    Hi,
    try menu - EDIT - LUW debug
    and see if you can get the idoc number in this way
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • Page expired: Error reference: PXE98EGP

    Error reference: PXE98EGPI keep receiving this page expired page error after I close an try to reopen to get to my camera home security... This is getting very frustrating ... I am paying good money and expect access on demand ... Only happens with the comcast page too.... I am using IE 11 and tried it with firefox 36.04  and same result ???   

    Same problem here. Somehow it works on my laptop at work with win7 on Firefox. And it used to work on my devices: home laptop with win8.1/win10 on IE11 or Firefox and tablet with win8.1 on IE11 or Firefox. Now only my work laptop gets through. going to the subscriber web portal in all cases. Page expired error PXE98EGP. It's bad enough that xfinity doesn't have an app or program for windows devices, now it doesn't work my modern windows devices. Might dump comcast before switching to iOS or android devices instead!!!

  • COM-Error unkown while displaying the product view

    Hello,
    In our SCM 7.0 system we call the transaction "/sapapo/rrp3".
    Enter Plng Version.
    Enter Product .
    Enter Location .
    After pressing enter the system gives the error message:
    COM - error unknown
    Message no. /SAPAPO/OM001
    A COM routine has encountered a program error.
    The program will be terminated.
    How can we solve this problem and show the product view?
    Thanks in advance,
    Yasar Pala

    Hi,
    If the consistency check doesn't help, please see if the below notes are relevant to you.
    Note 1349834 - COM error in Product view for configurable material
    Note 1235835 - //RRP3 dumps in tab 'Forecasts' when values are negative.
    Regards,
    Senthilrajan

Maybe you are looking for

  • Display VK18 in interactive report

    hi, i want to write a interactive report to display vk18 if the customer part number is double clicked. any one tell me how to set paramete id for the field KOTABNR with paramete id 'KON'. bcoz it only display the firat screen or the key combination

  • Proxy regeneration in PI 7.1

    Why do we regenerate the proxies after ugradation of system from XI or PI 7.0 to PI 7.1?

  • PDSN bandwidth monitoring

    I am facing and issues with a PDSN 7204 Router Basicly we are very closed to our Bandwidth limit with our Internet Service provider We think we should be around 5 to 8Mbit/s but we are at a steady 35Mbit/s We have seen a significant increase in bandw

  • How to avoid use of to_date and to_char ?

    Hi All, I have table 'sample ' with columns id (number ) and dte (timestamp ) . CREATE TABLE SAMPLE ( ID NUMBER,DTE TIMESTAMP); Sample Records like INSERT INTO SAMPLE VALUES( 1,SYSDATE); INSERT INTO SAMPLE VALUES( 2,SYSDATE); INSERT INTO SAMPLE VALUE

  • Disappearing Files

    Brand new Intel imac imported video to imovie shared at full quality to quicktime files play in QT and idvd go to import quicktime .dv files back to imove to edit later - some import, others "Unknown Error" 2of the those that would not import have no