Add-on error

Hi. When sap bo 2004 tries to load my add-on, it shows the error:
" Run-time error '429' -ActiveX component can't create object "
I think that it's because in the vb6 project I've added a reference to Microsoft XML v5.0, to manipulate .xml archieves.
Could anyone help me?
Thanks.

Maybe you should try to find out on which line the program breaks.
Probably it's a
set objX = new ObjectClass
or
set objX = CreateObject("ObjectClass")
Myself I always try to try/catch such lines to be able to determine what dll or ocx or whatever is missing.
Did you install the DI-API (from SBO_SHR) on your client?
And if it IS the XML-component, you should maybe ship it with your program. In VB6 there is a Publishing-Method which shows you all dependencies of your application...
Flo

Similar Messages

  • I get nothing but error messages, -"Your IMAP server wants to alert you to the following: 113 that mail is not available" or 364? there are hundreds stacked up.You must give answers to how to fix these when we do "search" add the error code number

    I get nothing but error messages, -
    "Your IMAP server wants to alert you to the following: 113 that mail is not available"  or  the same with:  364? 
    Now there are hundreds stacked up on my desktop.
    I cannot find the answer anywhere. You need to  give answers to how to fix these errors because when I  "search" "error code" or the number there is NOTHING. NOTHING!  Yet you give us these stupid error codes
    then you do not give us ANYTHING on how to fix these. These error codes make me so mad it makes me hate outlook, and hate the developers and hate microsoft.  How in the world can you give us ERROR codes without the explanation of what
    to do or how to fix it. You need to  add each  error code number in your "search" then explain what it is and how to fix it.  I am not a tech. I am a lawyer. I have googled the entire string of error code and nothing is clear.
    So, for the last several years, I get these error codes. Also, there is another error code that won't go away--it is the password error code that asks if I want to store the password. Yes, so I say YES. but it pops back. I am sick of this. This is the reason
    I hate Microsoft and I love google. #1 they respond to error, #2 them try to fix them you do not. I paid the full price to buy the OUtlook 2010, almost $500 just to get outlook, and all I got was error codes. I could not even open it because all I would get
    was that error codes and NO ONE knew how to fix them. WHAT IS YOUR PROBLEM that you cannot fix the stupid error codes that you imbed? PLEASE HELP

    Hi,
    I understand how frustrated you are when facing such an issue, maybe I can provide some suggestions on the problem.
    Based on the description, you should be using an IMAP account setup in Outlook. As for the error message, usually it's caused by a corrupted message on the Server. I suggest you logon the Webmail site, check if sending/receiving emails works well.
    If you find any unusual emails that cannot be read or sent, try deleting them to try again.
    I also suggest you create a new profile to setup the IMAP account:
    http://support.microsoft.com/kb/829918/en-us
    Contact your Email Service Provider to get the correct and latest account settings, since you have been using Outlook for years, some settings may have been changed while you haven't been informed.
    For the steps to setup an account in Outlook 2010, please refer to:
    http://office.microsoft.com/en-001/outlook-help/add-or-remove-an-email-account-HA010354414.aspx
    I hope this helps.
    Regards,
    Melon Chen
    TechNet Community Support

  • While downloading add-ons error message - unable to download . want ad blocker urgently

    while installing add-ons error message appears
    " theree was an error downloading ...."
    This happened will all addons i tried within 2-3 seconds of clicking on install

    Check to see if installations are allowed in Firefox
    *Go to <code>about:config</code> like you were going to a website
    *Press the button saying you'll be careful
    *Search for <code>xpinstall.enabled</code>
    *The value of <code>xpinstall.enabled</code> should bet set to TRUE. If it's FALSE, right click it and select Reset.
    What exact error is it giving you?<br>
    Try these fixes from this article
    *https://support.mozilla.org/en-US/kb/unable-install-add-ons-or-extensions

  • When I try to resume adobe manager reader download I get an add-on error

    my computer is a Windows Vista (64 Bit) Sp1
    It already had adobe reader 9 installed, but I decided to install Adobe Reader 9.1.
    I don't know if it's the same version so this is what happened.
    I downloaded adobe reader 9.1 and then I paused it and turn off the computer. The next day I tried to resume the Adobe Reader 9.1 with the adobe reader manager that was in my desktop, but I got an error message saying an add-on was being used and it had to close.  Everytime I resume it always closes.  I tried deleting the add-on ( get_atlcom Class, which is the add-on you have to download in order to get adobe reader 9.1)  and installing it again, but the same Adobe Manager page that pops up with the add-on error comes on my screen.
    this is the message that i get from the add-on error
    gp.ocx
    get_atlcom Class
    Company Name: Adobe
    Description DLM
    it's something like that
    can anyone help me with this error.
    Or can I just simply remove(uninstall) adobe reader 9 and try to install it again?
    thank you

    If I were you, I would remove everything related with Reader by the method Pat Willener describes in the "can't install adobe reader" thread, and then download the version you want from the fpt site given by ~graffiti in the "Trying to download Adobe Reader but can't"...

  • How to add an error message to an Output Type.

    Hello SAPients,
    Using a User Exit I'm modifying the segments of an outbound IDoc. When certain conditions apply I trigger an exception 
    RAISE DATA_NOT_RELEVANT_FOR_SENDING.
    It's ok because the IDoc is not generated and the Output Type is set to "Incorrectly Processed" status.
    But, when the user clicks the "Processing Log" button there is no informatio of the error occurred. How can I add an error message to the Processing Log of the Output Type?
    Thanks in advance for your kind help.

    Hi,
    Try this statement..
          MESSAGE ID      sy-msgid << Your msg class
                  TYPE    sy-msgty << Your message type
                  NUMBER  sy-msgno << Your msg no.
                  WITH    sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4 << Other info
                  RAISING data_not_relevant_for_sending.
    Regards,
    Joy.

  • How to add an error message to script?

    Hi, every one
    I got this script
    function paste in place to next master
    I want to add an error message to it, if there was no such thing as master B, C,D,E,F,G
    instead of system error.
    Teetan
    var
      myDialog = app.dialogs.add({name:"Copy Selected item(s) to chosen Master",canCancel:true}),
      mStringList = ["Master A", "Master B","Master C", "Master D", "Master E","Master F", "Master G"];
    with(myDialog){
      with(dialogColumns.add()){
      staticTexts.add({staticLabel:"Select a Master you want to copy to"});
      with(dialogRows.add()){
      var mySelection = dropdowns.add({stringList:mStringList, selectedIndex:0});
    app.doScript('main()', ScriptLanguage.JAVASCRIPT, undefined, UndoModes.FAST_ENTIRE_SCRIPT, "Paste in place");
    function main(){
      if (!app.documents.length || !app.selection.length)
      alert( "Nothing selected!" );
      exit();
      if (myDialog.show() == true)
      copy_to_next_master(); 
    function copy_to_next_master() { 
    var
      mChoice = mySelection.selectedIndex,
      mMsg = "Done.\rWhat you select is pasted in place to next documents - " + mStringList[mChoice],
      nSel = app.selection.length,
      mDone = false,
      i,n,nextDoc,curSel;   
    for ( i = 1; i < app.documents.length; i++) {   
      nextDoc = app.documents[i];   
      targetMaster = nextDoc.masterSpreads[mChoice];
      if (!targetMaster.isValid) {
      mMsg += "\rCan't detect " + mStringList[mChoice] + " in a doc: " + nextDoc.name;
      continue;
      mDone = true;
      for ( n = 0; n < nSel; n++ ) { 
      curSel = app.selection[n]; 
      curSel.duplicate( nextDoc.masterSpreads[mChoice] ); 
    mDone ? alert(mMsg) : alert("Nothing copied");

    Sorry Jarek
    I made a big mistake
    I want add an error message in to this:
    var curSel = app.selection[0]; 
    for ( var i = 1; i < app.documents.length; i++) { 
        var nextDoc = app.documents[i]; 
        if (!curSel) { alert( "Nothing selected!" ); exit(); } 
        curSel.duplicate( nextDoc.masterSpreads[1] ); 
    in case of I just want to paste in place to only on choice
    Teetan

  • Add Media Error

    i am extremely new to the adobe premiere elements 7 program and i have been having some trouble using it. i am a high school football player and i am trying to take game films from our season and edit them to create a highlight film to send to colleges. I have been trying to import the games off DVDs copied by my coach. The DVD files are .VOB and from what i understand this is a supported format for this program. However, whenever i go to add the media, the files load and then the adding media window comes up but an error message comes up. This error window reads something to the extent of " add media error...The file type is either not supported or the prgram is missing a codec..." I know that the file type is supported so i figure that there is a missing codec. The weird thing is that occasionally after a few minutes, one of the files from the dvd will show up in the organize window. Only one file, not all of them (there are two files on each DVD, the first and second half of the game)will show up for SOME games. Can anyone give me insight into why i keep receiving this error or how i can fix the missing codec problem, if thats even the problem at all?

    If one of those VOBs is VIDEO_TS.VOB, then that isn't anything you can use, and you'll get that error message. Menus have 0 at the end of the filename, VTS_01_0.VOB, and will import but they aren't anything you can really use.
    Many people have problems working with files from DVDs, especially with audio being out of sync, and the recommendation is to convert the usable vobs to DV-AVI first:
    http://www.adobeforums.com/webx/.3bc4800e

  • Error occured in deployment step 'Add Solution': Error: Cannot add the specified assembly to the global assembly cache

    hi,
    I have created a separate project which contains a class which has some generic methods- its a Utility class.[ its a  class library project ]
    I added this dll into my SharePoint project's wsp package [package--> advanced-->add assembly project from output ]  [ SP 2013/ VS 2012]
    So till yesterday everything was working fine, its has successfully deployed in the GAC.
    But today when I tried to deploy my solution I got this error
    "Error occured in deployment step 'Add Solution': Error: Cannot add the specified assembly to the global assembly cache" .
      I closed the  VS and did iisreset , and uninstalled dll using powershell . and i  went to package removed the dll from the wsp package and deployed again.
    Now when i added  the  dll into this package again, it failed to deploy.
    can anyone tell ,  why this is happening. i have not done any changes in the dll yesterday or today.
    suddenly , it  started behavin stranegly. 

    Use the power shell command to delete dll
    http://www.c-sharpcorner.com/uploadfile/anavijai/how-to-install-or-uninstall-dll-in-gac-using-powershell/

  • "Add Media Error" - Premier Elements 7

    Question for everyone.
    My laptop (with P.E. 8) is in the shop so I am using my P.E. 7 edition on my home computer to create a simple project.  After attempting to add a four media clip (by the way, all 4 clips are very small, short), I am getting this error pop-up:
    "Add Media Error - There is not enough memory to add the requested media."
    Now, I can tell you that on my computer, 90% of my work is sitting in an external, 2 terabyte hard drive.  I have over 200 Gigs of free space on my home computer.  This new, short project is the one of the only projects currently sitting on my desktop.  There is no way that I am out of memory.
    Currently, while typing this question on this forum, I'm defragmenting my hard drive and doing a disk clean up.  Perhaps my settings are off?
    Any ideas?
    Thanks,
    David

    First, go to the http://forums.adobe.com/community/premiere/hardware_forum and click the link just above the messages to read several articles
    The aim in that forum is mostly CS5, but still some very good information
    Second, figure out the computer you need based on the camera you select... BEFORE you buy the camera
    This message has a really good graphic about requirements
    CS5 Requirements http://forums.adobe.com/thread/810750?tstart=0
    My CS5/AVCHD 1st Impressions http://forums.adobe.com/thread/652694?tstart=0 includes a link to the computer I built... since the GTX 285 is no longer sold, I would now go with a GTX 460 or whatever is the current "best bang for the buck" - AND I would buy 4Gig-by-3Sticks memory to be able to expand from 12Gig to 24Gig if needed
    For my home hobbyist, family movies (which means that I am not trying to recreate Star Wars with video effects or many layers) AVCHD editing is "as smooth as spreading warm butter on hot toast" (also the MP4 video from wife's Flip camera)
    My 3 hard drives are configured as... (WD = Western Digital)
    1 - 320G WD Win7 64bit Pro and all program installs
    2 - 320G WD Win7 swap file and video project files
    3 - 1T WD all video files... input & output files

  • Flash9.ocx add-on errors

    I've been getting alot of these add-on errors lately and it
    crashes IE. I've tried reinstalling flash but it hasn't helped. Is
    there anything I can do other than disabling the add-on? I would
    really appreciate any advice.

    If you got an error message that says there has been a
    problem in the Flash9.ocx, here is how to fix things...
    The possible solutions are:
    1) update your video drivers. For instance, with a video card
    with NVIDIA graphical processor, you can use this address:
    http://www.nvidia.com/content/drivers/drivers.asp
    Then see if you get the error again
    2) If the problem is still there, you'll have to come back to
    an earlier version of the flash player. Here is how it is supposed
    to be done when everything goes well:
    uninstall Flash Player 9 using:
    http://download.macromedia.com/pub/flashplayer/installers/8/uninstall_flash_player.exe
    then re-install Flash Player 8 or 7 using:
    http://fpdownload.macromedia.com/get/flashplayer/installers/archive/fp8_archive.zip
    3) if the uninstallation fails, here is the manual way to do
    achieve a similar result but that should always work:
    Go in the following folder:
    C:\WINDOWS\system32\Macromed\Flash
    Change the name of Flash9.ocx file into _Flash9.ocx (be sure
    IE is closed first)
    Dowload this zipped file:
    http://www.robostrike.com/pub/utils/Flash9.zip
    unzip the file and place it in the above folder,
    name it Flash9.ocx (the file is in fact a copy of Flash8a.ocx
    and this way, it will be used instead of the bugged version 9)
    Restart Internet Explorer => congratulation you are now
    back in version 8 and everything should run perfectly fine!
    As for my computer: problem solved!

  • Essbase excel add-on error after installing IR Studio.

    Hyperion software compatibility issues?
    Getting Essbase excel add-on error ("Error 1040007 Cannot find message database") after installing Hyperion Interactive Reporting Studio 9.3.1. We are able to consistently reproduce the error on several workstations.
    Any ideas?
    Thx,
    Ernesto

    Try installing IR first, followed by the Essbase client. I think that worked for us. I can't recall what our path looked like in that scenario I just remember if we did it in that order things worked fine. I think Support said there is no certain "install order" that truly fixes the problem, that you have to manipluate the path by hand. But I'm pretty sure installing IR first worked in our enviro.
    I do not know of a way to install IR Studio without the Essbase components, my understanding from Support is that they changed the product install thinking it was better this way, they learned after the fact it actually causes the problem you experienced. I would imagine they've changed/fixed the install behavior again in post 9.3.1 releases, but haven't heard.
    -Karen

  • Just purchased Adobe Element 10 and when I try to import music I get an "Add Media Error"

    When I try to import music I get an "Add Media Error" error message "The importer reported a generic error"

    Are you working with both iPhoto and Aperture at the same time? If you have to maintain several iPhoto libraries in addition to your Aperture library you would profit considerably from updating to Aperture 3.4.
    Aperture and iPhoto now share a uniform library format and you can easily switch between both applications when viewing a photo library.
    Aperture 3 can run with 4 GB RAM, but would be better with more. If your mac is not maxed out with 4GB, you should consider to add RAM, since you are running Mt. Lion. All other apps wil profit from more RAM too.
    I cannot test the interaction between iPhoto 9.4 and Aperture 2, since I have only Aperture 3 installations.
    I am a little reluctant because i have only 4 gig of ram and have read numerous negative reports.
    There are many happy Aperture 3 users, but people are only posting here, when they are temporarily unhappy. So you will get a distorted view.
    The new version is out for only a few days, and Apple has the first bugs to fix. I'd wait a little, if you can, until the next release is out.
    Regards
    Léonie

  • Flash 9 Add-on error with IE

    Hello,
    We are currently trying to find out why our application
    (written in AS 2.0) is causing Microsoft Internet Explorer to crash
    with an add-on error (Flash9.ocx).
    It doesn't matter what version of Flash player 9 we use.
    9.0.16.0 - 9.0.47.0, we still get random crashes in our
    application.
    Our application frequently opens new browser windows to act
    as pop-ups for the various work screens (this was originally
    developed pre-flex and it's too late to change it).
    We pass data between parent windows and child windows via
    dynamically set Flash vars and using the LocalConnection. We also
    use the LocalConnection to pass data back from the child windows to
    the parent window.
    As a result, we have found that the garbage collector is not
    running. When the CPU usage is very high, the Garbage Collection
    may be delayed in order to give priority to other more vital
    processes (like screen drawing). Please refer to the CS3
    documentation regarding tips when using AS 2.0. We have removed all
    pertinent listeners when destroying objects so that is probably not
    the cause at this point.
    What I want to know is:
    Could high CPU usage prevent GC from running at all?
    Could high CPU usage when opening a new browser window as
    described above cause the MIE add-on error?
    We are looking for any help or advice regarding this issue.
    Adobe's Asia Pacific support has been about as helpful as a
    lead life jacket....
    Thanks for any help you can give.

    I have had the same problem when using MSN games
    site,specifically Texas Holdem Poker. It seems random. I cannot see
    any action that precedes every crash of IE6.I have followed all the
    troubleshooting and re-installation instructions,including
    increasing the browser cache size.,that are on this site.

  • How to add custom error message in standard application log of change doc.

    Hi,
    While saving chnage document I need to add raise an error on specific condition. As Error messages is being shown in application log I added custom message in include LCRM_1O_UIF15 by using BAL_LOG_MSG_ADD FM however it is not showing in the screen. What could be the reason? Can anybody please explain?
    Rgds
    Sudhanshu

    Muhammed,
    Have you tried throwing a JboException in your AM code?
    John

  • HP ePrint from excel add-in: Error while getting driver name for printer

    Trying to use add-in for ePrint from excel/word I get, "error while getting driver name for printer \\...HP DesignJet 800PS 42 by HP," with an option to select "OK" and that same message repeats with each printer in our network, and then it doesn't allow me to print using the add-in. However, I can print normally to HP Go Web, open up Print and Share,  then print it from there. This happens with excel and word. I have Office Suite 2007.

    Hello modameister,
    Sorry you are having issues with this printer and the ePrint add-on.  There are a couple of questions I would like you to answer please.
    1.  What operating system are you using? (XP,VISTA,7,MAC OS X)
    2.  What and how much data are you trying to print?
    3.  Have you tried to copy and paste the data into a different application or tried using the snip it tool?
    4.  Are you receiving any .dll errors (mscms.dll)
    Thanks
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • How to add the error message into Delivery Error Log (VL10A,VL10X)

    Hi,
    I have a to add my custom message into Delivery creation error log (VBFS, VBSS)
    This message should be shown in the Collective process log (VL10X, VL10A).
    Please give me the soln to solve this problem.
    I have searched in SDN, i didnt get the proper solution
    Thanks
    Shankar

    HI,
    Make use of the BADi "LE_SHP_DELIVERY_PROC"
    Use the method DELIVERY_FINAL_CHECK.
    Pass the error messages in table CT_FINCHDEL.
    Regards,
    Ankur Parab

Maybe you are looking for

  • Help required in commit operation

    hello , i have written on procedure , in Which i am selecting the data from table1 and then insert the data into table 2 and then i am applying a commit. the table 1 contains more tha 4 laks(0.4 million) records. now i really need your suggection abo

  • Closing AP Period without Sweeping unaccounted invoices or payments

    Hello, Is there a way to close the period in Payables without sweeping unaccounted invoices or payments for that period? Thanks, Vikram

  • Revert printer drivers

    Hello. Does anyone know if there is a way to revert to Leopard printer drivers? My Indesign CS4 is having intermittent issues printing with the new drivers. I have an older machine with Leopard on it and it can print the same document to the same pri

  • Copy existing DC to New DC

    Hi Friends, I want a copy of existing DC with different Name, please give me how to achieve this? My requirement is,  I have to replicate the existing DC with new name and needs to do some modification and this will become the new component with enha

  • TS4002 what does "the maximum number of free accounts have activated on this ipod touch"

    trying to change the email addy on icloud for my nephews ipod touch. ready to throw it out the door. Keeps telling me "can not sign in. The maximum number of free accounts have been activated on this ipod touch" what does that mean? and how do I dele