Oracle Reports Error

Hi All,
I am having following 3 errors when I am trying to generate Oracle Reports. I am using Oracle10g Developers Suite.
REP-34551: KEYIN is deprecated. See help for more information.
REP-34551: KEYOUT is deprecated. See help for more information.
REP-34551: ERRFILE is deprecated. See help for more information.
I would be grateful if any one come with solution of this.
Thanks

Is your report being called by a URL? If so, look at the URL to see if those parameters are being passed. If it is not in the cgicmd.dat file, then they must be passed via the url or they have to be incorporated in the report as parameters with default values. What is calling these reports? a hyperlink? Oracle Applicatsions or Financials?

Similar Messages

  • Adding a field to an sql statement in Oracle Reports error ORA-00933

    We have been requested to add a field that already exists in the table referred to by the sql statement in Oracle Reports Builder. The report was set up by a consultant about 3 yrs ago and we don't really have much skill in this area. What is happening when I try to modify the SQL statement, either adding a field or deleting a field to the SELECT statement, causes an error message preventing the statement from being saved. The only way out of the error message is to click Cancel. The error message is
    ORA-00933:SQL command not properly ended
    ORDER BY Program ==> NAME
    Even adding or deleting a space anywhere in the SQL statement causes the error (not adding any new fields). A coworker found that if we comment out the ORDER BY, the statement will accept the new field in the SELECT section, however then we lose the order by functionality. I would like to add one additional field before the FROM. Not sure if any additional data are needed. Thank you.
    SELECT p.person_uid PIDM_KEY, p.id_number ID,
                   p.full_name_lfmi name,            
                    p.BIRTH_DATE, p.GENDER Sex,
                    Decode(a.residency,'D',p.Primary_ethnicity,'F')  Ethn,
                    a.academic_period TERM,        
                    CASE WHEN :p_group_by = 'PROGRAM' THEN a.program
                                 ELSE ' '
                    END AS Program,
                    a.COLLEGE, a.degree, a.major, ' ' rule,
                    a.STUDENT_POPULATION,a.STUDENT_LEVEL,    a.application_status Status,  a.application_status_date app_sts_dte,
                    ad.decision_date1 Last_Dec_Date,
                    ad.decision1||' '||ad.decision2||' '|| ad.decision3||' '|| ad.decision4||' '|| ad.decision5 Decisions,
                    /*  Deposit Date uses the last term entered in :p_term parameter string */
                    (SELECT MAX(deposit_effective_date) FROM usf_as_deposit WHERE account_uid = a.person_uid &term_clause group by account_uid)   AS "DEPOSIT DATE",     
                    ph.phone as PHONE,
                    CASE WHEN PS.FIRST_CONTACT IN ('NET','PAP','COM','COP') THEN PS.First_Contact
                     ELSE CASE WHEN ps.latest_contact IN ('NET','PAP','COM','COP') THEN PS.Latest_Contact
                                ELSE '  '
                                END
                    END AS FIRST_CONTACT,
                    DECODE(:p_address,'Y',REPLACE(adr.street1||' '||adr.street2||' '||adr.street3||' '||adr.city||','||adr.state||' '||adr.nation||' '||adr.zip,'  ',' '),' ') as  address, adr.nation, adr.state,
                    goremal_email_address email, a.residency, a.application_date, p.primary_ethnicity, c.cohort
    FROM MST_ADMISSIONS_APPLICATION A,
               MST_PERSON p,mst_pre_student PS,  Admissions_Cohort c, usf_v_phone_pr_ma ph,
               MST_admissions_decision_slot AD, usf_v_email, usf_v_address_dr_lr_ma_pr adr
    WHERE a.PERSON_UID = p.person_uid
            AND a.curriculum_priority  = 1
            AND a.person_uid = ps.person_uid
           AND a.person_uid = ad.person_Uid(+)
           AND a.person_uid = goremal_pidm(+)
           AND a.person_uid = adr.pidm(+)
           AND a.person_uid = ph.pidm(+)
           AND ph.rnum(+) = 1
           AND a.person_uid = c.person_uid(+)
           AND a.academic_period = c.academic_period(+)
      &Where_Clause
           /*    TAKE OUT FOLLOWING LINE AFTER DATA IS CLEANED UP  */
            AND NOT(p.id_number = '00000000'   OR SUBSTR(p.id_number,1,1) = 'B'  OR UPPER(p.full_name_lfmi)  LIKE '%TESTING%')
           AND  a.application_status_date >= NVL(:p_as_of_date,sysdate-8000)
           AND a.academic_period = ad.academic_period(+)
            AND a.application_number = ad.application_number(+)
            AND a.degree <> 'ND'    /*   AND a.college <> 'LW'                         --  Does not need non-degree and law students    */
           &Cohort_Clause 
    ORDER BY Program  &ORDER_CLAUSE

    Hi Denis,
    I tried your suggestion. The good thing is that adding the comma allowed me to be able to add a.campus to the select statement, unfortunately, another error message happened.
    ORA-00936: missing expression SELECT p . person_uid PIDM_KEY ,
    p . id_number , p . full_name_lfmi name , p . BIRTH_DATE , p . GENDER Sex ,
    Decode ( a . residency , 'D' , p . Primary_Ethnicity , 'F' ) Ethn , a . academic_period TERM ,
    CASE WHEN : P_group_by = 'PROGRAM THEN a I started over and tried only putting in the comma and get the same message even though I didn't add campus. After that, removed the comma which led to the ORA-00933 error message. So once again, I had to close the file without saving, in order for the report to run at all.

  • Oracle Report Error (string buffer too small) in Portal

    Hi,
    I have registered an oracle report (.rdf) with portal which works fine outside in Reports Builder, but when I try to run it in Portal it keeps throwing this error:
    SQL-6502: ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    ORA-06512: at "PORTAL.WWV_RW_USR", line 444
    ORA-06512: at "PORTAL.WWV_RW_USR", line 923
    ORA-06512: at line 1
    Anyone know what needs to be done to fix this?
    Thanks

    Sean:
    Thank you very much for wading through my post.
    >"if (NIerror = DAQmxCfgInputBuffer(h, numSamples*4))"
    >I would leave this line out. DAQmx should create an input buffer automatically
    >based on the number of channels and number of samples per channel.
    Yeah- I put that in trying to fix the problem. The error message doesn't say *which* buffer is too small
    >If you just call the DAQmxReadDigitalLines() function with "numSampsPerChan" set to -1,
    >DAQmx will wait until all samples are acquired before performing the read.
    I'm trying to avoid the wait. That's why I'm trying to figure out how many samples are ready.
    I suppose I can try numSampsPerChan=-1, set a short timeout and check for the timeout error.
    >If this does not help, please send me a small section of code that reproduces that behavior,
    >and I will try running it on my machine.
    I will try modifying one of the examples to do what I'm trying to do.
    Again, Thank you!
    John Weeks
    WaveMetrics, Inc.
    Phone (503) 620-3001
    Fax (503) 620-6754
    www.wavemetrics.com

  • Oracle reports error--Very Urgent

    Hi
    I have this oracle report which calls 14 other reports and runs them
    the main report I run via a link.
    However I get this engine null crashed error or else Engine rwEng-0 is destroyed due to timeout error.
    Could someone plz tell me urgently how can this be resolved.This is on Oracle 9i.
    Thanks
    Message was edited by:
    user497328

    You do know there is a Reports forum? You may find better luck Reports.
    Which version of Reports? Which version of App Server? Does this report ever run? Have you tried it with a subset of the called reports? Is it one particular report that causes the problem?
    Cheers, APC

  • Oracle Report Error:

    Good morning, All:
    I am having to do a quick turn and burn on the use of the Oracle Report Bulder 10g with no prior experience. I am a Crystal Reports and somewhat Cosnos user. I have found the Oracle Report Builder to be pretty easy application to learn and use for fast wizard based reports.
    My problem is this:
    Program ==>Run Web Layout
    And within a Internet Exployer 7 window I get the following:
    500 Internal Server Error
    OracleJSP: oracle.jsp.provider.JspCompileException:
    Errors compiling:C:\Documents and Settings\Administrator\Local Settings\Temp\docroot\3003\default\defaultWebApp\persistence\_pages\\_MODULE1001603516.java
    javac: invalid flag: C:\\Documents
    Usage: javac 
    where possible options include:
      -g                        Generate all debugging info
      -g:none                   Generate no debugging info
      -g:{lines,vars,source}    Generate only some debugging info
      -nowarn                   Generate no warnings
      -verbose                  Output messages about what the compiler is doing
      -deprecation              Output source locations where deprecated APIs are used
      -classpath          Specify where to find user class files
      -sourcepath         Specify where to find input source files
      -bootclasspath      Override location of bootstrap class files
      -extdirs            Override location of installed extensions
      -d             Specify where to place generated class files
      -encoding       Specify character encoding used by source files
      -source          Provide source compatibility with specified release
      -target          Generate class files for specific VM version
      -help                     Print a synopsis of standard optionsPlease advise and redirect.
    Preston@large

    ORA-06508 PL/SQL: could not find program unit being called
    Cause: An attempt was made to call a stored program that could not be found. The program may have been dropped or incompatibly modified, or have compiled with errors.
    Action: Check that all referenced programs, including their package bodies, exist and are compatible.
    Ignore my previous suggestion (removing objects), check the following:
    Is there any library attached to this report (pll/plx)?
    <pre>
    1. If yes, then
    -check if library exists on the linux server and preferably in the same folder with reports
    -recompile the library
    -open rdf file and remove the library
    -attach the library again, and make sure you remove the path
    -copy the library and report file on linux and run the report
    2. If no (no library is attached), then
    -are there any database package/function/procedure are being used in the report?
    -if yes, then
    -check the status of that package/function/procedure
    </pre>
    Hope this helps.
    Edited by: fs on Nov 24, 2009 1:21 PM

  • Custom Oracle Report errored with Enter Password:  REP-0004: Warning: Unable to open user preference file. REP-0300: ORACLE error occurred. REP-0069: Internal error REP-57054: In-process job terminated:Terminated with error:  REP-300: ORACLE error occurre

    Hi Gurus
    We have created a custom oracle report and concurrent program and when we ran the concurrent program it is error out with below error
    Enter Password:
    REP-0004: Warning: Unable to open user preference file.
    REP-0300: ORACLE error occurred.
    REP-0069: Internal error
    REP-57054: In-process job terminated:Terminated with error:
    REP-300: ORACLE error occurred.
    Can any one help us
    Thanks in advance.
    Kumar

    Please see
    REP-0004 Warning - Unable to Open User Preference File. (Doc ID 26014.1)
    ApPsMaStI
    sharing is Caring

  • URGENT - Oracle Reports errors

    Hi All,
    I have two serious problems which are giving me a massive headache. We have a forms 10g application which calls Reports 10.1.2.0.2 reports in a pdf format.
    1) When reports are called by say User A, the reports generated in the browser are for say User B who is in another location entirely. User A has to log out and retry several times before he gets the correct report generated for him/her.
    2) The report Job IDs returned on some occasions are higher than the highest Job ID shown/displayed in the Reports Job Queue when viewed via Enterprise Manager. As a result the user gets an error REP-52251 followed by a REP-56033. This is so rampant and the intriguing thing about it all is that it is sporadic. One moment all seems fine and then all hell breaks loose. I have tried just about everything. I am at a loss as to how the Job ID retrieval call in the calling Oracle form will return a JOB ID which is HIGHER than the last JOB ID in the Reports Server Queue.
    Any help will be much appreciated.
    Thanks

    Hello,
    There is a know problem in this configuration (2 in-process reports server are started)
    The easiest solution is to "convert" the in-process reports server into a standalone reports server .
    Step 1 : Use addNewServerTarget.sh (UNIX) or addNewServerTarget.bat (Windows) to add a Reports Server target to targets.xml and opmn.xml.
    (use the same name than the "in-process reports server")
    Step 2 : edit the file rwservlet.properties and modify the line :
    SERVER_IN_PROCESS=YES
    into
    SERVER_IN_PROCESS=NO
    Step 3 : Then, restart OPMN for the change to take effect.
    Regards

  • Oracle Report errors

    Hi there.
    I hope someone can help me out here. I have created a report that has a User Parameter that accepts ID's in a string seperated by commas. Now depending on what ID's the user sends, the data is going to be different. ALso the amount of delimited ID's can vary. My problem is that whenever I send too many ID's, I get the following error:
    REP-0065: Virtual Memory System error.
    REP-0200: Cannot allocate enough memory.
    cavaa 22
    It's funny because I am only sending 150-200 ID's to generate the error. That only 150-200 database records?!?!?!?!?!? I don't get it.
    Can anyone help me

    Problem Description:
    You have developed a report that is based upon a local ref cursor query....
    when running the report you receive the following error:
    rep-0065 virtual memory error
    rep-0200 cannot allocate enough memory
    CAVAA22
    Note: If using a stored procedure to implement the ref cursor, you may be
    running into a different problem as documented in the following bugs:
    bug:1258467
    bug:748083
    There may be two scenarios under which you encounter the above mentioned
    errors.
    Scenario 1
    Your open cursor statement does not have the same datatype "order" as defined
    in the record type definition.
    Scenario 2
    Your record type definition does not match the datatype of the column in the
    database that you are selecting.
    Solution Description:
    Scenario 1
    Your open cursor statement should have the same datatype "order" as defined
    in the record type definition.
    Scenario 2
    Your record type definition should match the datatype of the column in the
    database that you are selecting.
    Solution Explanation:
    eg> Suppose you have declared the two types in the working example that
    follows:
    PACKAGE kbalasub IS
    type kb_type is record (a number, b varchar2(50));
    type kb_ref_type is ref cursor return kb_type ;
    END;
    Then created a function to return a ref cursor as follows:
    FUNCTION my_ref_cursor RETURN kbalasub.kb_ref_type IS
    kb_ref_cur kbalasub.kb_ref_type;
    BEGIN
    open kb_ref_cur for select empno, ename from emp;
    return kb_ref_cur;
    END;
    Scenario 1
    Notice that the ref cursor type was originally declared with the return values
    as, first a number, and then a varchar2(50).
    If the cursor had been opened with the datatypes accidentally reversed like:
    open kb_ref_cur for select ename, empno from emp;
    This will cause the above mentioned error.
    Scenario 2
    If the record type was defined like:
    type kb_type is record (a varchar2(50), b varchar2(50));
    Notice that the record variable "a" has been declared with a datatype that is
    not consistent with the datatype of the database column. (It should have been
    a number - assuming empno is a number)
    This scenario will also cause the above mentioned error.

  • Report error problem

    Hi,
    could anyone help me with Oracle Reports error please?
    When I run Oracle Report Request from EBS I got:
    REP-0300: ORACLE error occurred.
    REP-0069: Internal error
    REP-57054: In-process job terminated:Terminated with error:
    REP-300: ORACLE error occurred.
    It was working ok for now, but for 1 report (about I know now) it gets error.
    It is run with args like:
    P_QUOTE_HEADER_ID='50509'
    P_QUOTE_HEADER_COMP_ID='50498'
    P_QUOTE_HEADER_PROD_ID='49832'
    P_ADJ_LINE_ID='3380471'
    P_TASK_ID='28075'
    P_CONTEXT='Default'
    P_TOTAL_NRE='0.0'
    P_ORG_INV_ID='138'
    and it crashes :/
    But when I use Oracle Reports Builder to manually generate xml data it works fine
    Other reports work ok, and arguments are similar - like:
    P_QUOTE_HEADER_ID='49778'
    P_QUOTE_HEADER_COMP_ID='49777'
    P_QUOTE_HEADER_PROD_ID='49256'
    P_ADJ_LINE_ID='3364766'
    P_TASK_ID='27875'
    P_CONTEXT='Default'
    P_TOTAL_NRE='0.0'
    P_ORG_INV_ID='138'
    (and then report is generated correctly)
    I don't have a clue what could be a problem (as it works in Reports Builder and similar reports work fine) - if anyone could help or have an idea what could be a source of my problem?

    Last changes are from begining of December - and all reports were generated fine, but now I got information about this one which has error.
    log:
    Quoting: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XX_QOT_PRINTQUOTE module: FID: Print Quote
    Current system time is 09-JAN-2013 13:26:25
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    P_QUOTE_HEADER_ID='50509'
    P_QUOTE_HEADER_COMP_ID='50498'
    P_QUOTE_HEADER_PROD_ID='49832'
    P_ADJ_LINE_ID='3380471'
    P_TASK_ID='28075'
    P_CONTEXT='Default'
    P_ORG_INV_ID='138'
    -- Start of Reports Command --
    /ORACLE/inst/apps/POLIGON_devappl/ora/10.1.2/bin/appsrwrun.sh
    P_CONC_REQUEST_ID=34404257
    P_QUOTE_HEADER_ID='50509'
    P_QUOTE_HEADER_COMP_ID='50498'
    P_QUOTE_HEADER_PROD_ID='49832'
    P_ADJ_LINE_ID='3380471'
    P_TASK_ID='28075'
    P_CONTEXT='Default'
    P_ORG_INV_ID='138'
    report=/ORACLE/apps/apps_st/appl/qot/12.0.0/reports/US/XX_QOT_PRINTQUOTE.rdf
    batch=yes
    destype=file
    desname=/ORACLE/inst/apps/POLIGON_devappl/logs/appl/conc/out/o34404257.out
    desformat=XML
    -- End of Reports Command --
    Request language is :
    AMERICAN
    Request territory is :
    AMERICA
    Forcing NLS_NUMERIC_CHARACTERS to: '.,' for XDO processing
    Previous NLS_LANG Environment Variable was :
    AMERICAN_AMERICA.EE8MSWIN1250
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    AMERICAN_AMERICA.EE8MSWIN1250
    Enter Password:
    REP-0300: ORACLE error occurred.
    REP-0069: Internal error
    REP-57054: In-process job terminated:Terminated with error:
    REP-300: ORACLE error occurred.
    Report Builder: Release 10.1.2.3.0 - Production on Wed Jan 9 13:26:27 2013
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Reset original NLS_LANG in environment as :
    AMERICAN_AMERICA.EE8MSWIN1250
    Program exited with status 1
    Concurrent Manager encountered an error while running Oracle*Report for your concurrent request 34404257.
    Review your concurrent request log and/or report output file for more detailed information.
    Executing request completion options...
    Output file size:
    0
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 09-JAN-2013 13:26:29
    ---------------------------------------------------------------------------

  • Oracle report use 90% of CUP

    We continue see this oracle report errors recorded in NT event log.
    "The script started from the URL'/r30cgi32.exe' has not responsed within the configured timeout period. The HTTP server is terminating the script."
    When those error occurred, the CPU utilization went up to over 90%. The data for the generating the report is getting from the SQL server 7.0.
    Thanks for any suggestions in advance.
    Wade
    null

    Go to Reports Home page. There's tons of usefull information there.
    http://www.oracle.com/technology/products/reports/index.html
    What could be interesting could be to check the "Oracle by Example". A link if found on that page! As first step try the "Creating a Report Using the Report Wizard". On the page there's also a link to "Getting Started with Oracle Reports" (check this first).
    For developement you should install Developer Suite 10g (9.0.4), and for deployment you'll need Application Server 10g (9.0.4). On the page above, a link is provided top left ("Downloads").
    Regards,
    Martin Malmstrom

  • Oracle report function error..........

    Dear
    i am using oracle report 6i and database 10g. my function is below---
    function CF_ITEMFormula return VARCHAR2 is
    v_item varchar2(30);
    V_1 VARCHAR2(20);
    begin
              SELECT      DISTINCT B.ITEM_CODE,(SELECT WE.WIP_ENTITY_NAME FROM APPS.WIP_ENTITIES WE WHERE WE.WIP_ENTITY_ID=B.CHILD_WIP_ID)
              INTO           V_ITEM ,v_1
              FROM           WEBSUPP.ELE_WIP_EXPLOED_DTL A,
                                  WEBSUPP.ELE_WIP_EXPLOED_DTL B
              WHERE      B.AUTO_NUMBER = 1
              AND           B.CHILD_WIP_ID IS NOT NULL
              AND           B.CHILD_WIP_ID = A.PRIMARY_WIP_ID
              AND           A.ITEM_CODE = :ITEM_CODE_1;
    IF :ITEM_CODE1 IS NULL THEN
         RETURN V_ITEM;
    ELSE
         RETURN :ITEM_CODE1;
    END IF;
    EXCEPTION
         WHEN OTHERS THEN RETURN :ITEM_CODE1;      
    end;
    but it gives following error...
    Encounter the symbol SELECT when expecting....
    pls solve...
    PS

    Try this also:
    FUNCTION cf_itemformula RETURN VARCHAR2 IS
       v_item varchar2(30);
       v_1 VARCHAR2(20);
    begin
       SELECT DISTINCT B.ITEM_CODE,WE.WIP_ENTITY_NAME
       INTO v_item ,v_1
       FROM WEBSUPP.ELE_WIP_EXPLOED_DTL A,
       WEBSUPP.ELE_WIP_EXPLOED_DTL B,
       APPS.WIP_ENTITIES WE
       WHERE B.AUTO_NUMBER = 1
       AND B.CHILD_WIP_ID IS NOT NULL
       AND B.CHILD_WIP_ID = A.PRIMARY_WIP_ID
       AND NVL(A.ITEM_CODE,'*') = NVL(:ITEM_CODE_1,'*')
       AND WE.WIP_ENTITY_ID=B.CHILD_WIP_ID
       AND ROWNUM = 1;
       IF :ITEM_CODE1 IS NULL
       THEN
          RETURN v_item;
       ELSE
          RETURN :ITEM_CODE1;
       END IF;
    EXCEPTION
       WHEN OTHERS THEN
          RETURN :ITEM_CODE1;
    END;Also I notice your "v_1" variable is not used at all except to receive the entity_name, but other than that is not being used, if it is not used then remove it as follows:
    FUNCTION cf_itemformula RETURN VARCHAR2 IS
       v_item varchar2(30);
    begin
       SELECT DISTINCT B.ITEM_CODE
       INTO v_item
       FROM WEBSUPP.ELE_WIP_EXPLOED_DTL A,
       WEBSUPP.ELE_WIP_EXPLOED_DTL B
       WHERE B.AUTO_NUMBER = 1
       AND B.CHILD_WIP_ID IS NOT NULL
       AND B.CHILD_WIP_ID = A.PRIMARY_WIP_ID
       AND NVL(A.ITEM_CODE,'*') = NVL(:ITEM_CODE_1,'*')
       AND ROWNUM = 1;
       IF :ITEM_CODE1 IS NULL
       THEN
          RETURN v_item;
       ELSE
          RETURN :ITEM_CODE1;
       END IF;
    EXCEPTION
       WHEN OTHERS THEN
          RETURN :ITEM_CODE1;
    END;Let me know if this helps.
    Thanks!

  • Oracle Reports - Multi lingual pdf - jvm error

    Hi all,
    We are trying to develop a multilingual pdf report in oracle reports 9i. When we do font subsetting or embedding we get the error:
    stackpointer=3bb03200
    JVMXM004: JVM is performing abort shutdown sequence
    this error is consistent for font embedding, but for subsetting this error comes randomly. We are unable to find out any pattern of the error. Can any one pls give us an update on this.

    1) Please try in latest patchset 9.0.2.3
    2) There is recently a very similar bug logged on the issue by a customer ( do not know whether it is by you :-))
    BUG 3880762 - REPORTS ENGINE CRASHES WHEN GENERATING LARGE PDF SUBSETTING OUTPUT
    (Not yet fixed, this bug in initial description phase)
    (It gives same error)
    If this is critical to you then can try getting in touch with Support to escalate the priority of the bug.
    (First confirm with support whether it is the same issue)
    [    All Docs for all versions    ]
    http://otn.oracle.com/documentation/reports.html
    [     Publishing reports to web  - 10G  ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [   Building reports  - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [   Forms Reports Integration whitepaper  9i ]
    http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    ---------------------------------------------------------------------------------

  • Error in running oracle report on APPS due to print style

    Hi
    i have an oracle report which displays about 550 rows of data...When i try to run it with oracle apps i selelect landwide but i get an error as the defined style can not print that much amount of rows.Is there any toher style which prints this many amount of rows or i have to create a new print style.
    thanks
    isha
    Edited by: 791666 on Aug 30, 2010 8:33 AM

    Please tell us about your product, version and Application Server type. You may also want to note that Oracle Apps is different from Oracle Application Server .
    Also intriguing is the error you report. Where and what exact error do you get? Error codes/messages need to be reported exactly (not paraphrased).
    Was that in displaying the info or in printing it to a printer?

  • Error in job execution in oracle reports

    Hi,
    The end user is getting the following error when executing a job in Oracle reports.
    " RWCGI GET JOB OUTPUT
    Cannot get output of Job ID 4 you requested on December ,08 2008 , 11:35:18
    Job is not done yet .Try again later"
    Can you please help .PLEASE !!!

    Hi
    Metalink is reporting some similar errors, please see that:
    Cause
    SSO turned on for one component only, either Forms or Reports.
    This problem has been reported and is documented in an unpublished bug.
    Solution
    To take advantage of SSO, out-of-the-box, the SINGLESIGNON parameter in the
    rwservlet configuration file (rwservlet.properties) is set to YES to indicate
    that you will use single sign-on to authenticate users. You may change this to
    NO if you choose to not use single sign-on. If you choose NO, the Reports
    Server will use its own authentication mechanism to authenticate users (i.e.,
    the mechanism used in Reports6i). The rwservlet configuration file is usually
    found in the ORACLE_HOME\reports\conf directory. This value is usually
    commented out after installation however the default value is YES.
    This is the expected behavior. For the Forms/Reports integration, Forms will send
    to Reports thecurrent SSO user. However, with this particular configuration, you
    still log into SSO to run Reports. Thus, nexttime you run the form, you are logged
    into SSO and thus things work because Forms passes thatSSO user info to Reports.
    The way to not have the report run the 2nd time would be to log off of SSO when the first
    form was exited, but that defeats the purpose of SSO in the first place!
    So enable for Forms and Reports SSO or disable SSO for both.
    Read more on Doc ID:      Note:289666.1
    Subject:      REP-52251: Cannot Get Output Of Job Id
    Doc ID:      Note:289666.1
    Subject:      Understanding Reports Execution from Forms Under High Availability
    and
    Note 367887.1 - Rep-52251: Cannot Get Output Of Job Id You Requested, When Calling Reports From Forms

  • Concurrent Manager encountered an error while running Oracle*Report for you

    hi
    our team is running a report.but encountered
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    P_DELV_ID='8022'
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.US7ASCII
    Enter Password:
    REP-0069: Internal error
    REP-57054: In-process job terminated:Terminated with error:
    REP-1401: '': Fatal PL/SQL error occurred.
    Report Builder: Release 10.1.2.0.2 - Production on Mon Jun 21 11:26:16 2010
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    +---------------------------------------------------------------------------+
    Start of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    End of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    Program exited with status 1
    Concurrent Manager encountered an error while running Oracle*Report for your concurrent request 451508.
    Review your concurrent request log and/or report output file for more detailed information.
    +---------------------------------------------------------------------------+
    Executing request completion options...
    +------------- 1) PUBLISH -------------+
    Beginning post-processing of request 451508 on node DEMO at 21-JUN-2010 11:26:17.
    Post-processing of request 451508 failed at 21-JUN-2010 11:26:17 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    +--------------------------------------+
    Finished executing request completion options.
    +---------------------------------------------------------------------------+
    Concurrent request completed
    Current system time is 21-JUN-2010 11:26:17
    +---------------------------------------------------------------------------+how to solve it?when i am searching in this error in cmctl log there is nothing for it.
    i have lnched a SR on this they told to run it by appsrwrun.sh.how to run this report by appsrwrun.sh??
    rgrds
    Edited by: new2appsdba on Jun 21, 2010 4:19 AM

    Hi,
    how do you suspect its a OPP related issue??what is OPP?
    Enter value for request_id: 451508
    old   5: AND fcpp.concurrent_request_id = &&request_id
    new   5: AND fcpp.concurrent_request_id = 451508
        REQ_ID NODE_NAME
    LOGFILE_NAME
        451508 DEMO
    /t01/demoap/inst/apps/DEMO_demo/logs/appl/conc/log/FNDOPP94508.txt
    [demoap@demo ~]$ vi /t01/demoap/inst/apps/DEMO_demo/logs/appl/conc/log/FNDOPP94508.txt
    [6/20/10 1:37:36 PM] [main] Starting GSF service with concurrent process id = 94508.
    [6/20/10 1:37:36 PM] [main] Initialization Parameters: oracle.apps.fnd.cp.opp.OPPServiceThread:2:0:max_threads=5
    [6/20/10 1:37:37 PM] [Thread-16] Service thread starting up.
    [6/20/10 1:37:37 PM] [Thread-15] Service thread starting up.
    [6/21/10 11:12:00 AM] [OPPServiceThread0] Post-processing request 451495.
    [6/21/10 11:12:00 AM] [94508:RT451495] Executing post-processing actions for request 451495.
    [6/21/10 11:12:00 AM] [94508:RT451495] Starting XML Publisher post-processing action.
    [6/21/10 11:12:00 AM] [94508:RT451495]
    Template code: WILPACKSLIP
    Template app:  ONT
    Language:      en
    Territory:     00
    Output type:   PDF
    [6/21/10 11:12:00 AM] [UNEXPECTED] [94508:RT451495] java.io.FileNotFoundException: /t01/demoap/inst/apps/DEMO_demo/logs/appl/conc/out/o451495.out (No such file or directory)
            at java.io.FileInputStream.open(Native Method)
            at java.io.FileInputStream.<init>(FileInputStream.java:106)
    at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:241)
            at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:172)
    [6/21/10 11:12:00 AM] [94508:RT451495] Completed post-processing actions for request 451495.
    [6/21/10 11:22:27 AM] [OPPServiceThread0] Post-processing request 451505.
    [6/21/10 11:22:27 AM] [94508:RT451505] Executing post-processing actions for request 451505.
    [6/21/10 11:22:27 AM] [94508:RT451505] Starting XML Publisher post-processing action.
    [6/21/10 11:22:27 AM] [94508:RT451505]
    Template code: WILPACKSLIP
    Template app:  ONT
    Language:      en
    Territory:     00
    Output type:   PDF
    [6/21/10 11:22:27 AM] [UNEXPECTED] [94508:RT451505] java.io.FileNotFoundException: /t01/demoap/inst/apps/DEMO_demo/logs/appl/conc/out/o451505.out (No such file or directory)
            at java.io.FileInputStream.open(Native Method)
            at java.io.FileInputStream.<init>(FileInputStream.java:106)
    at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:241)
            at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:172)
    [6/21/10 11:22:27 AM] [94508:RT451505] Completed post-processing actions for request 451505.
    [6/21/10 11:26:17 AM] [OPPServiceThread1] Post-processing request 451508.
    [6/21/10 11:26:17 AM] [94508:RT451508] Executing post-processing actions for request 451508.
    [6/21/10 11:26:17 AM] [94508:RT451508] Starting XML Publisher post-processing action.
    [6/21/10 11:26:17 AM] [94508:RT451508]
    Template code: WILPACKSLIP
    Template app:  ONT
    Language:      en
    Territory:     00
    Output type:   PDF
    [6/21/10 11:26:17 AM] [UNEXPECTED] [94508:RT451508] java.io.FileNotFoundException: /t01/demoap/inst/apps/DEMO_demo/logs/appl/conc/out/o451508.out (No such file or directory)
            at java.io.FileInputStream.open(Native Method)
            at java.io.FileInputStream.<init>(FileInputStream.java:106)
                                                                  at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:241)
            at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:172)
    [6/21/10 12:00:59 PM] [94508:RT451533] Completed post-processing actions for request 451533.
    [6/21/10 12:17:51 PM] [OPPServiceThread0] Post-processing request 451573.
    [6/21/10 12:17:51 PM] [94508:RT451573] Executing post-processing actions for request 451573.
    [6/21/10 12:17:51 PM] [94508:RT451573] Starting XML Publisher post-processing action.
    [6/21/10 12:17:51 PM] [94508:RT451573]
    Template code: XXWEBB_EXP_INV
    Template app:  ONT
    Language:      en
    Territory:     00
    Output type:   PDF
    [6/21/10 12:17:51 PM] [UNEXPECTED] [94508:RT451573] java.io.FileNotFoundException: /t01/demoap/inst/apps/DEMO_demo/logs/appl/conc/out/o451573.out (No such file or directory)
            at java.io.FileInputStream.open(Native Method)
            at java.io.FileInputStream.<init>(FileInputStream.java:106)
    at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:241)
            at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:172)
    [6/21/10 12:17:51 PM] [94508:RT451573] Completed post-processing actions for request 451573.
    [6/21/10 12:19:19 PM] [OPPServiceThread0] Post-processing request 451577.
    [6/21/10 12:19:19 PM] [94508:RT451577] Executing post-processing actions for request 451577.
    [6/21/10 12:19:19 PM] [94508:RT451577] Starting XML Publisher post-processing action.
    [6/21/10 12:19:19 PM] [94508:RT451577]
    Template code: WILEXINVREP
    Template app:  ONT
    Language:      en
    Territory:     00
    Output type:   PDF
    [062110_121919525][][EXCEPTION] [DEBUG] ------- Preferences defined PreferenceStore -------
    [062110_121919526][][EXCEPTION] [DEBUG] ------- Environment variables stored in EnvironmentStore -------
    [062110_121919526][][EXCEPTION] [DEBUG]  [FND_JDBC_IDLE_THRESHOLD.LOW]:[-1]
    [062110_121919526][][EXCEPTION] [DEBUG]  [FND_JDBC_IDLE_THRESHOLD.LOW]:[-1]
    [062110_121919526][][EXCEPTION] [DEBUG]  [SECURITY_GROUP_ID]:[0]
    [062110_121919526][][EXCEPTION] [DEBUG]  [FND_JDBC_BUFFER_DECAY_INTERVAL]:[300]
    [062110_121919526][][EXCEPTION] [DEBUG]  [NLS_CHARACTERSET]:[US7ASCII]
    [062110_121919526][][EXCEPTION] [DEBUG]  [RESP_APPL_ID]:[-1]
    [062110_121919526][][EXCEPTION] [DEBUG]  [NLS_LANGUAGE]:[AMERICAN]
    [062110_121919526][][EXCEPTION] [DEBUG]  [FND_JDBC_BUFFER_MIN]:[1]
    [062110_121919526][][EXCEPTION] [DEBUG]  [FND_JDBC_BUFFER_MAX]:[2]
    [062110_121919526][][EXCEPTION] [DEBUG]  [NLS_NUMERIC_CHARACTERS]:[.,]
    [062110_121919526][][EXCEPTION] [DEBUG]  [APPS_JDBC_URL]:[jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=(LOAD_BALANCE=YES)(FAILOVER=YES)(ADDRESS=(PROTOCOL=tcp)(HOST=demo.webbindia.com)(PORT=1527)))(CONNECT_DATA=(SID=DEMO)))]
    [062110_121919527][][EXCEPTION] [DEBUG]  [RESP_ID]:[-1]
    [062110_121919527][][EXCEPTION] [DEBUG]  [FND_MAX_JDBC_CONNECTIONS]:[500]
    [062110_121919527][][EXCEPTION] [DEBUG]  [FND_JDBC_USABLE_CHECK]:[false]
    [062110_121919527][][EXCEPTION] [DEBUG]  [USER_ID]:[-1]
    [062110_121919527][][EXCEPTION] [DEBUG]  [NLS_TERRITORY]:[AMERICA]
    [062110_121919527][][EXCEPTION] [DEBUG]  [FND_JDBC_PLSQL_RESET]:[false]
    [062110_121919527][][EXCEPTION] [DEBUG]  [FND_JDBC_CONTEXT_CHECK]:[true]
    [062110_121919527][][EXCEPTION] [DEBUG]  [NLS_DATE_FORMAT]:[DD-MON-RR]
    [062110_121919527][][EXCEPTION] [DEBUG]  [FND_JDBC_BUFFER_DECAY_SIZE]:[5]
    [062110_121919527][][EXCEPTION] [DEBUG]  [FND_JDBC_IDLE_THRESHOLD.HIGH]:[-1]
    [062110_121919527][][EXCEPTION] [DEBUG]  [NLS_SORT]:[BINARY]
    [062110_121919527][][EXCEPTION] [DEBUG]  [NLS_DATE_LANGUAGE]:[AMERICAN]
    [062110_121919527][][EXCEPTION] [DEBUG]  [LOGIN_ID]:[-1]
    [062110_121919528][][EXCEPTION] [DEBUG] ------- Properties stored in Java System Properties -------
    [062110_121919528][][EXCEPTION] [DEBUG]  [APPLTMP]:[/t01/demoap/inst/apps/DEMO_demo/appltmp]
    [062110_121919528][][EXCEPTION] [DEBUG]  [java.runtime.name]:[Java(TM) 2 Runtime Environment, Standard Edition]
    [062110_121919528][][EXCEPTION] [DEBUG]  [sun.boot.library.path]:[/t01/demoap/apps/tech_st/10.1.3/appsutil/jdk/jre/lib/i386]
    [062110_121919528][][EXCEPTION] [DEBUG]  [java.vm.version]:[1.5.0_08-b03]
    [062110_121919528][][EXCEPTION] [DEBUG]  [OVERRIDE_DBC]:[true]
    [062110_121919528][][EXCEPTION] [DEBUG]  [dbcfile]:[/t01/demoap/inst/apps/DEMO_demo/appl/fnd/12.0.0/secure/DEMO.dbc]
    [062110_121919528][][EXCEPTION] [DEBUG]  [java.vm.vendor]:[Sun Microsystems Inc.]
    [062110_121919528][][EXCEPTION] [DEBUG]  [java.vendor.url]:[http://java.sun.com/]
    [062110_121919528][][EXCEPTION] [DEBUG]  [path.separator]:[:]
    [062110_121919528][][EXCEPTION] [DEBUG]  [APPLCSF]:[/t01/demoap/inst/apps/DEMO_demo/logs/appl/conc]
    [062110_121919528][][EXCEPTION] [DEBUG]  [java.vm.name]:[Java HotSpot(TM) Server VM]
    [062110_121919528][][EXCEPTION] [DEBUG]  [file.encoding.pkg]:[sun.io]
    [062110_121919528][][EXCEPTION] [DEBUG]  [user.country]:[US]
    [062110_121919529][][EXCEPTION] [DEBUG]  [sun.os.patch.level]:[unknown]
    [062110_121919529][][EXCEPTION] [DEBUG]  [java.vm.specification.name]:[Java Virtual Machine Specification]
    [062110_121919529][][EXCEPTION] [DEBUG]  [user.dir]:[/t01/demoap/inst/apps/DEMO_demo/logs/appl/conc/log]
    [062110_121919529][][EXCEPTION] [DEBUG]  [java.runtime.version]:[1.5.0_08-b03]
    [062110_121919529][][EXCEPTION] [DEBUG]  [CLIENT_PROCESSID]:[30369]
    [062110_121919529][][EXCEPTION] [DEBUG]  [java.awt.graphicsenv]:[sun.awt.X11GraphicsEnvironment]
    [062110_121919529][][EXCEPTION] [DEBUG]  [java.endorsed.dirs]:[/t01/demoap/apps/tech_st/10.1.3/appsutil/jdk/jre/lib/endorsed]
    [062110_121919529][][EXCEPTION] [DEBUG]  [os.arch]:[i386]
    [062110_121919529][][EXCEPTION] [DEBUG]  [JTFDBCFILE]:[/t01/demoap/inst/apps/DEMO_demo/appl/fnd/12.0.0/secure/DEMO.dbc]
    [062110_121919529][][EXCEPTION] [DEBUG]  [java.io.tmpdir]:[/tmp]
    [062110_121919529][][EXCEPTION] [DEBUG]  [line.separator]:[
    [062110_121919529][][EXCEPTION] [DEBUG]  [java.vm.specification.vendor]:[Sun Microsystems Inc.]
    [062110_121919529][][EXCEPTION] [DEBUG]  [os.name]:[Linux]
    [062110_121919529][][EXCEPTION] [DEBUG]  [FND_JDBC_BUFFER_MIN]:[1]
    [062110_121919530][][EXCEPTION] [DEBUG]  [cpid]:[94508]
    [062110_121919530][][EXCEPTION] [DEBUG]  [sun.jnu.encoding]:[UTF-8]
    [062110_121919530][][EXCEPTION] [DEBUG]  [oracle.apps.fnd.common.Pool.leak.mode]:[stderr:off]
    [062110_121919530][][EXCEPTION] [DEBUG]  [java.library.path]:[/t01/demoap/apps/tech_st/10.1.3/appsutil/jdk/jre/lib/i386/server:/t01/demoap/apps/tech_st/10.1.3/appsutil/jdk/jre/lib/i386:/t01/demoap/apps/tech_st/10.1.3/appsutil/jdk/jre/../lib/i386:/t01/demoap/apps/tech_st/10.1.3/lib32:/t01/demoap/apps/tech_st/10.1.3/lib:/t01/demoap/apps/apps_st/appl/cz/12.0.0/bin:/t01/demoap/apps/apps_st/appl/iby/12.0.0/bin:/t01/demoap/apps/apps_st/appl/pon/12.0.0/bin:/t01/demoap/apps/apps_st/appl/sht/12.0.0/lib]
    [062110_121919530][][EXCEPTION] [DEBUG]  [java.specification.name]:[Java Platform API Specification]
    [062110_121919530][][EXCEPTION] [DEBUG]  [java.class.version]:[49.0]
    [062110_121919530][][EXCEPTION] [DEBUG]  [sun.management.compiler]:[HotSpot Server Compiler]
    [062110_121919530][][EXCEPTION] [DEBUG]  [queue_appl_id]:[0]
    [062110_121919530][][EXCEPTION] [DEBUG]  [os.version]:[2.6.18-164.11.1.el5xen]
    [062110_121919530][][EXCEPTION] [DEBUG]  [LONG_RUNNING_JVM]:[true]
    [062110_121919530][][EXCEPTION] [DEBUG]  [user.home]:[/t01/demoap]
    [062110_121919530][][EXCEPTION] [DEBUG]  [user.timezone]:[GMT+05:30]
    [062110_121919530][][EXCEPTION] [DEBUG]  [java.awt.printerjob]:[sun.print.PSPrinterJob]
    --------------------------------------------------------------------------------lots of lines ----------------------------------------
    [GC 17474K->10837K(24648K), 0.0037890 secs]
    [GC 17685K->11057K(24648K), 0.0035530 secs]
    [GC 17905K->11271K(24648K), 0.0029030 secs]
    [GC 18119K->11488K(24648K), 0.0024650 secs]
    [GC 18336K->11702K(24648K), 0.0023940 secs]
    [GC 18550K->11919K(24648K), 0.0025010 secs]
    [GC 18767K->12133K(24648K), 0.0024460 secs]
    [GC 18981K->12344K(24648K), 0.0024020 secs]
    [GC 19192K->12575K(24648K), 0.0024790 secs]
    [GC 19423K->12781K(24648K), 0.0025650 secs]
    [GC 19629K->12991K(24648K), 0.0024010 secs]
    [GC 19839K->13212K(24648K), 0.0024430 secs]
    [GC 20060K->13427K(24648K), 0.0024160 secs]
    [GC 20275K->13641K(24648K), 0.0024440 secs]
    [GC 20489K->13857K(24648K), 0.0024410 secs]
    [GC 20705K->14073K(24648K), 0.0024570 secs]
    [GC 20921K->14284K(24648K), 0.0024340 secs]
    [GC 21132K->14504K(24648K), 0.0024580 secs]
    [GC 21352K->14719K(24648K), 0.0024620 secs]
    [GC 21567K->14935K(24648K), 0.0024600 secs]
    [GC 21783K->15151K(24648K), 0.0024360 secs]
    [GC 21999K->15365K(24648K), 0.0024180 secs]
    [GC 22213K->15004K(24648K), 0.0204220 secs]rgrds
    Edited by: new2appsdba on Jun 22, 2010 1:43 AM
    Edited by: new2appsdba on Jun 22, 2010 2:12 AM
    Edited by: new2appsdba on Jun 22, 2010 5:37 AM

Maybe you are looking for

  • Synching Movie with 30GB

    When trying to sync a movie i just downloaded the snyc began and a few seconds in a received the error message "Attempting to copy to the disk "Ipod" failed. THe disk could not be read from or written to" My first attempt was to try again, and the sa

  • How do you delete all the messages in your search results in Thunderbird 31.2?

    I'm trying to clean out my inbox. When I search for a given term in the global search box and get my results, then I choose "Select All." Then I choose "Move to Trash," and nothing happens. How do you delete all the messages in your search results in

  • Problem with Grop Video connection using Panasonic...

    We're trying to do a Group Video between our three offices using a Mac laptop at the main office and Skype installed TV's at the other locations. We can connect to the first office which is using a Panasonic Skype ready TV fine, picture quality is go

  • Unlimited time of day?

    I live on an island where regular broadband internet is not available. My choices for internet are HughesNet or an air card. We've had a Verizon air card since we moved here 2.5 years ago. I am a photographer and I have to upload large number of phot

  • How to use RowSetBrowser in Jdeveloper 3.2

    Hi friends, Please show me how to use the Webbean RowSetBrowser to view the content of a ViewObject which made by the jbo:CreateViewObject. Thanks,