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

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

  • 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;

  • 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.

  • 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.

  • AE Work Flow Error in creating request. Path Not Found

    Hi There,
    I am working on GRC 5.2
    I Have lot of questions regarding this tool...
    I am getting this error when i am trying to submit a request..
    Please help me in configuring the AE and guide me with the basic setup.
    Work flows and rest of the things..
    Thanks in advance
    Raghav

    Buddy,
    I have done config using Guide...
    I am able to submit request from the GRC end ...i am getting this below status message
    Request successfully got created and got approved with provisioning. Request no : .
    Approval Path Status 
    (Status : APPROVE) 
    1. Auto-Provision ( Status : Approved )
    [system
    But nothing is changes in ECC system..as per the above request when the system complete the request User ID should be created automatically in the back end but its not happenning.
    Please guide me

  • 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

  • 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.

  • Manage query - run time errors

    Hi,
    we have one user working at one desktop which receives error "run-time error 5" followed by "401 Automation error" when selecting the manage query wizard proceeding from the BPC Excel action pane.
    We only have this at one desktop. Any ideas?
    Dries

    Hi,
    You can check the query run time by using T code RSRT.
    1. Go to T code RSRT
    2. Give your query name.
    3. Click on the "Execute + Debug" tab
    4. Various check boxed for Debug options will appear on the screen
    5. Under the "Others" node you will find the check box for "Display Statics Data"
    6. Check this check box and click on continue.
    7. This will execute the query and provide you selection screen if any.
    8. Once the query is completely executed, click on "back" button or simply hit F3.
    9. This takes you to the "Statistic Data for Query Runtime screen"
    10. Here you can take the total of "Duration" column to get the total duration for query execution.
    Please refer following link for details:
    [http://help.sap.com/saphelp_nw70/helpdata/en/43/e3807a6df402d3e10000000a1553f7/frameset.htm]
    Hope this answers your query.
    - Geetanjali

  • 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 '-2147024882 (8007000e)';

    Hi all,
    I have created a setup package in the SAP NetWeaver Administrator tool (without data for 1 user) and I tried to install it on laptop 1. When I tried to run the setup.exe to install SAP MI I get the following error:
    Run-time error -2147024882 8007000e
    System Error &H80004005(-2147467259). Unspecified error
    The strange thing is that the same setup package is working on another laptop (when I press setup.exe it is working and everything is installed).
    Does anyone knows what is wrong with this laptop (the first one)? Everything was de-installed correctly and all directories where really removed.
    I hope someone can help me with this. Thanks in advance and kind regards!
    Bart Elshout

    Hi,
    Problem solved, but not with the SAP pre-requisites. I created the following empty folder C:\Program Files\SAP\<b>Mobile_Installation_logfiles</b>. Before the folder was in place, it was crashing all the time, after I created the folder, I was able to do the installation. Very strange.....
    Bart Elshout

  • Why getting "Run-time error 2046 the command or action 'GoToRecord' isn't available now"

    Hello,
    I'm running this on Form Load:
    Private Sub Form_Load()DoCmd.GoToRecord , , acNewRec
    End Sub
    when I'm in the office connected to the LAN, the database opens without any error but when
    I'm working remote through a VPN, I get this error:
    Run-time error 2046 the command or action 'GoToRecord' isn't available now.
    I'm wondering if this is related to a speed issue and more importantly, how to fix it?
    Thanks,

    Make absolutely sure the query behind the form is updateable and the form allows edits
    Use the following code with the forms On Open event:
    DoCmd.ShowAllRecords
    DoCmd.GoToRecord , , acNewRec
    See if that helps. Have no clue why it would work in one environment but not another.

  • 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

Maybe you are looking for

  • How to change default text in Tray UI ?

    Hi: The default text at the icon to collapse and expand tray are "Collapse Tray" and "Expand Tray" I want to change it, How can I do it? I read the API    and I can't find it. If you see the API's page it will be the icon's text next to "Item 1". Tha

  • Why can't I copy text from ibooks?

    I have just downloaded Mavericks and I am looking into the desktop version of ibooks. It seems like I can copy text from free books but not from a book that I bought. It is the first and only book that I have bought on ibooks. I would like to start u

  • Binary variable view does not work for long long int

    According to this document CVI 2013 supports long long int. While clang probably does, the variable view does not always support it... If you want to look at the value of a long long int variable and choose the binary format, the value may be too lar

  • Mackbook Pro i7 mid 2010 repetadly crashing after Mountain Lion

    Clean instalation, no issues with leopard and snow leopard. After upgrading to Mountain lion ... random and frquently crashes. No errors on Hardware tests. I´m desperate. Any idea? Interval Since Last Panic Report:  2336 sec Panics Since Last Report:

  • I have configured ISU and CRM

    I have configured both CRM and IS-U in the my CRM have assigned the roles of marketing, sales, service so i get all the menus related to these sub modules on the web. I want use CCS on the for creating business agreements and contracts on the web. wh