Report Compilation Error REP-1430 on Linux

Good Day,
I've been trying to compile a few reports on Linux Report Builder: Release 11.1.1.7.0
All the other report can convert into .rep
but there are 1 reports gives this error in the .tex file
Conversion of CL3198.rdf canceled
Inside the cmd it says
REP-1430: A REP file for report CL3198.rdf cannot be created: compilation errors found.
When i compile the report in the Report Builder 6i (ctrl + shift + K) it compiled successfully. I'm using the same schema in both Report Builder and cmd.
How can i resolve this? Please help.
Thanks in advance.
Ikha.

Similar issue here. It happens with just a few reports. I can compile them on reports builder, but not using rwconverter.sh I am using 11.1.2.
Any clues so far?

Similar Messages

  • Reports Compilation Errors: REP-25200 / REP-0004 / REP-1430

    Hello,
    When trying to compile 1 report on my Linux RHEL server, I get the following errors:
    [oracle@Linux2005 Source_9i]$ $ORACLE_HOME/bin/rwconverter.sh userid=system/manager1@oracleln batch=yes source=$ORACLE_HOME/forms90/Source_9i/BTSTMENT.rdf stype=rdffile overwrite=yes dtype=repfile
    Report Builder: Release 9.0.4.0.21 - Production on Sat Aug 6 14:19:14 2005
    (c) Copyright 2001 Oracle Corporation. All rights reserved.
    REP-25200: Converting '/u01/app01/oracle_iAS_10g_new3/forms90/Source_9i/BTSTMENT.rdf' to '/u01/app01/oracle_iAS_10g_new3/forms90/Source_9i/BTSTMENT.rep'...
    Conversion of '/u01/app01/oracle_iAS_10g_new3/forms90/Source_9i/BTSTMENT.rdf' cancelled.
    REP-0004: Warning: Unable to open user preference file.
    REP-1430: Cannot create REP File for report '/u01/app01/oracle_iAS_10g_new3/forms90/Source_9i/BTSTMENT.rdf'. Compilation errors found.
    [oracle@Linux2005 Source_9i]$ ls logo.gif
    logo.gif
    1) How can I resolve this issue ?
    Paolo

    No, not $ORACLE_HOME, but simply $HOME, the login home directory. I had that problem, and moving prefs.ora to $HOME solved it.
    About the other error, assuming that Windows and Linux machines connect to the same DB, and since you say that on Windows same programs compile and run properly, then one thing I can imagine is of upper/lower case names, that is on Linux something is not found, while on Windows it is, being Windows case insensitive. Just a thought....
    Could this be related to the environment variable set-up in my .bash_profile file ?I don't think so. If this was the case, then no programs should compile.
    Paul

  • Linux Reports Compilation Errors (???)

    Hello,
    I created WebReports that run well an compile correctly under Windows XP.
    When I transfer my source to Linux, I am get the following compilation errors:
    REP-25200 Converting '/u01/app01/oracle_iAS_10g_new/forms90/Source_9i/Bttrnmtl.rdf' to '/u01/app01/oracle_iAS_10g_new3/forms90/Source_9i/Bttrnmtl.rdf' cancelled.
    REP-0004: Warning: nable to open user preference file.
    REP-1051: Unable to save document to file '/u01/app01/oracle_iAS_10g_new3/forms90/Source_9i/Bttrnmtl.rdf'.
    REP-1070: Error while opening or saving a document. - Object was not found in the object store.
    REP-1430: Cannot create REP File for report '/u01/app01/oracle_iAS_10g_new3/forms90/Source_9i/Bttrnmtl.rdf'. Compilation errors found, (oracle@Linux2005 Source_9i)
    1) How can I find out what part of the WebReport is causing this compilation error(s) ?
    Paolo

    Paolo,
    Check:
    1. You have read and write permissions for the directory in which you are saving the .RDF.
    2. RDF files are not corrupted.
    3. The directory you are saving .RDF to has enough space.
    Regards,
    Martin Malmstrom

  • Report Compilation Error

    I just installed the latest ColdFusion report builder. In
    running my first report I get the error "Report compilation error.
    Error at (108, 20: null ". Note that the RDS connection
    successfully tested and that the query itself runs with no problem.
    But when I hit the preview button within the report builder I get
    this error.

    Through the knowledge base I found out that I should delete a
    file named commons-digester-1.3.jar (which requires the stoppage of
    CF services), and after deleting that file and restarting services
    there was another error that occurred on my testing server (that
    runs only the developer version). The debug code is
    "<html><head><script
    src="res://mshtml.dll/objectembed.js"></script> <script
    language="javascript">var objectSource="
    http://localhost/Test4/report.cfr";
    </script> </head><body onload="ObjectLoad();"
    leftmargin=0 topmargin=0 scroll=no> <form
    id="objectDestination"></form>
    </body></html>". (The compiler hickuped on the
    ObjectLoad) Interestingly, the report did run when I put the report
    on the production server.

  • Creating Dynamic Report - facing error REP-498

    Hi guys,
    Facing problem Creating Dynamic Reports.
    Error : REP-498: Number of columns selected by the query is incompatible with report definition.
    Could you please show me where do i have to changed my query to get rid of this error message?
    Thanking you in advance.
    --dynamic query
    select a.yr_no
    &columname_1
    from authorized_utilization_s a,
    tblservicecategory b, tblnetworkplanrptgroup c,tblreportgroup e
    &wherecl_1
    &groupby_1
    union
    select a.yr_no
    &columname_2
    from authorized_utilization_s a,
    tblservicecategory b, tblnetworkplanrptgroup c,tblreportgroup e
    &wherecl_2
    &groupby_2
    &orderby
    ------after parameter form function
    FUNCTION afterpform
    RETURN BOOLEAN
    IS
    BEGIN
    IF :report_type = 'C' -- C represent Carrier Report
    THEN
    :columname_1 := ',a.qtr_no,b.rptservicecatid, sum(a.sum_svcschedulerate)/1000 planamount ';
    :wherecl_1 := ' where e.reportgroupid = c.reportgroupid '
    ||' and e.reportgroupid NOT IN (180,188,191,203,206,227,228, '
    ||' 229,230,231,232,233,234,235,236,237,238,365,366,550,644,645)'
    ||' and e.reportgroupclassid = '|| :p_reportgroupid
    ||' and a.planid = c.planid '
    ||' and a.yr_no = '||:p_year
    ||' and a.qtr_no <= '|| :p_quarter
    ||' and rtrim(a.servicecatid) = rtrim(b.servicecatid) ' ;
    :groupby_1 := ' group by a.yr_no,a.qtr_no,b.rptservicecatid ';
    :columname_2 := ', a.qtr_no,b.rptservicecatid, sum(a.sum_svcschedulerate)/1000 planamount';
    :wherecl_2 := ' where e.reportgroupid = c.reportgroupid '
    ||' and e.reportgroupid NOT IN (180,188,191,203,206,227,228, '
    ||' 229,230,231,232,233,234,235,236,237,238,365,366,550,644,645)'
    ||' and e.reportgroupclassid = '|| :p_reportgroupid
    ||' and a.planid = c.planid '
    ||' and a.yr_no = '||:p_year||' - 1 '
    ||' and a.qtr_no >= '||:p_quarter
    ||' and rtrim(a.servicecatid) = rtrim(b.servicecatid) ';
    :groupby_2 :=' group by a.yr_no,a.qtr_no,b.rptservicecatid ';
    :orderby :=' order by yr_no, qtr_no, rptservicecatid ' ;
    ELSIF :report_type = 'Q'
    THEN -- Q represent Quarter Report
    -- second condition will be here for 'Q'
    ELSIF :report_type = 'A'
    THEN -- A represent Annual Report
    --third condition will be here  for 'A'
    ELSE
    :tablename := '';
    :wherecl := '';
    END IF;
    RETURN (TRUE);
    END;
    ----final query for report type 'C' should looks like this and WHICH IS WORKING FINE FROM SQL*PLUS.
    select a.yr_no
    ,a.qtr_no,b.rptservicecatid, sum(a.sum_svcschedulerate)/1000 planamount
    from authorized_utilization_s a,
    tblservicecategory b, tblnetworkplanrptgroup c,tblreportgroup e
    where e.reportgroupid = c.reportgroupid
    and e.reportgroupid NOT IN (180,188,191,203,206,227,228,
    229,230,231,232,233,234,235,236,237,238,365,366,550,644,645)
    and e.reportgroupclassid = :p_reportgroupid
    and a.planid = c.planid
    and a.yr_no = :p_year
    and a.qtr_no <= :p_quarter
    and rtrim(a.servicecatid) = rtrim(b.servicecatid)
    group by a.yr_no,a.qtr_no,b.rptservicecatid
    union
    select a.yr_no
    , a.qtr_no,b.rptservicecatid, sum(a.sum_svcschedulerate)/1000 planamount
    from authorized_utilization_s a,
    tblservicecategory b, tblnetworkplanrptgroup c,tblreportgroup e
    where e.reportgroupid = c.reportgroupid
    and e.reportgroupid NOT IN (180,188,191,203,206,227,228,
    229,230,231,232,233,234,235,236,237,238,365,366,550,644,645)
    and e.reportgroupclassid = :p_reportgroupid
    and a.planid = c.planid
    and a.yr_no = :p_year - 1
    and a.qtr_no >= :p_quarter
    and rtrim(a.servicecatid) = rtrim(b.servicecatid)
    group by a.yr_no,a.qtr_no,b.rptservicecatid
    order by yr_no, qtr_no, rptservicecatid ;

    The problem is with initial values of your lexical parameters. They should be so that even before obtaining their desired values in the trigger, they would create syntactically correct SQL returning as many columns and of appropriate types, as you expect the final SQL to produce. You can not manipulate the number and types of columns using lexical parameters, just the real mapping to the table columns. The number, the type, and the order of selected columns should be defined by initial values of lexical parameters.

  • Interesting test for report compilation error

    I just tried to figure the compilation error I had and I ran
    into this :
    I delete all fields on my report so the report was empty.
    Then I added the backgroud color to the Report header session and
    ran the report, it worked fine. Then I add the Label on top of
    report header session then I got this error:
    Report compilation error. Error at (32, 20: null
    Is there a bug on the report or just my problem?
    Help!!

    Similar issue here. It happens with just a few reports. I can compile them on reports builder, but not using rwconverter.sh I am using 11.1.2.
    Any clues so far?

  • Report compilation error. Error at (203, 20: null

    Help. I'm getting this error on a report that used to work
    just fine. Here's the stack trace info... Any ideas what this error
    means?
    coldfusion.runtime.report.Report$ReportCompilationException:
    Report compilation error. Error at (203, 20: null
    at
    coldfusion.runtime.report.Report.compileXml(Report.java:580)
    at
    coldfusion.runtime.report.Report._compileReport(Report.java:181)
    at
    coldfusion.runtime.report.Report.compileReport(Report.java:124)
    at
    coldfusion.runtime.report.Report.runReport(Report.java:235)
    at
    coldfusion.filter.ComponentFilter.invoke(ComponentFilter.java:96)
    at
    coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:225)
    at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
    at
    coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:69)
    at
    coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
    at
    coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
    at
    coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
    at
    coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
    at coldfusion.xml.rpc.CFCServlet.invoke(CFCServlet.java:106)
    at coldfusion.xml.rpc.CFCServlet.doGet(CFCServlet.java:157)
    at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at
    org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327)
    at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at
    coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
    at
    jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
    at
    jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at
    jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
    at
    jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:541)
    at
    jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
    at
    jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:318)
    at
    jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:426)
    at
    jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:264)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

    I wonder, if it's because our test site is http and our live
    site is https.
    Is that why it can't connect to the RDS server?
    I don't think http or https matters. The key is to get your
    production server configured as an RDS server in Report Builder.
    To do so, open Report Builder. Click on the
    Edit menu and then on
    Configure RDS Servers. Click on the "+" sign or,
    alternatively, select the option to
    Add RDS Server. Enter the connection details of your
    production server. You would of course have modified the settings
    on your production server beforehand to accept a connection from
    your test server.

  • Reports compilation errors (6i to 9i)

    Hello,
    When migrating a report from Oracle 6i to Oracle 9i, I get a number of errors.
    Here are 2 sample functions and the associated errors at compile time:
    function AfterReports return boolean is
    begin
    /* Delete referenced files */
    update lot
    set ref_file = null;
    ref_filenum = null;
    where co = :p_co
    and (lot.surveyor = :p_surveyor or :p_surveyor is null)
    and ref_filenum = :p_project;
    /* Flag the project to indicate that work order as been printed */
    update thproject
    set prtwrkord = 'Y'
    where co = :p_co
    and nvl(prtwrkord,'N') = 'N'
    and project = :p_project;
    return (TRUE);
    end;
    When trying to compile this function under Reports Oracle 9i, I get the following errors:
    Error 201 at line 4, column 11
    identifier 'LOT' must be declared
    Error 0 at line 4, column 4
    SQL statement ignored
    Error 201 at line 12, column 9
    identifier 'TBPROJECT' must be declared
    Error 0 at line 12, column 2
    SQL Statement ignored.
    =====
    function BeforeReport return boolean is
    trouver BOOLEAN;
    CURSOR CURS is select c c.co
    from company c, userco u
    where c.co = u.co
    and u.userid = user;
    begin
    open curs;
    fetch curs into :p.co
    trouver := curs%FOUND;
    close curs;
    return (trouver);
    end;
    Error 201 at line 4, column 12
    identifier 'COMPANY' must be declared
    Error 0 at line 3, column 20
    SQL Statement ignored.
    =====
    1) How can I go about resolving these compilation errors and generate the corresponding *.REP file ?
    Paolo

    At first glance it seems to me that you are missing a comma between ref_file and ref_filenum as below
    /* Delete referenced files */
    update lot
    set ref_file = null;
    ref_filenum = null;
    where co = :p_co
    and (lot.surveyor = :p_surveyor or :p_surveyor is null)
    and ref_filenum = :p_project;
    should be:
    /* Delete referenced files */
    update lot
    set ref_file = null,
    ref_filenum = null;
    where co = :p_co
    and (lot.surveyor = :p_surveyor or :p_surveyor is null)
    and ref_filenum = :p_project;
    HTH

  • Batch PDF Reports raising error REP-3002: Error initializing printer.

    We are running Reports 6.0 in Windows NT 4.0. When run manually the PDF reports are able to see the PostScript Print Driver and generates PDF output. We have a batch job on the NT that gets kicked off from the Mainframe via XPATH, which spawns multiple report processes as needed to run the PDF reports. We get the error "REP-3002: Error initializing printer." under this scenario.
    Any help to resolve this will be appreciated.
    Thanks,
    Babu

    Hi,
    i've changed to use RUN_REPORT_OBJECT as your advice and followed the instructions in "Oracle Reports Remote Printing Utility - An Oracle Technical White Paper December 2000". i tested orarrp by created the HTML file follow the steps in page 5 of the paper, it worked.
    then i modified existed form, set report object property like this :
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE, BATCH);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE, FILE);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESNAME,'test.rrpa');
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,'Rep60_NTSERVER2');
    note : i'm not sure that i set the right value for REPORT_SERVER property, i got this value from TNSNAMES.ORA file.
    then call the report with this statement :
    :GLOBAL.ReportHandle := RUN_REPORT_OBJECT(report_id);
    it showed the same error message :
    "REP-3002 Error initializing printer. Please make sure a printer is installed."
    i think i set something wrong, but i don't know where. could you help me ?
    Hunsa

  • Report Server Error REP-1:

    Hi,
    I am trying to run a oracle report from an oracle form. The very first time when I try to run the report, I get a peculiar error, the report server just says: Error REP-1: . Nothing specific. From the second time onwards its working perfect. Not sure what's going on here. Any insight appreciated.
    Thanks.

    You did not mention your OS and Forms/Reports version, anyhow, you should take a look at the following metalink notes:
    112124.1 - REP-0001 'Unable to Find Reports Builder Message File' using Report Server
    105048.1 - REP-0001 Running a Report on the Web
    832689.1 - Distributing A Report With Attached Static File Fails With REP-0001: Unable to find the Report Builder Message File
    Edited by: Rodolfo Ferrari on Jul 17, 2009 10:51 PM

  • Purchase Order Print Report Compilation Error

    Hi,
    While compiling the report in Reports Builder Purchase Order Print Report , we get the following error:
    identifier GET_PRECISION must be declared.
    Where as this is a seeded function inbuild in the Program Units.
    Also while compiling on server we get the error.
    Cannot convert rdf to rep.
    Thanks,
    Angelica.

    Couldn't find how to copy the PO layout over using copy express.
    I did compare the RDOC fields for POR20002 in both databases and they are Identical. 
    In Crystal Reports, I did a formula search for N_Decimal_Places and it found nothing.  Then I did a search for 'length' in all formulas and it finds length in N_Decimal_Places.  When I double click on N_Decimal_Places it clears the screen and never shows the formula. This happens in both layouts for my test database and SBODemoUS.
    Again, SBODemoUS works correctly and AAA_TEST give the error.

  • Reports Builder Error - REP 1070 Error while opening or saving document

    Hi,
    I tried opening an rdf file in Reports Builder 10g and 6i. I get the REP 1070 error.
    Kindly suggest a solution for this.
    Thanks,
    Anand

    Hi,
    Edit the system registry and assign REPORTS_PATH then your problem will be cleared.

  • Aging 7 Buckets Report ARXAGMW  error REP-1212 Object Body is not enclosed

    Hi
    I am customising standard AR Aging 7 buckets report by account(ARXAGMW).
    I just need to add 2 fields,That i have added successfully.
    But the report output format is not printing properly.
    I mean if there are 4 columns custname,custno,endcustname,endcustno.
    it is printing the output as
    custname custno endcustname endcustno
    abc communications inc 1234 abc communicatio 1234
    xyz communications inc 5678 pqr communicatio 9657
    but i want to print with full name(endcustname) as how it is printing for custname.
    So itried to increase the report width to 300 and try to run the report,but i am getting the error.
    I tried with standard report also by increasing the width but same error.
    Could anyone please tell me when we increase report width what else i should change.
    The error is
    REP-1212: Object 'Body' is not fully enclosed by its enclosing object 'P_REPORTING_ENTITY_NAME'.
    Thanks,
    Malla

    Hi,
    "Not allowing" means? Do you get any error?
    Is this the same style used by this concurrent program? I assume that the report type is text.
    If the report type is bitmap, size the page size in the "Execution Options" field as "PAGESIZE= <width>x<height>" and submit the report again.
    Note: 297522.1 - How to investigate printing issues and work towards its resolution ?
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=297522.1
    Regards,
    Hussein

  • Report compile error

    hi,
    we are using the old version report for some purpose.
    when i compile the report in report builder 3.0 . the error is coming.
    "the program has illegal performed function "
    "R30DES32 CAUSED AN INVALID PAGE FAULT"
    pls can u provide solution
    Regards,
    Maran

    I posted the problem on cfreport.org and Dean was very prompt
    in his response. Please read below
    http://www.cfreport.org is the
    web site.
    It seems that sometimes the updater does not remove a file
    from the coldfusion lib directory that it needs to. In the
    [cfinstalldir]\lib directory, you only need one version of
    commons-digester (specifically commons-digester-1.7.jar). If there
    is another version in there (1.3 I think, but anything earlier than
    1.7), you need to remove it
    # Posted By Dean Harmon | 7/3/06 1:28 PM
    I have tested this and it does work. You have to stop CF
    application service to delete the 1.3 file (sure enough it was in
    use) and then restart after delete the file. All is fine
    then.

  • ORACLE 6i-Errors REP-0736 / REP-1247-Report works with a different name

    Hi everybody,
    I have a problem with a Report developed in 6i after I compiled it with Linux.
    When I run report I had errors REP-0736 and REP-1247. But I didn't had any problem during compilation.
    The fact is.............if I changed report name (just the name, without any other modification), compiled and run, it works perfectly. Just changing the name!
    Obviously there is some place where the report name is corrupt, but I don't have the knowledge to find it.
    Please, if somebody can give me a clue to solve this problem, I would appreciate a lot. I'm lost!
    Thanks

    **What do you mean exactly by changing the name? The file name or the Name property in Report Builder?**
    **What are the exact version numbers (Reports and Linux)? Did you make sure the combination is certified?**
    **Did you create the report in Windows and transfer it to Linux? How did you do that? E.g. if you ftp it, make sure you use the binary format.**
    **Are you compiling and running with the same user (Windows/Linux)?**
    **Are the database versions the same (still assuming you develop in Windows development and run it later on Linux production)?**
    Thanks for answer!
    1. I mean by changing the Name property and the file name. Both.
    2. The combination of versiones numbers is certified. This is the first report with this kind of problem. I've been compiling without any trouble until now. And even now, the only report with compilation problems is this.
    Report version is 6.0.8.27.0
    Linux version is Suse 9
    3. I modify the report in Windows and transfer it to Linux. We use to copy the .RDF file to the directory where we always compile the objects to Linux.
    4. Yes, I'm compiling with the same user
    5. The database versiones are the same. You're correct, we develop in Windows and run it on Linux (production).

Maybe you are looking for

  • HELP NEEDED WITH THE ERRORS

    Hi all we are a MDMP code page system and we upgraded to ECC 6.0. We fixed all our unicode errors by checking the unicode flag in the attributes  we activated the program without any syntax errors or warnings. Now when we go back to UCCHECK, it still

  • How to get back Queue name in SMQ1 when Data source is present in RSA7

    Hello Friends,   Its very urgent issue.Please provide me your valuable solutions. 1) I have Queue name in SMQ1 and Data source name in RSA7 are present for particular Data source in CRM source system. I deleted Queues in SMQ1 and they present in RSA7

  • Local Security Policies not getting applied

    Hi, We have a Windows 2012 Server which is added to Domain. We have requirement for applying some security settings on the servers. We do not want to use Group Policies for the same as we have different server in different OU's. We have applied the p

  • Java for Introduction to Programming

    I know this is a Java forum, but I would like your opinions on this. Does Java make a good language for an Introduction to Programming course at a university? I know some do so. Is it good to try to teach programming concepts using an object-oriented

  • Symbol characters in flash

    I am developing a flash movie for a college professor who uses a lot of equations in her presentations. I was wondering if there was an easy way to add greek letters and other math symbols to a normal flash text box, or if it was possible to do anyth