Vb error 'run-time error '13', type mismatch when starting SAP BEX Analyzer

Dear experts,
I encountered the above error whenever I opened the BEX analyzer either from the start program or call sap transaction 'RRMX'.
My desktop is currently running BEX 3.50 with patch level 5 and office XP and my SAPGUI version is SAPGUI 6.4 compilation 2, patch level 11.
I have tried installed and reintalled SAPGUI and also downloded the latest patch from the net but still having the same problem.
Any input/help will be greatly appreciated.
Thank you,
NCW

I managed to solve the problem by uninstalling some of the recent Microsoft XP security patch (released in April '05). So, I think the problem is due to the security patch.
Just hope that there will be a fix by SAP so that we can still have the uptodate security patches.

Similar Messages

  • Error "Run-Time Error '76' PAth Not Found" in XML Publisher Desktop

    Hi All,
    we are trying to preview the PDF output in the XML Publisher Desktop Application.
    We are able to LOAD the data successfully.
    But whenever we try to preview the output, we are getting an error saying "Run-Time Error '76' Path Not Found".
    We are using the XMLP Desktop application on the Client Machine.(Citrix)
    Can anybody help us in this regard?
    Thanks,
    Sachin.

    Hi.
    You are posting in the wrong forum.
    Please post to the BI Publisher Forum:
    BI Publisher

  • XML Publisher Loading data error "Run-Time Error '76' Path Not Found"

    Hi,
    I am trying to preview the PDF output in the XML Publisher Desktop Application.
    I am able to LOAD the data successfully.
    But whenever we try to preview the output, we are getting an error saying "Run-Time Error '76' Path Not Found".
    I am running in Vista OS and MS Office 2007.
    What to be done after this? Do I place the .xml and .xsd in Temp folder?
    Kindly pls help me out in this. It would be really a very great.
    Thanks & Regards,
    Santhoshkumar.M
    Edited by: 882342 on Aug 31, 2011 3:24 AM

    You must give your user full control to C:\program files\Oracle i.e. the folder where your BI Publisher or XML Publisher Desktop is installed, see http://boardreader.com/thread/xml_publisher_error_Run_Time_Error_76_Pa_lsptXmonb.html

  • ORA-06502: PL/SQL: numeric or value error(Run Time Error)

    Hi,
    Intially the table structure goes something like this.
    CREATE TABLE CLARITY_RESPONSE_LOG
      REQUEST_CODE   NUMBER,
      RESPONSE_FILE  BLOB,
      DATE_CRATED    DATE                           NOT NULL,
      CREATED_BY     NUMBER                         NOT NULL,
      UPDATED_BY     NUMBER                         DEFAULT 1,
    )The content of the RESPONSE_FILE column which is a BLOB data type has some XML content(XML file).
    The compiled proc which uses the above table is as follows.
    CREATE OR REPLACE PROCEDURE "MWF_ONLINE_RESPONSE_XML"
    AS
       v_file            UTL_FILE.FILE_TYPE;
       v_text            VARCHAR2 (20);
       v_filename        VARCHAR2 (200);
       v_delimitedchar   CHAR (1);
    ----log
      v_process_name  VARCHAR2(100) := 'MWF_ONLINE_RESPONSE_XML';
      v_sqlerrorcd          VARCHAR2(10);
      v_sqlerrormsg         VARCHAR2(255);
      v_seq_auto_email_job  NUMBER;
      v_cnt                 NUMBER := 0;
      v_user_name    VARCHAR2(30);
    BEGIN
      --- for log use
      SELECT sys_context('USERENV','OS_USER') INTO  v_user_name  FROM dual;
      INSERT INTO PROCESS_ERROR_LOG
                 (seq_num,
                  process_name,
                  status,
                  process_date,
                  user_name)
      VALUES     (seq_dataxprocesslog.NEXTVAL,
                  v_process_name,
                  'STA',
                  SYSDATE,
                  v_user_name);
       v_delimitedchar := CHR (124);
       v_filename := 'online_response_xml.txt';
       v_file := UTL_FILE.FOPEN ('MWF_DATA_EXTRACTS', v_filename, 'W');
       UTL_FILE.PUT_LINE
         (v_file,
           'online_response_xml'
       FOR online_response IN
          (SELECT XMLTYPE (response_file, NLS_CHARSET_ID ('char_cs')).getclobval () AS Online_Respone_xml
          FROM CLARITY_RESPONSE_LOG
          WHERE TRUNC(date_crated ) = TRUNC(SYSDATE-1)
          LOOP
          UTL_FILE.PUT_LINE (v_file, online_response.Online_Respone_xml);
        v_cnt := v_cnt + 1;
      END LOOP;
      UTL_FILE.FCLOSE(v_file);
      INSERT INTO PROCESS_ERROR_LOG
                 (seq_num,
                  process_name,
                  status,
                  process_date,
                  cnt,
                  user_name)
      VALUES     (seq_dataxprocesslog.NEXTVAL,
                  v_process_name,
                  'COM',
                  SYSDATE,
                  v_cnt,
                  v_user_name);
      COMMIT;
    EXCEPTION
      WHEN OTHERS THEN
        v_sqlerrorcd := SQLCODE;
        v_sqlerrormsg := SUBSTR(SQLERRM,1,255);
        INSERT INTO PROCESS_ERROR_LOG
                   (seq_num,
                    process_name,
                    status,
                    process_date,
                    error_msg,
                    error_id,
                    user_name)
        VALUES     (seq_dataxprocesslog.NEXTVAL,
                    v_process_name,
                    'ERR',
                    SYSDATE,
                    v_sqlerrormsg,
                    v_sqlerrorcd,
                    v_user_name);
        COMMIT;
    END;The above code has been compiled without any compilation errors but at run time I am getting the error:
    ORA-06502: PL/SQL: numeric or value error.
    Is it because of below statement in the above proc:
    SELECT XMLTYPE (response_file, NLS_CHARSET_ID ('char_cs')).getclobval () AS Online_Respone_xml
          FROM CLARITY_RESPONSE_LOG
          WHERE TRUNC(date_crated ) = TRUNC(SYSDATE-1)Please advice

    vine wrote:
    Is it because of below statement in the above proc:
    SELECT XMLTYPE (response_file, NLS_CHARSET_ID ('char_cs')).getclobval () AS Online_Respone_xml
    FROM CLARITY_RESPONSE_LOG
    WHERE TRUNC(date_crated ) = TRUNC(SYSDATE-1)Please adviceto see where the line code that gets the error try using dbms_output.put_line() and before you run your procedure use the SQL*Plus command set serveroutput on. see this example below using the dbms_output.put_line().
    CREATE OR REPLACE PROCEDURE "MWF_ONLINE_RESPONSE_XML" AS
       v_file            UTL_FILE.FILE_TYPE;
       v_text            VARCHAR2 (20);
       v_filename        VARCHAR2 (200);
       v_delimitedchar   CHAR (1);
    ----log
      v_process_name  VARCHAR2(100) := 'MWF_ONLINE_RESPONSE_XML';
      v_sqlerrorcd          VARCHAR2(10);
      v_sqlerrormsg         VARCHAR2(255);
      v_seq_auto_email_job  NUMBER;
      v_cnt                 NUMBER := 0;
      v_user_name    VARCHAR2(30);
    BEGIN
      --- for log use
      SELECT sys_context('USERENV','OS_USER') INTO  v_user_name  FROM dual;
    dbms_output.put_line('1');
      INSERT INTO PROCESS_ERROR_LOG
                 (seq_num,
                  process_name,
                  status,
                  process_date,
                  user_name)
      VALUES     (seq_dataxprocesslog.NEXTVAL,
                  v_process_name,
                  'STA',
                  SYSDATE,
                  v_user_name);
    dbms_output.put_line('2');
       v_delimitedchar := CHR (124);
       v_filename := 'online_response_xml.txt';
       v_file := UTL_FILE.FOPEN ('MWF_DATA_EXTRACTS', v_filename, 'W');
       UTL_FILE.PUT_LINE(v_file,'online_response_xml');
    dbms_output.put_line('3');
       FOR online_response IN
          (SELECT XMLTYPE (response_file, NLS_CHARSET_ID ('char_cs')).getclobval () AS Online_Respone_xml
             FROM CLARITY_RESPONSE_LOG
            WHERE TRUNC(date_crated ) = TRUNC(SYSDATE-1)) LOOP
          UTL_FILE.PUT_LINE (v_file, online_response.Online_Respone_xml);                                                  
          v_cnt := v_cnt + 1;
    dbms_output.put_line('4');
       END LOOP;
      UTL_FILE.FCLOSE(v_file);
    dbms_output.put_line('5');
      INSERT INTO PROCESS_ERROR_LOG
                 (seq_num,
                  process_name,
                  status,
                  process_date,
                  cnt,
                  user_name)
      VALUES     (seq_dataxprocesslog.NEXTVAL,
                  v_process_name,
                  'COM',
                  SYSDATE,
                  v_cnt,
                  v_user_name);
      COMMIT;
    dbms_output.put_line('6');
    EXCEPTION
      WHEN OTHERS THEN
        v_sqlerrorcd := SQLCODE;
        v_sqlerrormsg := SUBSTR(SQLERRM,1,255);
        INSERT INTO PROCESS_ERROR_LOG
                   (seq_num,
                    process_name,
                    status,
                    process_date,
                    error_msg,
                    error_id,
                    user_name)
        VALUES     (seq_dataxprocesslog.NEXTVAL,
                    v_process_name,
                    'ERR',
                    SYSDATE,
                    v_sqlerrormsg,
                    v_sqlerrorcd,
                    v_user_name);
        COMMIT; 
    END;

  • Cisco CRS Historical Reports error "run time error 364 application defined or object-defined error"

    Hi All,
    we are getting an error when we open historical report

    Hi;
    The 713 error generally means something is not installed correctly for the runtime.
    How did you deploy the runtime to the client system?
    Regards,
    Jonathan

  • System Error/Run Time Error

    Hello Gurus,
    Please help me, its regards to SD module as I am, think its an program error can be solveed out.
    I can loginto the SAP IMG screen after that not able to get into any Tcode nor through path
    e.g. geetting the errors like
    --Unable to lock Table/view V_TVAK. while going for tcode VOV8
    --Unable to lock table/view V_TVKO while difining Sales Orgn.
    --Unable....................view T001 while copying co. code.
    and unable to check the SAP notes offline/online.
    Please help me to overcome this problem.
    Thanks,
    Sarat

    Check with your BASIS team. It could be an issue with Authorizations or
    some system setting.

  • Run Time Error '13' Type Mismatch in SAP BEx

    Hello, SAP World!
    If i try to see "Query Properties" in Excel 2007 in BEx Analyzer, getting the error:
    Run-time error '13'
    Type Mismatch.
    Plz, Help!
    For Excel 2003 this error is not occured.
    GUI 6.40
    File Ver. 6405.5.27.3058
    Patch Level: 27
    SAP BW 3500.4.020

    are you using BW 3.5 or 7.0 (BI nw2004as) ?
    have you installed both BW add-on (3.5 and 7.0) ?

  • Run-time error '13' in ALV report

    Hello,
    In a standard ALV report we are using Excel report layout. The Excel contains a table and a graph. The excel table refreshes with no errors.
    In order to refresh the graph data we recorded a VB Macro but when we run the report (which runs the macro) we are getting the error:
    run-time error '13'
    When we open the excel report from our workstation (not trough the SAP system) we are not getting this error.
    Please Advice,
    Amir

    hi
    this is a bug(error )in microsoft excel:
    Run-time error:'13' Type Mismatch" error message when you click a macro or a function on a menu in Excel 2002
    Please chec kthis link for the details:
    http://support.microsoft.com/kb/821292
    Regards
    Neha

  • Run-time error '13' when trying to see query properties

    *Hi BI friends,*
    I want to set Auto refresh property when opening to my work book  ,
    *If i try to see "Query Properties" in Excel 2007 in BEx Analyzer, i am getting the below error :*
    *Run-time error '13'*
    *Type Mismatch.*
    *Plz, Help!*

    Hello Reddy,
    Try to use the latest version of front end tools
    The issue should be solved:
      http://service.sap.com/swdc
        -> Download
         -> Support Packages and Patches
          -> Entry by Application Group
    -> SAP Frontend Components
    -> SAP GUI FOR WINDOWS
    -> SAP GUI FOR WINDOWS 7.10 CORE
    -> SAP GUI FOR WINDOWS 7.10 CORE
    -> win32
    -> gui710_18-10002995.exe
    _ -> BI ADDON FOR SAP GUI
    -> BI 7.0 ADDON FOR SAP GUI 7.10
    -> BI 7.0 ADDON FOR SAP GUI 7.10
    -> Win32
    -> bi710sp12p_1201-10004472.exe
          |_ -> BI ADDON FOR SAP GUI
              -> BW 3.5 ADDON FOR SAP GUI 7.10
               -> Win32
                -> bw350gui710_10-10004473.exe
    If persist, let me know.
    Kind regards,
    Edward

  • Hyperion Financial Report 11.1.1.3 - Run-time error '429':

    Hi All,
    Is Hyperion Financial Report 11.1.1.3 compatible on Windows 7 x64 VM?
    If so, can someone help me with the Run-time error '429' "ActiveX component can't create object", which I am getting when I click the Financial Reporting Studio link after install.
    Thanks

    Yes, it is supported. You can see it in the EPM System Basic Platform tab here: http://www.oracle.com/technetwork/middleware/bi-foundation/oracle-hyperion-epm-system-certific-2-128342.xls
    There is an entry for the same error message on My Oracle Support:
    Cannot Launch Financial Reporting Studio [ID 1115073.1]
    Modified 19-APR-2012 Type HOWTO Status PUBLISHED
    In this Document
    Goal
    Fix
    Applies to:
    Hyperion BI+ - Version 11.1.2.0.00 and later
    Information in this document applies to any platform.
    ***Checked for relevance on 20-Apr-2012***
    Goal
    When you try to launch the Financial Reporting Studio on a Vista 32bit desktop workstation, you receive the following error:
    "Run-Time Error '429': ActiveX Component can't create object".
    You have installed Studio as an administrator on the desktop
    Fix
    When you install Financial Reporting Studio using the Administrator account, right-click "Run as Administrator".
    Related
    Products
    •Enterprise Performance Management and Business Intelligence > Business Intelligence > Hyperion Query & Reporting > Hyperion BI+
    Keywords
    ACTIVEX; ADMINISTRATOR; DESKTOP; FINANCIAL REPORTING; FINANCIAL REPORTING STUDIO; INSTALL; RUN-TIME; STUDIO; WORKSTATION
    Errors
    ERROR 429
    Although it says Version 11.1.2.0.00 and later, I'd give it a shot.
    Cheers,
    Mehmet

  • Run-time error for the chart  - TBUtilities

    Hello,
    I'm trying to create a report template with the BI Publisher desktop plugin. The load of the xml file, the Table creation and PDF export work fine. When I want to add a chart to the template (Insert -> Chart...), I have a Microsoft Visual Basic Error:
    Run-Time error '-2147024894(80070002)':
    File or assembly name TBUtilities, or one of its dependencies, was not found.
    I use Word 2000 (9.0.8950 - SP3), .Net framework 2.0 and Java JRE 1.5.0_05.
    I checked the other topic about this type of error but I didn't find any solutions...
    Is there a patch to fix this error ???
    Thanks

    Has anybody got an answer for this one, as it has just happened to me
    Gus

  • Run time error while installing Labview 8.6.1 in Vista x64

    hai friends,
               i got an error( Run time error) while installing Labview 8.6 software. this software has bought from NI. it shows the error path as setup.exe. this software i had tried to install in vista x64. but when i am installing the same software in windows xp, it is installing fine...so what was the problem for this error. how to solve it, please help me....

    Thank You Mr.Jason Daming,
    Same error what post Mr.muks referred in the last reply....
    When the installation begins an error occurs (after the acceptance of licence step in the installation procedure) with the title on the error window "Microsoft Visual C ++ Runtime Library " and displays the program set up path with these statements " This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information."
    while installing the same Labview in windows XP..... it is installing fine... but in vistax64 only i am facing this kind of problem...

  • Run-time Error '432'  in WAD

    Hi Experts,
    While opening a web template in web application designer, I am getting following error,
    Run-time Error '432' :
    File name or class name not found during automated operation.
    If i press ok, exist from WAD.
    I have uninstalled the GUI and installed SAP GUI 6.4 with the latest patch, still getting the error.
    It would be a great help if you could provide a solution for this.
    Thanks,
    Kaushik

    We are talking about a small .dll.
    No need of installing the OS again. I will say, ask your Windows administrator to look for it. He might look for it on MSDN or may be he will contact Microsoft for it.
    Most probably it might be 10 minutes job.
    Why don't You look for runtime error 432 in microsoft(MSDN) website.
    and even if you reinstall Windows XP, I guess it won't resolve the issue. there are couple of issues I heard with XP and SAP applications.
    Tnks
    Message was edited by:
            Keerti Vemulapalli

  • BIP Desktop Install Problem:  Run-time error '9' Subscript out of range

    Hi All,
    I am trying to get my BIP Desktop to work. I have notice previous threads regarding the internet explorer security patches affecting BIP Desktop and my problem is similar. Here is my problem:
    1. I installed BIP Desktop 5.7.146.
    2. I start Template Builder for Word Language by selecting Start>Programs>Oracle BI Publisher Desktop.
    3. A dialog box prompts for UI Language and I select English
    In the midst of the Template Builder for Word Language attempting to initiate/change the user interface language to English, it throws the following error:
    Run-time error '9' Subscript out of range
    Here are some details regarding my PC:
    XP sp2, MSXML6, jre1.5.0_15
    Also, my CPU performance hits it maximum while I am doing this
    Any thoughts on how to correct this?
    Thanks,
    Patrick

    Patrick,
    Were you able to find a solution to this problem?
    One of my colleagues is having the same issue.
    Regards,
    Srini

  • Run-time error -2147217911

    I have an Access 2000 database that links to tables in an Oracle 9i.
    I am trying the following code in a form:
    Dim conn As ADODB.Connection
    Set conn = New ADODB.Connection
    Dim rst As ADODB.Recordset
    conn.Open "Provider=MSDASQL.1;" & _
    "Password=pdwhere;" & _
    "Persist Security Info=True;" & _
    "User ID=uidhere;" & _
    "Data Source=dev"
    Set rst = New ADODB.Recordset
    rst.Open "SELECT * FROM tblSurvey", CurrentProject.Connection, adOpenDynamic, adLockOptimistic
    rst.AddNew
    rst!Counter = 375
    rst!Project# = Me.cboProject.Value
    rst!PARCEL# = Me.cboParcel.Value
    rst.Update
    rst.Close
    Set rst = Nothing
    It seems that at the rst.addnew I get the following error:
    run-time error '-2147217911 (80040e09)': Cannot update. Database object is read-only.
    What am I doing wrong?

    Hi,
    Please understand speedresearch is a third party software. The error is more related to software. It is recommended contacting speedresearch to get more specialized
    support.
    http://www.speedresearch.com/contact.asp
    Note: Since the website is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    From Windows 7 side, I suggest you perform the
    clean boot, reinstall program in compatibility mode to check
    the result. When registering file, please open an elevated command prompt. Also, you could perform system restore.
    Best Regards,
    Niki
    Please remember to click "Mark as Answer" on the post that helps you, and to click "Unmark as Answer" if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

Maybe you are looking for

  • Input Controls - is it possible to change the font for a combo box

    I have an input Control combo box that is a mixture of english/chinese characters. In Webi I can view the chinese characters correctly if I change the font to MingLIU. Is it possible to change the font for an input control OR to set a default font?

  • Wireless HP Photosmart eAll-in-On​e will not print from Word program in HP G60-535DX Windows 7

    Wireless connection checks out on both the Pc and the printer.  All options check out correctly.  Until a week ago  my 2 year wireless connection worked correctly.  I can print from the Internet but not from any Windows programs.   I have contected H

  • Final Settlement for Extended Rebate - agreement status not updated

    Hi, When doing final settlement via the Extended rebate, a CM is generated, but the status of the agreement is not updated to D.  Any configurations needed or steps to be done? I thought it should be automatically updated by the system.. Thanks,

  • Aperture 3 versus Iphoto

    am I correct in thinking if I have Apertyre 3 I have no need for iPhoto,this is on the iMac... Also can't remember if I've asked this but on the iPad if I have iPhoto can Photo be deleted because its just a duplicate except it has less options,is thi

  • Option to create a new airport network is not available.

    My family has 4 new Intel core 2 duo imacs running OS X 10.4.8. Mine is connected via ethernet to a router, which is connected to the dsl modem. My system also acts as the airport connection for the three other systems which share my internet connect