Generating Envelopes in Report Builder

I am wanting to know if there is a wizard or someway to generate a Mailing Envelope report for Number 10 envelopes.
I end up creating a landscape report on 8 1/2 x 11 paper with a top margin of 2.5 inches and a left margin of 1.625 inches.
I have to generate it as a PDF as flash paper doesn't know that it needs to print in landscape and tries to fit it width wise in portrait.
It is kind of klugey.
Anybody know of an easier way?

Hello,
The "Web layout " is something new in Reports 9.0.2 , and if you open RDF created with 6i, the web layout is empty .
Did you try to execute your reports using the icon "Run Paper Layout" ?
Do you see the output in this case ?
Regards

Similar Messages

  • Custom fonts not displayed when PDF is generated using 10g Report builder

    Hi
    I have two fonts , abc.ttf and def.ttf which I have placed under C:\Windows\fonts. One of these displays a logo and the other displays barcode
    I have added the environment variable REPORTS_PATH which has value C:\Windows\fonts. I have also added entries for PDF Subset in uifont.ali.
    But still when I run the report and out to a PDF file, the fonts are not displayed. They are remapped to some other fonts.
    When I check PDF document properties in Adobe reader, under fonts tab it says
    abc
       Type:Type1
       Encoding:ANSI
       Actual Font: Adobe Sans MM
       Actual Font Type : Type 1
    def
       Type:Type1
       Encoding:ANSI
       Actual Font: Adobe Sans MM
       Actual Font Type : Type 1
    uifont.ali entries
    [ PDF:Subset ]
    # This example shows how to subset Arial True Type font into the PDF file
    # Arial = "Arial.ttf"
    # The True Type font files must exist in any one of the folders specified in
    # REPORTS_PATH.
    abc= "abc.ttf"
    def="def.ttf"
    In Oracle reports builder, I am able see these fonts and select them in my report layout
    I am able to see the fonts in Preview/screen output while running RDFs in my reports builder, but PDF output doesnt display these fonts
    Is there anything else which is required to do ? Do I need to restart the machine after environment variable is added ?

    In one PC were Report Builder is installed, we see "COURIER NEW - WESTERN" font and the RDF created / saved in that font works fine on server. I don't know if this helps!

  • Issues in generating xml from Report Builder as per XSD provided

    Hi,
    We are provided with XSD's for each report. Now we need to generate XML's from report that are as per the XSD's provided to us.
    But the problem come's when we have to define hirearchies.
    Like for example
    1. Our Report is based on the following query:
    SELECT DISTINCT '' as DUMMY
    ,               fil.file_number
    ,      TO_CHAR (TO_DATE (RTRIM (LTRIM (fil.processing_date)), 'YYDDD'),'DD-MM-YY') Processing_Dt
    , rp_bsu.service_user_number
    , rp_bsu.service_user_name
    ,     rp_ac.account_number
    , rp_ac.account_name
    ,     rp_ac.account_type
    ,     rp_ac.sortcode
    , NVL(ovr_lmt.account_section_value,0) AS
    account_section_value
    ,     NVL(ovr_lmt.overlimit_amount,0) AS overlimit_amount1
    , (NVL(ovr_lmt.overlimit_amount,0) - NVL(ovr_lmt.account_section_value,0)
    ) value_to_date
    , (NVL(ovr_lmt.overlimit_amount,0) -
    NVL(lmt_usg.limit_amount,0)
    ) amount_overlimit
    , ovr_lmt.over_limit_id, NVL(lmt_usg.limit_amount,0) AS
    limit_amount
    , lmt_usg.period_type,lmt_usg.currency
    FROM v_rp_bacs3day_service_user rp_bsu,
    v_rp_bacs_service_office rp_bso,
    v_rp_account rp_ac,
    t_file fil,
    t_over_limit ovr_lmt,
    t_limit_usage lmt_usg
    WHERE rp_bso.handling_bank_code = :p_scheme_member
    AND rp_bsu.sponsoring_bank_code = rp_bso.owning_bank_code
    AND rp_ac.service_user_number = rp_bsu.service_user_number
    AND rp_bsu.service_user_number = fil.originator
    AND fil.status <> 'R'
    AND fil.processing_date = (SELECT cycle_date
    FROM t_cycle
    WHERE status = 1)
    AND lmt_usg.account_id = rp_ac.account_id
    AND ovr_lmt.limit_usage_id = lmt_usg.limit_usage_id
    AND TO_CHAR (ovr_lmt.exceeded_date, 'DD-MM-YYYY') =
    (SELECT TO_CHAR (TO_DATE (RTRIM (LTRIM (cycle_date)),
    'YYDDD'),'DD-MM-YYYY')
    FROM t_cycle
    WHERE status = 1)
    2.The hierarchy as per xsd that we need to define is :
    <ServiceUserAccount>
    <ServiceUser>
         <Name></Name>
    <Number></Number>
    </ServiceUser> <SortCode></SortCode>
    <AccountNumber></AccountNumber>
    <NearOrOverLimitDetail>
    <AccountType></AccountType>
    <ProcessingDate></ProcessingDate>
    …………………..(there is a list of elements below it)
    </NearOrOverLimitDetail>
    </ServiceUserAccount>
    In the xsd for the complex element type “ServiceUser” we need to display Service User Name and Number. For this I created a separate query Q2 in reports and joined it using data link with the parent Q1(which has data grouped on processing date) . So that it can be displayed as a separate element parallel to other elements like Sort code ,Account Numbers. But when we generate XML for this, then tags for Q2 query donot appear in xml.
    And we get this hierarchy with missing Service User element
    <ServiceUserAccount>
    <SortCode></SortCode>
    <AccountNumber></AccountNumber>
    <NearOrOverLimitDetail>
    <AccountType></AccountType>
    <ProcessingDate></ProcessingDate>
    …………………..(there is a list of elements below it)
    </NearOrOverLimitDetail>
    </ServiceUserAccount>
    Please let me know if you have any solution to implement this ASAP as its very urgent.
    Thanks & Regds
    Anuradha.

    Hi,
    We are provided with XSD's for each report. Now we need to generate XML's from report that are as per the XSD's provided to us.
    But the problem come's when we have to define hirearchies.
    Like for example
    1. Our Report is based on the following query:
    SELECT DISTINCT '' as DUMMY
    ,               fil.file_number
    ,      TO_CHAR (TO_DATE (RTRIM (LTRIM (fil.processing_date)), 'YYDDD'),'DD-MM-YY') Processing_Dt
    , rp_bsu.service_user_number
    , rp_bsu.service_user_name
    ,     rp_ac.account_number
    , rp_ac.account_name
    ,     rp_ac.account_type
    ,     rp_ac.sortcode
    , NVL(ovr_lmt.account_section_value,0) AS
    account_section_value
    ,     NVL(ovr_lmt.overlimit_amount,0) AS overlimit_amount1
    , (NVL(ovr_lmt.overlimit_amount,0) - NVL(ovr_lmt.account_section_value,0)
    ) value_to_date
    , (NVL(ovr_lmt.overlimit_amount,0) -
    NVL(lmt_usg.limit_amount,0)
    ) amount_overlimit
    , ovr_lmt.over_limit_id, NVL(lmt_usg.limit_amount,0) AS
    limit_amount
    , lmt_usg.period_type,lmt_usg.currency
    FROM v_rp_bacs3day_service_user rp_bsu,
    v_rp_bacs_service_office rp_bso,
    v_rp_account rp_ac,
    t_file fil,
    t_over_limit ovr_lmt,
    t_limit_usage lmt_usg
    WHERE rp_bso.handling_bank_code = :p_scheme_member
    AND rp_bsu.sponsoring_bank_code = rp_bso.owning_bank_code
    AND rp_ac.service_user_number = rp_bsu.service_user_number
    AND rp_bsu.service_user_number = fil.originator
    AND fil.status <> 'R'
    AND fil.processing_date = (SELECT cycle_date
    FROM t_cycle
    WHERE status = 1)
    AND lmt_usg.account_id = rp_ac.account_id
    AND ovr_lmt.limit_usage_id = lmt_usg.limit_usage_id
    AND TO_CHAR (ovr_lmt.exceeded_date, 'DD-MM-YYYY') =
    (SELECT TO_CHAR (TO_DATE (RTRIM (LTRIM (cycle_date)),
    'YYDDD'),'DD-MM-YYYY')
    FROM t_cycle
    WHERE status = 1)
    2.The hierarchy as per xsd that we need to define is :
    <ServiceUserAccount>
    <ServiceUser>
         <Name></Name>
    <Number></Number>
    </ServiceUser> <SortCode></SortCode>
    <AccountNumber></AccountNumber>
    <NearOrOverLimitDetail>
    <AccountType></AccountType>
    <ProcessingDate></ProcessingDate>
    …………………..(there is a list of elements below it)
    </NearOrOverLimitDetail>
    </ServiceUserAccount>
    In the xsd for the complex element type “ServiceUser” we need to display Service User Name and Number. For this I created a separate query Q2 in reports and joined it using data link with the parent Q1(which has data grouped on processing date) . So that it can be displayed as a separate element parallel to other elements like Sort code ,Account Numbers. But when we generate XML for this, then tags for Q2 query donot appear in xml.
    And we get this hierarchy with missing Service User element
    <ServiceUserAccount>
    <SortCode></SortCode>
    <AccountNumber></AccountNumber>
    <NearOrOverLimitDetail>
    <AccountType></AccountType>
    <ProcessingDate></ProcessingDate>
    …………………..(there is a list of elements below it)
    </NearOrOverLimitDetail>
    </ServiceUserAccount>
    Please let me know if you have any solution to implement this ASAP as its very urgent.
    Thanks & Regds
    Anuradha.

  • Generating barcode with Report Builder 10g

    Hello,
    I am migrating a number of reports from 6i to 10g which contain barcodes. These get displayed as a series of *** at the client browser.
    So I guess I may need to install the barcode javabean. So I am using the instructions http://download.oracle.com/docs/html/B13895_01/orbr_barcode.htm. Unfortunately I am stuck on the first step of importing the java class oracle.apps.barcode.util.BarCodeConstants. I have tried adding the path for oraclebarcode.jar to my registry but it doesn't help. Should I be seeing ".apps" below the oracle class?
    Thanks in advance

    Hi DC or user638801 ,
    Did you ever try this on UNIX server. Coz I tried this before 3 weeks. But this did not work.
    If this works in UNIX Server please let me know so that I will try once again.
    Thanks and regards,

  • Report Builder 10 Crashing while generating to pdf

    I can get a report to show all the pages in previewer mode.
    However, when attempting to generate to pdf, report builder crashes at random times. Not at just one page, but whenever it feels like it.
    Report is 4,000 pages, but I've ran 15k page to pdf before. And it is NOT the report, it crashes on all reports.
    We've had some recent windows security updates pused to us recently, but that is it as far as system changes go.
    Environment:
    Win XP, SP3
    Report Builder 10.1.2.0.2
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production

    Report Builder 10.1.2.0.2That is the base version of Developer Suite that you can download on OTN. I would at least start with upgrading to the latest patch, especially since you connect to an 11g database.
    Another thing: do you have this problem in Reports Builder, or on the application server? Latter case: check your AS version against the certification matrix too.
    Edited by: InoL on Jan 27, 2011 11:37 AM

  • PDF not generated in Report builder 3.0

    Here, I m using Oracle Report Builder 3.0 Rel 2.1. I am running a report from FORM through RUN_PRODUCT , problem is that when i generate the PDF file it shows sometime message of formula column error which is i have seen in rdf is correct and some time it creates blank. But in this report Report Builder Parameter Form also exists , i hide this parameter form in FORM thourgh PARAMFORM in ADD_PARAMETER. I think it requires the parameter values that report generated PDF blank or generated an error of formula column. But i run this report through report parameter form and generate PDF correctly.
    Please Help me this regards
    Shahid Shafi
    Analyst/Programmer
    Novartis Pharma (Pakistan) Ltd.
    [email protected]

    Hi KanataPablo,
    According to your description, it seems that you are using linked server to pass value to oracle. Seeing that the query is worked well in Management Studio, you may have the permission to connect to oracle (In this scenario, make sure the users to run the
    query in SSMS and Report Builder are the same user). So this issue can be caused by the user’s permission to connect to report server, the credential of data source and the dynamic query.
    We can add the current user as a Login, then click Properties and navigate to User Mappings page, enable ReportServer and ReportServerTempDB options.
    We can try to type user name and password, and enable “Use as Windows credentials” as the credential used to connect to data source.
    Try with dynamic query:
    ="Select column1, column2 From tableName where ID IN (" + JOIN(Parameters!param1.value, ",") + ")"
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • How to add css styles in html file generated from Report builder?

    Hi,
    I schedule report in web browser,but the generated report html file looks very simple and doesn't correspond with the other html files which have css styles.So I want to add css styles to the generated html file from *.rdf in report builder.That is to say I should integrate css style with myReport.rdf.Can anybody tell me how to do that?
    thanks in advance.
    Regards
    jungle

    hello,
    i am not quite sure, what you want to achieve. did you try the DESFORMAT=HTMLCSS which generates inline-style-information.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                               

  • Report Builder get shut down... without generating any Error Message

    Hi Every One,
    I am generating the reports in Report Builder 10.1.2.0.2. And the report is based on the view, when I want to generate the PDF, the report builder get shut down without generating any error message. But I can run the report to see live Preview (Paper Design ).
    What can be reason that its not generating PDF file format.
    Thanks in Advance for your time.

    Hi Saumen,
    I don't think so that .. I have memory problem or some other issue on the hardware side .. bcos I used the same report builder on same machine against the same instance.. to generate the 70K pages PDF file ... but nothing happened ...And this report is fetching only 10 records. during the execution of the report, Report Builder get close. without generating any message. without keeping any processor busy.
    I am feeling that report builder try to write in the PDF file format .. but unable to write.. may b some thing is wrong on the privileges side of the VIEW. But I have Select Priv on the view.
    When I try to trace the report, I got the message in the trace file that " Report Aborted on user request"
    Thanks,
    Mohsin

  • Generate PDF from App. Srv. Produces Larger File than from Reports Builder

    Good Day,
    I have a the below issue , and need your help please.
    When generating a PDF report from the application server, the PDF size is large (200 MB) while
    same report is generated from the builder with smaller size 10MB.
    - Report Builder 9.0.2.0.3
    - The report contain only TEXT no Image , and contain arround 4000 pages ...
    The steps done from Application server in command line :
    - First I tested with several values for the parameter OUTPUTIMAGEFORMAT : file size stays the same or increases.
    - Second I tested with parameter PDFCOMP (for PDF compression) with varying values from 0 to 9 : file size stays the same.
    Kindly help ...

    From report builder :
    I open only the .rdf and generate the output to a PDF file.
    The number of page is from the PDf generated from Report builder , for the other one I Cant open it with PDF reader...
    Thx.
    MAN

  • Reports Builder: line width of a graphic and generated PDF

    Hello,
    I change the line width of a graphic but in the generated pdf the line width remains equal.
    Some pics:
    The graphic in Reports Builder:
    !http://i25.tinypic.com/20famuu.jpg!
    The xml code:
    <SeriesItems>
    <Series id="0" markerType="MT_BAR" borderTransparent="true" transparent="true"/>
    <Series id="1" markerType="MT_MARKER" color="#101df" lineWidth="9"/>
    <Series id="2" markerType="MT_MARKER" color="#101df" lineStyle="LS_DASH" lineWidth="9"/>
    <Series id="3" markerType="MT_MARKER" color="#b4045f" lineWidth="1"/>
    <Series id="4" markerType="MT_MARKER" color="#b4045f" lineStyle="LS_DASH" lineWidth="1"/>
    <Series id="5" markerType="MT_MARKER" color="#0" lineWidth="9"/>
    <Series id="6" markerType="MT_MARKER" color="#0" lineStyle="LS_DASH" lineWidth="1"/>
    </SeriesItems>
    The graphic in the PDF report:
    !http://i25.tinypic.com/2emq3b5.jpg!
    Why in the PDF report the size is different?
    Thanks in advance and sorry for my english...

    To procede, omit the "(nil)" argument and you should be fine for that line, or specialize the method in question.
    I tried this, but I got error messages pointing to a function that uses the fontInstance pointer. The function is in the form of:
    EstimateStringWidth(WideString run, IFontInstance* fontInstance)
    and the error tells me that the line:
         totalWidth += EstimateStringWidth(charBuff, fontInstance);
    has no matching function.
    Also, most of the samples in the SDK creates a IFontInstance using an InterfacePtr.
    I tried this approach because solutions.pdf suggests this method to estimate text widths... I want to measure the text width of a composed line to determine the raggedness (degree of whitespace left on the end of each line) of a paragraph. But with this issues, am I better off using the GetWidth method of IWaxLine to get the width.
    Now, my next question would be, can I get the estimate width of the line if I change the properties of the paragraph, ie. justification settings, without actually composing the text in the ui. I need this so that I can compute for the optimal settings to changed so that the degree of raggedness of the paragraph would be less than the original.
    Thanks again!

  • Generating .pdf file from Reports Builder 10g

    Hi,
    I made a report in Reports Builder 10g and every label and field I set, but when I print the report throw reports builder field are displaced randomly, i.e. they are not where I set them in paper layout. In print preview everything is OK, but when I print it everything(fields) is in the mess. Please help.

    APEX doesn't output PDF natively, so you have to use an external report server for this. There's a link on apex.oracle.com entitled PDF Printing that discusses the options.
    Tyler Muth
    http://tylermuth.wordpress.com
    [Applied Oracle Security: Developing Secure Database and Middleware Environments|http://sn.im/aos.book]

  • Reports Builder and rwrun.exe hang on pdf creation

    Hi, I'm having a problem with creating a pdf version of one of our reports. We have a HUGE report that gets generated once a month. I'm talking 50,000+ pages. That single document is not intended for human viewing; rather, it goes to a gigantic printer, and every few pages goes into an envelope to be snail-mailed to one of our clients. This is state government, so we can't require the recipients to receive the notices via email.
    That probably is not a typical usage, but the old version, which was slightly more compact at 35,000 pages, has always worked properly. It's only this expanded version that has given us problems. When running from both Reports Builder (generate to file) and from the command line, the report never seems to complete. When running from Reports Builder, it completes the query and the counter for number of pages climbs rapidly, but somewhere close to the end, it just stops. From the command line, I never get a prompt back. (I should add that running the report from Reports Builder via the "Run Paper Layout" button works properly, and we're able to skip to the end to see all the data; it's just the pdf part that's failing.) The pdf report is partially created in the cache directory each time, but it isn't complete, and acrobat won't open it.
    This occurred with Report Builder 9.0.2.0.3. I then downloaded the newest 10g version (10.1.2.0.2) and received similar results. The only difference is that the report in the 10g cache directory actually appears to be complete. However, the app still never returns back and must be killed.
    Subsequent to all this, I learned of the existence of the trace file in the logs dir, so I re-ran both versions of rwrun.exe from the command line. Here are the results from the trace file:
    9i:
    "java.lang.StackOverflowError
         at oracle.reports.server.JobManager.getJob(JobManager.java:172)
         at oracle.reports.server.JobManager.updateJobStatus(JobManager.java:1388)
         at oracle.reports.server.EngineCommImpl.updateEngineJobStatus(EngineCommImpl.java:97)
         at oracle.reports.engine.EngineImpl.updateJobStatus(EngineImpl.java:601)
         at oracle.reports.engine.EngineImpl.CRunReport(Native Method)
         at oracle.reports.engine.EngineImpl.run(EngineImpl.java:289)
         at oracle.reports.server.JobManager.runJobInEngine(JobManager.java:623)
         at oracle.reports.server.JobManager.runJobLocal(JobManager.java:1209)
         at oracle.reports.server.JobManager.runCurrentJob(JobManager.java:560)
         at oracle.reports.server.JobManager.runCurrentJobs(JobManager.java:522)
         at oracle.reports.server.JobManager.manage(JobManager.java:131)
         at oracle.reports.server.IdleThread.run(IdleThread.java:71)
         at java.lang.Thread.run(Thread.java:484)"
    10g:
    "org.omg.CORBA.OBJ_ADAPTER: vmcid: SUN minor code: 202 completed: Maybe
         at com.sun.corba.se.internal.corba.ORB.disconnect(ORB.java:2085)
         at oracle.reports.server.ConnectionManager.release(ConnectionManager.java:183)
         at oracle.reports.server.ConnectionManager.manage(ConnectionManager.java:117)
         at oracle.reports.server.IdleThread.run(IdleThread.java:134)
    REP-50125: Caught exception: org.omg.CORBA.OBJ_ADAPTER: vmcid: SUN minor code: 202 completed: Maybe"
    Can anyone help? An alternative would be to split up the report into multiple files so that there are less pages, but we would prefer to avoid that, if possible. I'll post something to metalink shortly.
    Thanks,
    Dan

    Hi,
    I had the same problem to generate it for 10000 employes salary slip but i got the solution.Try out the foolowing method.
    1) Create a folder in the D or c drive called "TEMP"
    2) change the settings in the regedit (reports_tmp=<drive>:/temp string)
    3) similarly in the environment varaibles (go to mycomputer->proerpties->advanced tab->environmentvariables) change the variable temp and temp to <drive>:/temp
    because normaly temp folders exist in the c:\document\settings so create it outside
    also pass the parameter pdfcomp=0.
    4) If u r using server then go to <oraclehome>/reports/<server>.conf file
    edit the following properties
    <property name="cacheSize" value="500"/>
    <!--property name="cacheDir" value="your cache directory"/-->
    <property name="maxCacheFileNumber" value="10000"/>
    here in my case it will hold 500 mb or 10000 files.
    here u can set it for 50000 files or more.
    regards
    vishwa

  • Updaing SQL 2005 Report Builder Reports (based on Report Models) to SQL 2012 Report Builder Reports?

    We are upgrading from SQL 2005 to SQL 2012 directly (no SQL 2008 to be installed).  We have many SSRS Reports written in Report Builder 1.0 against Report Models generated from an OLAP datasource.  In SQL 2012, Report Models can no longer
    be created or edited.  I have found many posts on this topic, including this: 
    http://social.msdn.microsoft.com/Forums/en-US/896522da-45c3-46c0-848a-16f8f02ab051/how-to-upgrade-report-models-from-report-builder-1020-to-30. which the 'answered' response states: 
    SQL Server 2012 Reporting Services does not include tools for creating or updating report models. Although you can continue
    to use existing report models as data sources in SQL Server 2012 Reporting Services reports you should consider updating your reports to remove their dependency on report models.
    But I cannot locate any instructions/documentation, etc. on how to go about "updating your reports to remove
    their dependency on report models.".  How do I take existing Report Builder 1.0 reports that point to Report Models and upgrade them to the new SQL 2012 without Report Models?  Is there a way to convert them?  Or, do they need to be rewritten
    from scratch?  If there is a link to these instructions, please post as I cannot locate it any where.  Thank you.

    Katherine thank you for helping with this.  Here is what I have tried:
    On the Report Manager (2012) site, I created a new OLAP data source.  And when I test the connection, I get the pop up "Connection created successfully."
    I then pointed my Report Builder (v1.0) report to this new Data Source (from Report Manager site, selected 'Manage' for the report, from Data Sources, selected Browse and drilled down to the new Data Source I created and selected Apply). 
    Now when I try to View the report, I receive the following error:
    An error has occurred during report processing. (rsProcessingAborted) Query execution failed for dataset 'paramDataSet'. (rsErrorExecutingCommand) The SemanticQuery element at line 7, column 279 (namespace http://schemas.microsoft.com/sqlserver/2004/10/semanticmodeling)
    cannot appear under Envelope/Body/Execute/Command.
    I then exited IE and reopened the Report Manager site.  I opened Report Builder 3.0,, selected Open and opened this same report.  Idrilled donw to Data Sources and  right clicked on dataSource1 (the only one listed) and selected Data
    Source Properties.  I kept the same name, but selected the new shared datasource I created (New DataSource), and selected OK.
    Next, I drilled down to Datasets.  There are two listed, dataSet and paramDataSet (yes, this report has parameters).  I right clicked on the dataSet and selected dataSet properties, and see that it points to dataSource1 (which is the dataSource
    I just pointed to my New DataSource).  I cancelled and checked the Data Source for paramDataSet, and it also points to dataSource1.  Selected cancel and went back to the main dataSet.
    So both datasets point to the new DataSource I created.
    If I select Run, I get the following error: 
    I select OK and right click on dataSet and select Refresh Fields and get this error:
    Can you (anyone) please explain what I am doing incorrectly?  Thank you.

  • Unable to generate the file report pdf on 29 february 2012 or during any leap year day...

    hii this is manab......
    sir/mam i have face the following error in 29 february 2012 for my overall company report .But i can easily get the
    report of another department on 29feb 2012....but when i try generate the overall report of my comapany then i find the errors
    REP-1401: 'cf_mc_prod_lyrformula': Fatal PL/SQL error occurred.
    ORA-01839: date not valid for month specified
    The following is the logfile.........
    ...........................................................................................log file................................................................................................................
    HPCL Custom Application: Version : UNKNOWN
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    HPCCMDS module: HPC Modified CMD Report
    +---------------------------------------------------------------------------+
    Current system time is 04-SEP-2013 11:37:20
    +---------------------------------------------------------------------------+
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    P_MILL='NPM'
    P_TRANSACTION_DATE='2012/02/29 00:00:00'
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.US7ASCII
    REP-1401: 'cf_mc_prod_lyrformula': Fatal PL/SQL error occurred.
    ORA-01839: date not valid for month specified
    Report Builder: Release 6.0.8.24.0 - Production on Wed Sep 4 11:37:20 2013
    (c) Copyright 1999 Oracle Corporation.  All rights reserved.
    Enter Username:
    +---------------------------------------------------------------------------+
    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 11426643.
    Review your concurrent request log and/or report output file for more detailed information.
    +---------------------------------------------------------------------------+
    Executing request completion options...
    Finished executing request completion options.
    +---------------------------------------------------------------------------+
    Concurrent request completed
    Current system time is 04-SEP-2013 11:59:23
    +---------------------------------------------------------------------------+
    kindly give me solution .....i have e-business suite 11i
    internet explorer latest version...

    Hi,
    Please confirm whether this is a custom or standard report.
    If this is a custom report, then probably the respective issue has not been handled by exception handling.
    Also please refer note:
    How to check if version 11.5.10.2 is certified to Handle Leap Years (Doc ID 549937.1)
    Thanks &
    Best Regards,

  • XML Report completes with error due to REP-271504897:  Unable to retrieve a string from the Report Builder message file.

    We are in the middle of testing our R12 Upgrade.  I am getting this error from the invoice XML-based report that we are using in R12. (based on log).  Only for a specific invoice number that this error is appearing.  The trace is not showing me anything.  I don't know how to proceed on how to debug where the error is coming from and how to fix this.  I found a patch 8339196 that shows exactly the same error number but however, I have to reproduce the error in another test instance before we apply the patch.  I created exactly the same order and interface to AR and it doesnt generate an error.  I even copied the order and interface to AR and it doesn't complete with error.  It is only for this particular invoice that is having an issue and I need to get the root cause as to why.  Please help.  I appreciate what you all can contribute to identify and fix our issue.  We have not faced this issue in R11i that we are maintaining right now for the same program which has been running for sometime.  However, after the upgrade for this particular data that the user has created, it is throwing this error REP-271504897.
    MSG-00100: DEBUG:  Get_Country_Description Return value:
    MSG-00100: DEBUG:  Get_Country_Description Return value:
    REP-0002: Unable to retrieve a string from the Report Builder message file.
    REP-271504897:
    REP-0069: Internal error
    REP-57054: In-process job terminated:Terminated with error:
    REP-271504897: MSG-00100: DEBUG:  BeforeReport_Trigger +
    MSG-00100: DEBUG:  AfterParam_Procs.Populate_Printing_Option
    MSG-00100: DEBUG:  AfterParam_Procs.Populate_Tax_Printing_Option
    MSG-00100: DEBUG:  BeforeReport_Trigger.Get_Message_Details
    MSG-00100: DEBUG:  BeforeReport_Trigger.Get_Org_Profile.
    MSG-00100: DEBUG:  Organization Id:  117
    MSG-00100: DEBUG:  BeforeReport_Trigger.Build_Where_Clause
    MSG-00100: DEBUG:  P_Choi
    Report Builder: Release 10.1.2.3.0 - Production on Tue Jul 23 09:56:46 2013
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.

    Hi,
    Check on this note also : Purchasing Reports Fail When Changing Output To XML REP-0002 REP-271504897 REP-57054 (Doc ID 1452608.1)
    If you cant reproduce the issue on other instance, apply the patch on the test instance and verify all the funcionality related to the patch works OK. Then move the patch to production. Or you can clone the prod environment to test the patch.
    Regards,

Maybe you are looking for

  • Is anyone using Photoshop on windows 8?

    Do the fonts show clearly?

  • Diagnostic Test for Time Capsule?

    I helped a friend purchase a MacBook Pro and a Time Capsule. I set up the MacBook Pro and was able to access Time Capsule wirelessly for Time Machine Backups without much problem. However, when my friend took the computer and TC to where she lives an

  • How to save HTML file with images present in the server to local machine

    Hi all In my application i have a option for the user to save HTML files with images present in the server. The HTML file is getting saved but the images are not being saved. The code i am using is below :- l                     File fname = new File

  • Best practice for reading GUI values?

    I am using a Matisse GUI. This GUI has a number of variables and buttons that will invoke methods from other classes. How do I pass or otherwise make the variables in the GUI jText... jLabel... to the receiving function without passing each variable

  • New member to Sap-Sales and Distribution

    Hello everyone: I am new to SD, I would appreciate any help when needed. I thank you all in advance to bare my innocence and for any dum questions in SD.