About Oracle  Reports very urgent

can you pls explain me about what isOracle reportcaching,interactivereports and batched reports.

pls refer [     Publishing reports to web  - 10G  ]see link below
caching
reports o/p is cached in oh/reports/cache so that if later a report with same cmd line param is requested, the c ached report is returned.
interactive report
- didnt get fully. It may mean report with embedded links which in turn will submit request to run other reports and hence being interactive
batch reports
- submitting a number of reports in batches to reports server in batch mode (batch=yes) and potentially scheduled using schedule cmd line parameter.
[    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/10g ]
9i - http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
10g - http://www.oracle.com/technology/products/forms/pdf/10g/frm10gsrw10g.pdf
http://www.oracle.com/technology/products/forms/techlisting10g.html
---------------------------------------------------------------------------------

Similar Messages

  • Time out error in oracle reports--very urgent

    Hi
    I have this oracle report on 9i which calls 14 other reports and runs them
    via a wrapper report which I run from a URL
    However I get this engine null crashed error or else Engine rwEng-0 is destroyed due to timeout error.
    From what I understand there is a timeout issue happening bcoz reports is taking a long time to run.Hence I increased the value of engineResponseTimeOut but it does not help either.Would you have any other idea to resolve this issue?
    Could someone plz tell me urgently how can this be resolved.This is on Oracle 9i.
    Thanks

    Hi Ravi kanth,
    You are using select * statement which is very time consuming and low performance. Dont use select * instead use select field1 field2.... into table itab  where field1 = s_field.  Use corresponding field names in the select statement.
    Follow the below rules.
    1) Dont use nested select statements
    2) If possible use for all entries in addition
    3) In the where addition make sure you give all the primary key
    4) Use Index for the selection criteria.
    5) You can also use inner joins
    6) You can try to put the data from the first select statement into an Itab and then in order to select the data from the second table use for all entries in.
    7) Use the runtime analysis SE30 and SQL Trace (ST05) to identify the performance and also to identify where the load is heavy, so that you can change the code accordingly
    <b>reward if useful</b>.
    Regards,
    sunil kairam.

  • About oracle reports

    I have question about oracle reports. I have 10 reports user has to run everyday. Is there any way user can run all these reports by pressing single button.
    Thanks
    VK

    Hi,
    In any of the report, in the 'Before report Trigger' add the following code to execute any number of reports.
    srw.run_report('report=test1.rdf destype=file desformat=pdf desname=test1.pdf');
    srw.run_report('report=test2.rdf destype=file desformat=pdf desname=test2.pdf');.....
    Like this, you can add any number srw.run_report (this built-in package will run the report with the given parameters), so that you can able to run any number of reports by running a single report.
    Thanks,
    Vidya Viswanathan,
    Reports Development Team.

  • PDF format of Reports (Very urgent)

    I am using developer 6i forms & report server to run my application on the web.
    My forms r working quite fine. My reports when I run my reports in HTML/HTMLCSS format the output comes well.
    But when I set FORMS60_REPFORMAT=PDF in registry to get the output of the reports in PDF format, the browser opens acrobat reader, but does not open the PDF file and an error comes 'Error while opening the document'.
    But in the temporary folder of reports server the output of the desired report is created perfectly well. When i open that file directly by giving the path of the folder separately the browser shows that document very well.
    I have tried IE4, IE5, IE6.
    When using Netscape 4.7 when report's URL is sent to browser, the browser shows save as window instead of directly opeing the file.
    Please help me out.
    Thanks

    Maybe this solution from Metalink will help you:
    fact: Oracle Reports Developer 6
    fact: Oracle Reports Services
    fact: Microsoft Internet Explorer
    fact: Acrobat Reader 4.0
    symptom: Running Report with Desformat=PDF and Paramform=HTML Returns Blank Page In Browser.
    cause: Problem documented in <Bug:784236> WHEN PARAMFORM = YES AND DESFORMAT=PDF WEB REPORT SHOW BLANK PAGE WITH IE
    and <Bug:761674> PDF STREAM TO IE DOES NOT WORK WHEN PARAMETER FORM ENABLED
    Problem closed as 3rd Party product problem
    fix:
    Use the following workaround
    1. Click on the Report name and bring up the property palette to show all of the properties for the whole report.
    2. Under Report Escapes->Before Form Value, change form method from post to get.
    This will then do it dynamically for the report without having to save a static paramform.

  • Report -very urgent

    Hi gurus,
      Can any one check the code .Iam not getting the output correctly .some garbage values it is taking .Kindly check and reply me it is very urgent for me.
    REPORT  Z_MARPOSS.
    TABLES : EKPO ,
             EKET.
    DATA : BEGIN OF ITAB OCCURS 2,
           EBELN LIKE EKET-EBELN,
           END OF ITAB .
    DATA : BEGIN OF ITAB1 OCCURS 2,
           MATNR LIKE EKPO-MATNR,
           TXZ01 LIKE EKPO-TXZ01,
           MENGE LIKE EKET-MENGE,
           WEMNG LIKE EKET-WEMNG,
           MOBMNG LIKE EKET-MENGE,
           END OF ITAB1.
       SELECT-OPTIONS MEINDT FOR EKET-EINDT.
       SELECT EBELN INTO TABLE ITAB FROM EKET WHERE EINDT IN MEINDT.
       LOOP AT ITAB.
       clear itab1-matnr.
       clear itab1-txz01.
      SELECT MATNR TXZ01 INTO CORRESPONDING FIELDS OF ITAB1 FROM EKPO WHERE EBELN = ITAB-EBELN.
       APPEND ITAB1.
       ENDSELECT.
       ENDLOOP.
       LOOP AT ITAB.
       CLEAR ITAB1-MENGE .
       CLEAR ITAB1-WEMNG .
       SELECT MENGE WEMNG INTO CORRESPONDING FIELDS OF ITAB1 FROM EKET WHERE EBELN = ITAB-EBELN.
       APPEND ITAB1.
       ENDSELECT.
       ENDLOOP.
    top-of-page .
    write : 50 'REPORT FOR STOCK OF PURCHASING MATERIALS' .
    uline .
    write : /2 'MATERIAL.' , 13 sy-vline , 14 'DESCRIPTION', 60 sy-vline , 61 'TOTAL QUANTITY' , 78 SY-VLINE , 79 'DEL QTY' , 95 SY-VLINE , 96 'REM QTY'.
    uline .
    END-OF-SELECTION.
    LOOP AT ITAB1.
    ITAB1-MOBMNG = ITAB1-MENGE - ITAB1-WEMNG.
    MODIFY ITAB1. "Update the Record
    WRITE : /  ITAB1-MATNR UNDER 'MATERIAL' ,
              ITAB1-TXZ01 UNDER 'DESCRIPTION' ,
              ITAB1-MENGE UNDER 'TOTAL QUANTITY' ,
              ITAB1-WEMNG UNDER 'DEL QTY' ,
              ITAB1-MOBMNG UNDER 'REM QTY'.
    ENDLOOP.
    thx & Regards,
    sunder

    Hi,
    In your code you are appending new lines at two places and at the end you are trying to display all the four values:
    SELECT MATNR TXZ01 ITO CORRESPONDING FIELDS OF ITAB1 FROM EKPO WHERE EBELN = ITAB-EBELN.
    APPEND ITAB1.
    SELECT MENGE WEMNG INTO CORRESPONDING FIELDS OF ITAB1 FROM EKET WHERE EBELN = ITAB-EBELN.
    APPEND ITAB1.
    For the above two Append Statement , Relate the four fields using modify statement in the second append using correct index values.
    Regards,
    Baburaj

  • Logic for Refreshing the ALV Report (Very Urgent)

    Hi Experts,
    My <b>ALV report</b> needs a <b>refresh button</b> on the output.
    The <b>Refresh button</b> should be available to allow user to keep this report on screen and <b>refresh regularly</b> rather than <b>going back</b> and <b>running it again.</b>
    I am using <b>Function modules</b> and not <b>OOPS Concept</b> here.............As i am<b> unaware</b> of OOPS Please provide me solution in <b>FM's Only</b>.
    Kindly send me <b>sample logic</b> for this, <b>Very urgent</b> if ur reply is helpfull.... u will be <b>rewarded heavily</b>.......................
    THanks in advance.
    Rajesh Kumar

    Hi,
    This mean to say that if you have a 'refresh' push button in your gui status, every time you press the button, the list should get refreshed.
    In ALV, to refresh the table you have to call the method "refresh_table_display". 
    It has the syntax very similar to creating the table. 
    It has two parameters. In the first one, you can mention if you want to refresh only the data (the icons are not refreshed) 
    or 
    if you want to refresh only the icons around the grid (the data is not refreshed - this option is mostly not used in day to day applications).
    the synatx is :-
    call method grid (name of grid )->refresh_table_display
    exporting
    IS_STABLE = <STRUCT OF TYPE LVC_S_STBL> (THIS IS FOR DATA REFRESHING)
    I_SOFT_REFRESH = <VARIABLE OF CHAR 01>  (THIS IS FOR ICON REFRESHING).
    Regards,
    Bhaskar

  • Displaying files in Reports6 (Oracle Reports Team) URGENT

    HELP! I cannot come up with a solution to this problem as yet and
    I am desperate.
    I have two different file formats
    format 1: 4 fields ==> Branch, Policy Number, Due Date, Amount
    length :43 characters.
    format 2: 8 fields ==> the above plus others
    length :73 characters.
    NB. This is the structure of two separate client files.
    Aim: To display the contents of the files to the client.
    What has been tried:
    1. Text_io.getline was used to read each record from file into
    fields on the screen(this is done within a procedure). In
    the Data Model view the company name was retrieved so that
    the appropriate format (format 1 or 2)could be chosen. In the
    layout model depending on the company the corresponding
    fields were displayed. However when the program was run only
    the last record in the file was displayed. How does one get
    Reports6 to show all the records that was read?
    2. The repeating frame concept does not apply as I simply want
    to display files read and even when a select was done where
    I know the values would be repeated this did not work - only
    the last line of the file was displayed.
    3. Again another dummy select was tried with the intent of
    using the 'Read From File' property. This did not apply in
    my situation. ( Or it could be that I do not understand how
    to use this).
    Any help that is forthcoming is greatly appreciated.
    Thanks in advance.

    hello,
    this request sounds now more as if you want to use the text-file
    as a datasource.
    unfortunatly this is not possible with reports 6i as the support
    for text-files as datasources will be introduced with the next
    (upcoming) release.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Drill Down Reports - Very Urgent

    I have the following situation.
    I want to create a drill down report and pass parameters from the
    master report to the detail.
    I built 2 simple tabular reports Drill1 (master) and Drill2 (detail). I have placed a button in the repeating frame of the Drill1 report, and I wrote the following code in its trigger:
    srw.run_report('report=DRILL2');
    I have tested the report and it works just fine.
    But .... I want to pass as a parameter to the second report the value of a field. According to the documentation I shall change the button trigger to
    srw.run_report('report=DRILL2 paramform=No p_1=''' || :field1 || ''''); -- (the value is a string)
    I did so but it gives me the REP-0159 error. Am I doing something wrong?
    Note that I am using reports version 6.8.12.1
    Thanks
    Ioanna

    hi Ioanna,
    The Problem seems to be with the quotes in your srw.run_report command line . The appropriate commandline should be
    srw.run_report('report=DRILL2 paramform=No p_1='||:field1||' ... <rest of the cmd line >');
    ( note the quotes before / after ||:fie1d1|| .. )
    Regards
    Oracle Reports Team

  • E-Mail Report (Very Urgent Please)

    Sir, I want to e-mail my report from the Oracle Reports Parameter form.But i got the error "REP-4220 : Problem in mail subsystem".MAPI is properly installed.All entries are coerrect in Win.ini file and system Registery.But the problem remains the same.Please let me know the answer How can i e-mail my report.I have Outlook Express of Window 98 Second Edition.

    You might want to delete the report server .dat file and restart the server and try
    his also could be one of the issues we had seen and fixed in 9.0.2.3. Please ensure you have the latest patch applied
    Thanks
    The Oracle Reports team

  • BW- Rolling Reports- Very urgent.

    Hi All,
    I have very critical requirement i.e to design rolling report for a Module ,,say CO,,Can any1 tell me, how shud i start about it,, As i have never worked on rolling reports before, please guide me on to start with,,Any help wud be appreciated.
    Thanks

    Hi,
    Rolling report will be mainly used for planning. Rolling Reports are used for Forecasting Plans,actual planned values for A particular periodThere was a report developed for a Project.
    Lets say you have to forecast the sales upto the end of the year. So from Jan to Mar you will have actuals and from April to Dec you will have planning figures. This is normal scenario, but when you say rolling, then it have to re-plan the forecast figure from that month onwards.
    Lets say you have data from Jan - Dec like
    100 150 200 250 300 350 400 450 ...upto dec
    Here Jan - March are actuals and april to dec is planned
    in Feb, March is a planned data lets say you planned 175 but you got 200 as actuals.
    Now you have to replan the following months since your feb planning is no more valid because of march data (Planned and actuals vary). So now they will again do a forecast based on March actuals and continue until the year end.
    This planning some times will be based on Quarterly Rolling (Replan will be done in every 3 months), halfyearly Rolling(Replan will be done in every 6 months).
    Pls chk this link;
    http://help.sap.com/saphelp_sem60/helpdata/en/81/3b90467b396e40b2d904aa25a712bd/frameset.htm
    Regards
    CSM Reddy

  • Supress the -ve sign in report painter report - VERY URGENT

    Hi
    In a report painter report, can anybody please let me know how to display a negative value, for example, "-1234.56" as "(1234.56)".
    IT IS VERY URGENT

    Check If value is less than 0,
    then replace '-' with space ( to remove the '-' from the right end) and then Concatenate '-' and value into a variable.
    Regards
    Raj

  • Deploying PLL file in Application Server (oracle IAS10g) VERY URGENT

    Hai,
    I have some doubts abt PLL files.(PL sql Libraries)
    I tried to use PLL in Windows and it runs fine.
    When I tries to use that pll on Linux Advanced Server 3 using Oracle IAS10g, The Function in the pll is not accessible.
    What am I doing wrong??
    1.In Which path I have to deploy the PLL file
    2. Is the PLL file is compiled
    3. How to make a Linux Version out of it?
    Our Pll file name is ENCRIPT1.pll
    Th error message is
    PL/SQL ERROR 201,...
    identifier ENCRIPT1 must be declared
    Please Help
    IT IS VERY URGENT

    hai
    As u said, We have compiled the pll file in linux application server The compilation of the pll file was successful. And then compiled the form in linux application server. But still the same problem occurs. We have also checked the case sensitivity. Actually the form is working very well in the Wndows machine.
    The error is
    identifier ENCRYPT MUST BE DECLARED
    PLSQL ERROR 201

  • Customising Standard Oracle Package - Very Urgent

    Hi,
    We are in the process of Customising our Quotes Module.
    we have a situation where we need to have a customization in the way the template is added to the quote,
    And for this change we are need to customise an Existing Oracle Standard Database (Package) Procedure (ASO_QUOTE_PUB_W) Add_Templates_To_Quote.
    Is there any document on customising standard database procedure ?
    The alternative way may be to create a custom procedure and hence need to update the addTemplate API in the Quote class (which seems to be a roundabout way..)
    Can anyone help on this ?
    Thanks in Advance
    Senthil

    What we have decided upon is, Create a custom package with this customized procedure. And then create a new Quote class extending the Oracle Standard Quote class, this new Quote class will have the overloaded function to call the new Package-Procedure.
    i was just wondering about the deployment of this new pkg-proc, are these database objects compiled in apps schema ? i dont think so, but just got a doubt..
    Basically, its the Quotes Module. When creating the quote from a template, now the user can give number of times the template has to be applied and this multiplier has to be applied to the Quote Lines Quantity.
    Since, this addition of Quote Lines from Template to Quote is happening at the package, we will just apply the multiplier value to the Qty column of the Quote Line Record Type in the package, so that the standard package does the saving.
    We tried such an experimental change, and after this addition , the page time out. when we removed the extra 1 line of code, the screen seems to be working.
    The extra 1 line is just like
    l_qot_line_type.quantity = l_qot_line_type.quantity * p_multiplier
    thats all.
    What could be wrong ?

  • Tables for Sets in report writer/painter reports - very urgent

    Hi All,
    Does anyone know which table keeps the information of sets used in report painter/writer reports? I have to get the information like “values used in the set”, “set usage” etc.
    Your help is highly appreciated and rewarded with points
    Thanks in advance
    Kumar

    tables :setnode,
            setheader,
            setleaf.
    or Fms
    G_SET_FETCH
    regards
    Prabhu

  • Recover Table in Oracle 10G - Very Urgent--Kindly Help

    Hi Guru
    I m using oracle 10G R2 in Unix. One of the user has unfortunately updated the table with wrong dataa aand hence we need to recover the table.
    Our DB does not have flashbaack databaase option on.
    For recovering the table using Flashback table point in time recovery, do we reqquire flaashback database option on?
    If so then how can i recover the table?
    Can i recover it theough RMAN??
    Kindly Advise.
    Thanks
    Ram
    Edited by: user448837 on Jan 8, 2010 5:55 PM

    I understand, but your post implies ("Because I have..") that you need to set a proper value for DB_FLASHBACK_RETENTION_TARGET for FLASHBACK TABLE to work and this is not the case.
    For example:
    SQL> ALTER SYSTEM SET DB_FLASHBACK_RETENTION_TARGET=1;
    System altered.
    SQL> CREATE TABLE TEST AS SELECT * FROM DUAL;
    Table created.
    SQL> ALTER TABLE TEST ENABLE ROW MOVEMENT;
    Table altered.
    SQL> SHOW PARAMETER DB_FLASHBACK
    NAME                                 TYPE        VALUE
    db_flashback_retention_target        integer     1
    SQL> SHOW PARAMETER UNDO
    NAME                                 TYPE        VALUE
    undo_management                      string      AUTO
    undo_retention                       integer     86400
    undo_tablespace                      string      UNDOTBS
    SQL> DELETE FROM TEST;
    1 row deleted.
    SQL> COMMIT;
    Commit complete.
    SQL> BEGIN DBMS_LOCK.SLEEP(120); END;
      2  /
    PL/SQL procedure successfully completed.
    SQL> FLASHBACK TABLE TEST TO TIMESTAMP SYSTIMESTAMP - INTERVAL '2' MINUTE; 
    Flashback complete.
    SQL> SELECT * FROM TEST;
    D
    X

Maybe you are looking for

  • Spry Menu Toolbar

    For some reason, I can't get my submenus to line up under their menu title on my spry horizontal menu bar. They are off centered to the right in Internet Explorer, but not in FireFox. Can anyone help?

  • Creation of an Old Asset

    Hi All, Our Company had purchased some similar assets about two years back through direct purchase. But the company did not create any asset master record for those assets and even did not calculate the depreciation. But these assets are now under op

  • Disk Utility asked me to Format my MBP!! What to do and HOW!

    Hi guys, I've recently noticed that my Mac takes a bit of time to start anymore, I looked around and I saw that checking my Hard Disk should help by "Verifying" the disk and "Repairing" it if needed. I did it today and I was asked to Repair the disk

  • How to display date for each packet in a Cisco ASA packet capture

    Hello, Quick question...On a Cisco ASA (v8.2) how does one show the date of each packet in a packet capture? When performing a packet capture from CLI you can do a "show capture testcapture" command and you can see that the time is at the beginning o

  • Installation fail because of Mozilla

    Hi ! I'm trying to install a program client from my university website (http://www.interufr.dauphine.fr/citrix.html) but the installation fail with this error message : "Le programme d'installation ne dispose pas des privilèges nécéssaires pour accéd