I can't open example report test.rdf

When execute the example report in the demostration page, I get this error:
REP-110: Unable to open file 'test.rdf'.
REP-1070: Error while opening or saving a document.
REP-0110: Unable to open file 'test.rdf'.
Any idea?
Thanks.

I am also getting the same problme.
But I copied the sample reports to Report/web folder and i could open & export the sample reports from the client browser. Problem is with newly created reports. Should I do any configuration except path setting in registry..?
thanks in advance
Nuruthin Ahammed

Similar Messages

  • I can't open a report created in win XP on win2000

    I can't open a report created in win XP on win2000
    I created a report in winXP on SCOTT schemas and I tried at home to reopen the report.
    I receive an error like UNABLE TO OPEN .....REP-0110.
    I tried these reports on another computer with WINXP and they perfectly worked.
    Only win2000 has this problem? Can I solve this problem without installing WinXP?
    Thank you

    there should be no difference, except if you reports versions on those two machines are different. have you tried the other way around, create a file on win2000 and try to open it on XP ? maybe the file gets corrupted during transfer or something.
    thanks,
    ph.

  • Can you open a report in Excel/Word desktop instead of the web pugin?

    using run_report_object( and web.show_document,
    how or can you get a report to open in the desktop/full version of MS Excel/Word instead of the web plugin versions?
    I can get the browser to open a report in pdf with my desktop adobe reader, but not with an rtf or xml/delimited desformat.
    Currently I don't pass a mimetype when opening as a pdf, but I do pass one in the url when i am destypes of xml, delimited and rtf,
    as this is the only way i have found out how to open the reports in word/excel.
    I'm in the process of upgrading from forms 6 client/server to 10g developer suite, so this is my try with a web based system.
    Does anyone have any suggestions, or where I should look.
    Below I listed my code from a procedure.
    the first part of the procedure is alot of converting, but if you skip down to the part between the 2 sets of double lines this fairly standard.
    PACKAGE BODY pmc_lib IS
    -- Procedure to run the report.
    procedure run_reports(v_report_name in varchar2, -- Report Name with or w/o a path.
    v_commode in number default synchronous, -- commode
    v_execmode in number default runtime, -- execute mode
    v_file_sys in number default filesystem, -- dummy
    v_param_list in paramlist, -- parameter list
    v_show_modes in varchar2 default null) is -- used for testing,
    -- if set to anthing but null, the report properties will display
    -- on the screen through an alert prior to printing.
    v_errorcode number;
    v_errortext varchar2(600);
    v_initialized boolean := false;
    v_prop_reportserver varchar2(200);
    v_report_path varchar2(200);
    v_user varchar2(100);
    v_user_sessionid number;
    v_forms_version varchar2(100);
    v_default_report_server varchar2(200);
    v_default_server_domain_path varchar2(200);
    v_connect_string varchar2(3) := get_application_property(connect_string);
    v_user_name varchar2(35) := get_application_property(username);
    report_id report_object;
    reportserverjob varchar2(100);
    v_jobid varchar2(100);
    rep_status varchar2(100);
    v_url varchar2(500);
    v_url2 varchar2(500);
    v_parameter_value varchar2(100);
    v_destype_param_value varchar2(100) := null;
    v_desformat_param_value varchar2(100) := null;
    v_desname_param_value varchar2(100) := null;
    v_value_n number := 0;
    v_param_type number := text_parameter;
    v_prop_execmode number;
    v_prop_commode number;
    v_prop_destype number;
    v_prop_filename varchar2(200);
    v_prop_source_block varchar2(200) := null;
    v_prop_query_name varchar2(200) := null;
    v_prop_desname varchar2(200) := null;
    v_prop_desformat varchar2(200) := null;
    v_prop_reportserver varchar2(200) := null;
    v_prop_other varchar2(200) := null;
    v_mimetype varchar2(200) := null;
    v_selected_mimetype varchar2(200) := null;
    report_not_generated exception;
    report_id_not_found exception;
    BEGIN
    v_forms_version := get_application_property(version);
    v_prop_reportserver := get_report_object_property('report1', report_server);
    v_report_path := null;
    v_user := v_user_name || '/' ||
    get_application_property(password) || '@' ||
    v_connect_string;
    if v_connect_string = 'NNN' then
    v_default_server_domain_path := 'pmcoracapp01.aapmc.com/reports/rwservlet';
    v_default_report_server := 'rep_pmcoracapp01_frhome1';
    else
    v_default_server_domain_path := 'oradevsrv.aapmc.com/reports/rwservlet';
    v_default_report_server := 'rep_oradevsrv_frhome1';
    end if;
    v_initialized := true;
    -- Check to see what version of forms is running.
    if substr(v_forms_version, 1, 1) <> '6' then
    -- Check to see if WEB version is running
    -- This may be an unnecessary check.
    if (get_application_property(user_interface) = 'WEB') then
    report_id := find_report_object('report1');
    -- id_null won't work on a report_id in Version 6, may put back in 10g once version 6 is gone completly
    -- if id_null(report_id) then
    -- raise report_id_not_found;
    -- end if;
    -- Because of Convertions from old system the following are needed.
    -- 1) If 'execmode' is runtime, then change it to batch.
    if v_execmode = runtime then
         v_prop_execmode := batch;
    else
         v_prop_execmode := v_execmode;
    end if;
    -- 2) If Report name has an attached path, then remove it.
    v_value_n := instr(lower(v_report_name), 'k:\pmc\new\');
    if v_value_n = 0 then
         v_prop_filename := v_report_name;
    else
         v_prop_filename := substr(v_report_name, v_value_n + 11);
    end if;
    -- From looking at the FORMS, 'destype' parameter is always passed in from the FORM.
    -- It is either 'preview' or 'file'.
    -- This is here for the converstion from Forms 6 to 10g.
    -- If for some reason destype has not been passed in as a parameter, you will get a FORM error,
    -- saying the parameter does not exists.
    begin
    -- 3) If 'destype' is one of the following, then change it to cache.
    get_parameter_attr(v_param_list, 'destype', v_param_type, v_destype_param_value);
    if lower(nvl(v_destype_param_value, 'null')) in ('preview', 'file', 'null') then
    v_prop_destype := cache;
    -- 3a) If 'destype' was = 'file' then check the 'desformat' and 'desname'.
    if lower(nvl(v_destype_param_value, 'null')) = 'file' then
    -- 3b) Get 'desformat' value
    get_parameter_attr(v_param_list, 'desformat', v_param_type, v_desformat_param_value);
    -- 'delimited' was not working, so change all 'delimited' to 'delimiteddata'.
    if lower(nvl(v_desformat_param_value, 'null')) = 'delimited' then
         v_desformat_param_value := 'delimiteddata';
    end if;
    -- 3c) If 'desformat' is NOT one of the following, then change it to pdf.
    if lower(nvl(v_desformat_param_value, 'null')) not in ('pdf', 'xml', 'rtf', 'delimiteddata') then
    v_prop_desformat := 'pdf';
    else
    v_prop_desformat := lower(v_desformat_param_value);
    end if;
    -- 4) Get 'desname' property.
    get_parameter_attr(v_param_list, 'desname', v_param_type, v_desname_param_value);
    v_prop_desname := lower(v_desname_param_value);
    end if;
    else
    v_prop_destype := lower(v_destype_param_value);
    end if;
    exception
    when others then
    null;
    end;
    -- If a desformat is rtf, xml, or delimited then get a mimetype to pass to the url
    if lower(v_prop_desformat) = 'rtf' then
    v_mimetype := '&mimetype=application/msword';
    elsif lower(v_prop_desformat) = 'xml' then
    v_mimetype := '&mimetype=application/vnd.ms-excel';
    elsif lower(v_prop_desformat) = 'delimiteddata' then
    v_mimetype := '&mimetype=application/vnd.ms-excel';
    end if;
    -- 6) If the Following are not set within the Report Object then
    -- set them to the following defaults.
    -- These are al required to be set for the Report Object to Function.
    -- These are the defaults for AAPMC.
    v_prop_execmode := nvl(v_prop_execmode, batch);
    v_prop_commode := nvl(v_prop_commode, synchronous);
    v_prop_destype := nvl(v_prop_destype, cache);
    v_prop_desformat := nvl(v_prop_desformat, 'pdf');
    v_prop_reportserver := nvl(v_prop_reportserver, v_default_report_server);
    -- Set All Report_Object Properties
    set_report_object_property(report_id, report_execution_mode, v_prop_execmode);
    set_report_object_property(report_id, report_comm_mode, v_commode);
    set_report_object_property(report_id, report_destype, v_prop_destype);
    set_report_object_property(report_id, report_filename, v_prop_filename);
    set_report_object_property(report_id, report_source_block, v_prop_source_block);
    set_report_object_property(report_id, report_query_name, v_prop_query_name);
    set_report_object_property(report_id, report_desname, v_prop_desname);
    set_report_object_property(report_id, report_desformat, v_prop_desformat);
    set_report_object_property(report_id, report_server, v_prop_reportserver);
    set_report_object_property(report_id, report_other, v_prop_other);
    -- Run Report_Object
    reportserverjob := run_report_object(report_id, v_param_list);
    v_jobid := substr(reportserverjob, length(v_prop_reportserver) + 2, length(reportserverjob));
    -- If Report Status is not 'FINISHED', then loop till it is.
    if reportserverjob is not null then
    rep_status := report_object_status(reportserverjob);
    while rep_status in ('RUNNING', 'OPENING_REPORT', 'ENQUEUED') loop
    rep_status := report_object_status(reportserverjob);
    end loop;
    if rep_status <> 'FINISHED' then
    raise report_not_generated;
    end if;
    -- Create 1st part of url.
    v_url := 'http://' || v_default_server_domain_path || '/getjobid' || v_jobid || '?server=' || v_prop_reportserver;
    -- Check for mimetype.
    if v_mimetype is not null then
    v_url := v_url || v_mimetype;
    end if;
    -- Final part of url.
    v_url2 := 'javascript:window.open("' || v_url || '", "", "fullscreen=no, titlebar=no, location=no, toolbar=no, menubar=no, status=no, resizable=yes"); self.close()';
    -- This is the built-in that calls a new browser window
    web.show_document(v_url2,'_blank');
    else
    raise report_not_generated;
    end if;
    end if;
    -- Destroy the parameter list.
    destroy_parameter_list(v_param_list);
    else
    -- This section if for Client Server, Version 6 of forms.
    -- It will do the same as before the conversion.
    -- It is only used before the complete conversion.
    if v_report_name is null then
    return;
    end if;
    v_value_n := instr(v_report_name, 'k:\pmc\new\');
    if v_value_n = 0 then
         v_prop_filename := 'k:\pmc\new\' || v_report_name;
    else
    v_prop_filename := v_report_name;
    end if;
    run_product(reports,
    v_prop_filename,
    v_commode,
    v_execmode,
    filesystem,
    v_param_list,
    null);
    end if;      
    -- create history record of the report being run
    insert into pmc_report_history values(
    s_pmc_report_history.nextval,
    v_prop_filename,
    v_user_name,
    sysdate,
    v_forms_version,
    v_jobid,
    v_destype_param_value,
    v_desformat_param_value,
    v_desname_param_value,
    v_prop_destype,
    v_prop_desformat,
    v_prop_desname,
    v_mimetype,
    v_window_open_params);
    commit;
    exception
    when report_id_not_found then
    show_user_alert('ERROR: Cannot Find Report Object!', null);
    when report_not_generated then
    show_user_alert('ERROR: Report Not Generated!', null);
    when others then
    v_errorcode := SQLCODE;
    v_errortext := SQLERRM;
    show_user_alert('ERROR : ' || v_errorcode || ' = ' || v_errortext, null);
    end;
    end;

    What you could try is downloading the report to the client pc using WEBUTIL_FILETRANSFER.URL_TO_CLIENT, then open the locally save file using something like:
    CLIENT_HOST('cmd /c rundll32.exe url.dll,FileProtocolHandler "localfilename"');

  • Can't open XL Reporter with Vista

    Whenever I try to open XL Reporter it hangs while connecting and then throws the error:
    "Unable to connect to XL Reporter. Error! Server communication failed!
    Cause: Server (local)
    The connect information provided in MetaInfo.xml is wrong.
    (Please contact the administrator to change ChangeDbPassword."
    I am using Windows Vista and have Office 2007. I have checked the box "Trust access to the VBA project object model" in Trust Center Settings.
    I removed the client completely, deleted the XLR folder and reinstalled. Same error. I opened the ConnectionManager.exe in the XLR folder. I can't connect there with (local) as the db. If I change it to my machine name\SQLEXPRESS then I connect. However, when I go back to open XL Reporter from within Business One, I get the same error.

    You may check these threads:
    Unable connect to XLR in 2007
    Re: Unable to connect XL Reports
    Unable to connect XL reporter.
    XL Reporter error
    Thanks,
    Gordon

  • Can't open a Report in Forms

    hi everybody
    I hope all of you are fine.
    Actually I'm now on training of learning Oracle Forms & Reports and I made an application and I put in the Forms a report to get the medicines info so after starting the Forms it loaded to Firefox Browser and after pressing on Report I get an error that tells "FRM-41214: Unable to run report" and I can't load the report.
    actually I started the server and it's in Ready so it works fine and I can see the reports working from Reports Builders through a browser but the Forms can't see the report and it gave me that error "FRM-41214: Unable to run report". Other thing the OC4J is working.
    The system that I'm working on:
    - Windows Vista ultimate edition.
    - Oracle 10g 2R, DB, Forms, Reports.
    The default browser for Forms Builder is Firefox and the default browser for Reports Builder is IE.
    Any help please to solve my problems I'll be appreciated

    Hi
    First of all please tell us with which bulitin are you calling the report.post the whole code you use to call the report.
    Thanks
    --Ajay Sharma
    Edited by: Ajay Sharma on May 30, 2009 5:35 AM

  • Can't open a report in unix

    Hi,
    when i open a report in unix by using rwbld60 , it is saying that you are using older version of report builder you might have lose the functionality,
    if i still click on continue the report is automatically closing off.
    so what is solution to get that report open and need to do some changes it is an urgent.
    please help me.

    Hi,
    rwbld60 is for Oracle Report 6i. The report you are trying to open was developed using a newer version of Report Builder though. Simply look for rwbuilder in ORACLE_HOME/bin/ instead of rwbld60 or install the newer version of Oracle Report Builder if you don't have it yet. Note, that you may have several Oracle Homes in your development environment so check them all or do a search for rwbuilder in your system. You have to use the same version of Developer Suite that was used for creating your report.
    Regards,
    Julius Z

  • Can not open a report in XLTX format

    I have created several BPC reports and save them in XLTX format,  one of them can not be opened with the following message "Excel cannot open file because the file  format or extension is not valid," anybody has this kind experience and know hot to fix it?

    Jianbai,
    Known issues with BPC and Office Excel 2007 and opening with 2003.
    You might want to check a client machine where this occurs to see if they still have excel 2003 installed also with Excel 2007
    There is a Work around you can try: We recommend installing the office compatibility pack via the following URL:
    http://www.microsoft.com/downloads/details.aspx?FamilyId=941b3470-3ae9-4aee-8f43-c6bb74cd1466&displaylang=en
    a) Install 'Compatibility Pack for the 2007 Office system' file on
        client machine which has Office 2003.
    b) Change file extension 'xls' or 'xlt' to 'xlsx'.
    c) Open template.
    Note: Please be careful with the file format while saving it from Excel 2007. Even though the file extension is xls, it doesn't mean the format is really 2003 compatible.
    Let me know if this help resolve this issue.
    Thanks,
    Sharon
    BPC-NW Engineer

  • BUSINESS USER CAN'T OPEN THE REPORT

    Hello experts,
    One of our business users(branch manager) working outside the main office is having issues with one of our dashboard reports. What  I don’t understand is, when I open the same report here in my office everything works fine. We have tried to reboot the computer, checked his privileges so far nothing has worked. Below is the error message is getting,
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 46008] Query Failed: [nQSError: 46008] Internal error: File server\Query\Optimizer\Request\Src\SQRRqDumpout.cpp, line 2929.
    Does anyone ever encountered same issue? I will appreciate your help

    Hello again!
    What we need to do is to come up with some tests to isolate what the issue is. If they are the only user/branch having the issue, then that is somewhere to start. Lets try:
    1) Get the user to log on to their Dashboard as someone else and access the same report. This will help us find out if its a account issue.
    2) Get the user to log on to the Dashboard as their user and try accessing the data from a different branch. This will help us find out if its a data issue.
    Additionally, could you help answer a few other questions?
    1) What version of OBIEE are you using?
    2) What OS?
    3) Whats the Data Source?
    4) Is the report complex? Does it have any long calculations in it? - If you could send the request XML that would be great.
    Thanks,
    Chris

  • Can't open PC reports..please help!

    I just went to work for a new company and need to be able to open reports at home from my computer...which I can't. The company says their reports are hard to open with a Mac. I thought Mac was now compatible with MicroSoft. I have a G5 and use both Safari & Interent Explorer. I don't want to have to go by a PC just for the reports that I need to get weekly.....any suggestions?

    Besides office you can try with OpenOffice or NeoOffice, both capable of opening Excel files, both freeware and quite reliable (based on Sun's Star Office). If you need to learn more :
    http://www.openoffice.org/
    http://www.planamesa.com/neojava/en/index.php
    and of course, AppleWorks can also do that...if you have one around!

  • Can not open pdf report

    Hi
    I do create report with apex without any error and then run application, then download pdf format of report, but when open the file, this error show:
    Adobe acrobat could not open 'FILENAME.pdf' because it is either not a supported file type or because the file has been damaged. ...
    Please help me !?
    Thanks.
    Benyamin.

    That error is the default error you run into when something is wrong with your print server configuration. Please make sure you followed all the instructions outlined here:
    http://www.oracle.com/technology/products/database/application_express/html/configure_printing.html
    If you're still encountering issues after following these instructions, please reply back and provide detailed information on your setup: DB version, APEX version, BI Publisher / Apachae FOP version, print URL, etc
    Regards,
    Marc

  • I can't open Crystal Report in Firefox 10. When I open Crystal Report, then Firefox show a blank screen. In IE, Avant Browser using normal.

    Hi, My Name Giang! I using Crystal Report Server Enterprise 9.2 in server. This application using Crystal Report Viewer to show report. I write a ASP file to show report. In client, I using IE, Avant Browser read report. In first time, this app show a message to view Active X Crystal Report Viewer Warning. If I choose Yes then app start normally.
    But, I using Firefox 10 to show my report. In first time, Firefox not show message warning of Active X Crystal Report Viewer. Firefox only show 1 tab page, with blank screen.
    Can't you Help me to show my report?. Do I need using 1 plugin to show Crystal Report? Thanks You very much!

    I think you need a viewer for Firefox, see http://www.sap.com/solutions/sap-crystal-solutions/query-reporting-analysis/sapcrystalviewer/index.epx => Thanks for answer, but i can't find viewer for Firefox.

  • Reports can not open sometimes.

    we can not open our report file sometimes especially contains OLE object.
    In Open report dialog we click the file name but nothing happen .
    I thing file format is corrupt.
    How can we solve this problem.
    Thanks...

    Hi,
    I believe you are taking about Reports 6i version here since OLE support is deprecated in 9i Reports. Please note that this feature is only for Windows platform. One or two issues were resolved in latest version of 6i Reports patch. Please try with ont of the latest pathces.
    Thanks,
    Rohit

  • How to open Crystal report 11 using the Visual c++ 6.0 code

    I am using Visual c++ 6.0.I can't open crystal report X1 from my vc++ application. The same code which I have used for crystal report 7.0 is using for crystal report X1.But it shows "Unbale to load the report". Please help me out.
    The code snippet I have used is given below for the reference
    //m_Crystal_Image - Object of CCrystalCtrl class
    //csDBFilePath - Access Database File path
    //csReportFilePath - Crystal report 11 file path
    m_Crystal_Image.SetReportFileName(csReportFilePath);
    m_Crystal_Image.SetWindowTitle("Test Report");
    m_Crystal_Image.SetDataFiles(0,csDBFilePath);
    m_Crystal_Image.SetDiscardSavedData(true);
    m_Crystal_Image.SetDestination(0);
    m_Crystal_Image.SetWindowState(2);
    m_Crystal_Image.SetAction(1);
    Thanks for ur help in advance.....

    same as:
    How can I open the crystal report X1 report from the vc++ application?
    Locking thread
    Ludek

  • How to run test.rdf (Reports10g)

    I'm posting this message again as I haven't got any reply. Is there anyone out there who successfully tested the reports? Please let me know any solutions you have?
    i finally fixed forms and run the test.fmx successfully. I checked the port number in the eterprise manager console. I was using 7777 instead of 7778 and that was the reason it didn't work.
    But now I'm trying to test report server and it spits out lots of error.
    1. when I run the runrepIAS.html I get the error "The file /reports/rwservlet?destype=file&desformat=PDF&server=rep_mersales&report=test.rdf
    cannot be found. Please check the location and try again
    2. When i try to start the report server by giving rwserver.sh server=rep_mersales batch=yes, I get server starting up and after 2 mins it shuts down itself.
    3. when goto the website http://mersales:7778/reports/rwservlet/=getserverinfo? it says REP-50002: Server is shutting down.
    4. If i got enterprise manager console and try to restart the process it says
    An error occurred while restarting "Reports Server: rep_mersales".
    An error occurred while talking to OPMN. Could not find entity for "rep_mersales".
    For more information, look at the logs using the related link below.
    Related Links Error Logs
    I cannot win so far. Can anybody know how we can test the report?????

    Hi,
    It seems your problem is resolved now. If you have any issue in future with Oracle Reports, you could post your Q here - the following forum is exclusively for Reports:
    Reports
    Navneet.

  • Open the report

    how can I open the report run time

    Hi,
    the "report runtime" is in current versions a servlet. There's no client-runtime available.
    Regards

Maybe you are looking for

  • My macbook charger has stopped working

    Earlier at school my charger ceased to work. It also decided to turn off my Macbook as it quit working. Im not sure if this happened because 2 other chargers were plugged into the same power strip. But all in all it seemed to have shorted out perhaps

  • Help.... convert dvd to mp4

    iBook G3, mac osx 10.3.9, how to convert dvd to mp4? the handbrake 0.7 "qiut" when i double click the icon. why????

  • End User Licence Agreement

    Hi, I have tried to open a document using adobe reader, but it says I need to close my browser and agree to the 'end user licence agreement' - which I did when I downloaded it.  I then go back to reopen the page, and it is still saying the same. Can

  • Pages for ipad:  keeping track of changes in your document

    Does anyone know how you can keep or highlight changes you make in a document. I know that in pages in iwork you can turn on keeping changes, but for the ipad version i don't see how i can do that. Anyone a suggestion?

  • Can't resize disk partitions after Yosemite install.

    My disk has two partitions. I run Mavericks on the first, and recently installed Yosemite on the second. The OS works fine, but I no way to resize the partitions. I've tried booting into both Yosemite and Mavericks but the partition layout in disk ut