Can I schedule a discoverer In Oracle Discoverer Desktop, Plus, Viewer ?

Hi All,
I have a version of Oracle Administrator : 10.1.2.48.18. My customer tells me if he will be able to schedule a report in the Oracle Discoverer, and then this schedule send an email with the information that shows the report.
Thanks in advance,
Mariano.-

Hi,
You cannot schedule and email using Discoverer scheduling. You have to use a third party scheduler and Discoverer Desktop. This article (http://ascbi.com/downloads/Third%20Party%20Documents/Scheduling%20through%20Concurrent%20Manager.pdf) may give you some ideas on how you can use third party scheduling with apps. A bit of extra development will also give you emailing of the scheduled output.
Rod West

Similar Messages

  • Oracle Discoverer Administrator 'OUT OF MEMORY'

    Hi ,
    I'm trying to include a case statement in the custom folder based on a query.when I include the case statement in the SQL query and click Validate SQL button i get error 'out of memory'.
    can anyone plz help me with this.
    thanks

    Hi
    The Out of Memory is not 100% related to the amount of memory you have on your machine. There is an internal cache that it is working with and this is controlled from within your system registry. These settings can be found in [HKEY_CURRENT_USER]\Software\Oracle\Discoverer 10\Application and they are called MaxVirtualDiskMem and MaxVirtualHeapMem and these are typically set to the amount of memory on your PC or even higher where 512000000 equates to 500 MB. I have rarely seen making a change to these have any impact but you can always try.
    As a test, try using the Admin command line interface to do what you want. I have seen exports, as mentioned by Russ, fail using the application but work just fine when called from the command line.
    You seem to be saying when you run the query yet in your question you say running in Discoverer Administrator. You cannot run a query in Administrator so are you saying that you get this issue when running the query in Desktop or in Plus? For Desktop you can try altering the MaxVirtualDiskMem and MaxVirtualHeapMem, whereas for Plus these will have to be changed in the pref.txt for the application server.
    You can also try increang
    Best wishes
    Michael

  • Open balance in oracle Discoverer 4

    hi,
    I have supplier statement in oracle discoverer and it works fine. I give from date / to date parameters and it return transactions summary per each supplier. I need to add the open balance amount for each supplier to have real statement. so can you provide me with any idea to do that in discoverer.
    thanks
    Oracle discoverer plus 4.1.37.00.0

    Hi,
    What you want to do is difficult to do in Discoverer, because you need to add the same amount into the report more than once to generate the open and close balances. Also Discoverer always returns a table of data so the columns must be the same for each row.
    You can generate this report by creating a database view or custom folder that unions together the amounts for the open and closing balances.
    For example, if your table was called inv_table then you can create a view or custom folder containing the following query which has some extra columns for selecting rows in your report:
    select name, null inv_date, 0 num, amount, 'OPEN' sect, inv_date sdate, inv_date edate
    from inv_table
    union all
    select name, inv_date, num, amount, 'STMT' sect, null sdate, inv_date edate
    from inv_table
    union all
    select name, null inv_date, null num, amount, 'CLOSE' sect, null sdate, inv_date edate
    from inv_tableThen you can create your report based on this folder selecting the name, inv_date, num, sect and SUM(Amount) from the folder. Create sdate and stmt_start and stmt_end date parameters for the report and then use the following conditions to select the rows you want:
    (sdate < :stmt_start or sdate is null) and edate <= :stmt_end
    and
    (inv_date between :stmt_start and :stmt_end or inv_date is null)Rod West

  • Oracle Discoverer Ver. 4.1.44

    Hi,
    Can someone please direct me to the specific install kit I need in to install Oracle Discoverer 4.1.44?
    Thanks,
    Nir

    Discoverer is a part of Oracle Business Intelligence.
    Discoverer 10g has been available for two versions now:
    OracleAS Discoverer 10g (v9.0.4)
    and
    OracleAS Discoverer 10g (10.1.2). This is also known as Oracle Discoverer 10g R2 (10.1.2).
    When installing Discoverer as part of the full application server install, the product is called Oracle Application Server Discoverer, whereas when you install it in a standalone mode with Oracle Business Intelligence, it is called Oracle Business Intelligence Discoverer. Irrespective of this, the product name itself remains unchanged as Oracle Discoverer.
    Oracle Discoverer is certified against Oracle database 9i as well as 10g.
    You need to download Discoverer to use it against either of these two database versions. Which you can if you go to Oracle.com/technology and follow the product download links.
    It doesn't matter what database you use, Oracle products can be used against the latest version of the database, and for the time being against the 9i version also (with a few exceptions).
    thanks
    Abhinav Agarwal

  • Call Discoverer from Oracle Applications

    I need to view the discoverer workbooks from Oracle Applications
    menu. Sombody know how?

    We ran into the same issue when we upgraded Disco to 10g (do not recall exact version) about 18 months ago - unfortunately, we are off till the new year and I will not be able to determine what the resolution was until then.
    Pl see if any of these MOS Docs can help -
    788706.1 - Error Unable To Connect To Oracle Applications Database 'afscpgcs' After Cloning An APPS Instance & Changing APPS Passwords
    306235.1 - Launching A BIS Workbook Gives Unable To Connect To Oracle Applications Database (afscpgcs) Error
    459941.1 - Secure Ticket Connection Fails From e-Business Suite
    784358.1 - Connecting to Oracle EBS with Discoverer Fails with ORA-01017 Invalid Username/Password Error
    Try enabling tracing as noted in 370800.1 (How To Create An E-Business Suite Connection Trace For Discoverer 10g (10.1.2) Plus / Viewer) to see if you can find more details about the error.
    HTH
    Srini

  • Oracle Discoverer error

    hi, i have the following message when i try to open an oracle discoverer report using web version
    "contact with the discoverer server has been lost if this persists, please contact your discoverer administrator"
    while i can open the same report using oracle discoverer desktop for windows.
    thanks

    It sounds like the discoverer thread on the server has crashed, perhaps because it has run out of memory.
    Set the Retrieve data incrementally in groups of to 25 rather than the default of 250 (Tool - Options - Query Governor ). DBA should look into where the default comes from in the system so you do not need to touch each end users machine.
    Check the file pref.txt in <ias home>/6iserver/discwb4/util. It sounds like the "RowsPerFetch" setting needs to change. Once you change it you need to stop and re-start (stopall.sh and startall.sh) Discoverer.
    Also refer,
    Bug 3297557 - Contact With Discoverer Server Lost Running Worksheet
    Note:317066.1 'Contact With Discoverer Server Has Been Lost' Switching Worksheets In A Workbook

  • Scheduling a job in Oracle

    Hi ,
    how can i schedule a job from Oracle ??
    this is what i declared
    create or replace PROCEDURE myjob
    IS
    v_job number;
    begin
    dbms_job.submit(v_job,
    'PLSQL_program_I_want_to_run;',
    sysdate,
    'sysdate+1/24');
    end;
    ques :
    1. how shld i schedule it to run every 15 minutes ? i saw from somewhere that 1/144 ==> 10 minutes ? i dun quite understand
    if 1/24 equals 1 hr
    then for 15 minutes
    can i do this ((1/60)*15)/24 ??
    2. once i execute this procedure manually , it shld be running as per the next sheduled dates ?
    3. can this procedure somehow be set in such a way that if oracle db is up after being down for some reasons , this procedure can auto kickoff by itself ?
    appreciate ur advise
    tks & rdgs

    Hi,
    If you are using Oracle release 10g or higher you should be using dbms_scheduler instead of dbms_job for several reasons.
    1) Scheduling every 15 minutes is much easier with dbms_scheduler e.g.
    begin
    dbms_scheduler.create_job(
    job_name=>'myjob',
    job_type=>'plsql_block',
    job_action=>'scott.mypackage.myproc(3);',
    repeat_interval=>'freq=hourly;byminute=0,15,30,45;bysecond=0',
    enabled=>true
    2) Now that jobs have real user-specified names, killing them is easier
    exec dbms_scheduler.stop_job('myjob')
    This will run the job at X:00, X:15, X:30, X:45 as long as the database is running (even after restarts) and you can pick any job_name you want.
    This should meet all your requirements. Hope this helps.
    -Ravi

  • Create a dashboard like a page on Discoverer Desktop / Plus?

    Hi,
    Is it possible to create a dashboard like a page on Discoverer Desktop / Plus / Viewer. A page (or workbook sheet) with 4 – 6 graphs and one table?
    e.g. below layout (G is my graph and T is table)
    G1 | G2
    G3 | G4
    G5 | T1
    Thanks

    Hi
    This is not possible in Discoverer Plus, Viewer or Desktop. However, using Portal you can do this by having six different, or releated, Discoverer graphs displayed side by side. You just create six different portlets. Simple as that.
    Best wishes
    Michael

  • Oracle Discoverer  Administrator - Scheduling summaries

    Hi,
    How to schedule three summaries in one job such that one summary is executed after the refresh completion of other (ie. in sequence) which are available in Oracle Discoverer Adminstrator.
    Thanks in advance.

    Hi,
    You can do that way by scheduling through a concurrent manager.For more details go through this links
    Advantages of scheduling a work book through concurrent manager.
    [http://ascbi.com/downloads/Third%20Party%20Documents/Scheduling%20through%20Concurrent%20Manager.pdf]
    Hope this helps you,
    Best Wishes,
    Kranthi.

  • Where can I find Oracle Discoverer Plus Download?

    <email address removed by moderator so that you won't get spammed for all Eternity>
    can someone guide me please?
    thanks
    Fernand

    Hello
    You need to install the 11.1.1.2 base software and then apply patch 11.1.1.6.
    The base software is available from Oracle e delivery by starting here: https://edelivery.oracle.com
    You need to log in with your OTN login and password and accept the license terms.
    Once logged in, on the search form enter Oracle Fusion Middleware in the Select a Product Pack box then select your platform below.
    With both filled in click the Go button
    On the next page scroll down till you find the entry called Oracle Fusion Middleware 11g Media Pack for 11.1.1.6.0 - click the link
    On the next page scroll down till you find the downloads for Oracle Portal, Forms, Reports and Discoverer 11g (11.1.1.2.0) - there will probably be several files to download
    The patch is also available from e delivery on the same page as the 11.1.1.2 and is usually located one entry down below the other others. Unlike 11.1.1.2 which comes in multiple files the patch for 11.1.1.6 is nearly always a single large file between 1.5 and 2.0 GB in size
    Note: when you install 11.1.1.2 you do a software only install. When you apply the patch you just install it using setup. When both are done you need to run the config.bat (or config.sh) file from within the Middleware bin folder.
    Note 2: you must also have downloaded and installed weblogic 10.3.6 and created a repository for Discoverer using RCU 11.1.1.6
    Your full list of software therefore is:
    1. Java JDK
    2. Equivalent JAVA client
    3. RCU 11.1.1.6
    4. Install Weblogic
    5. Install Discoverer 11.1.1.2 software only
    6. Install Discoverer 11.1.1.6 patch
    7. Configure Discoverer using config.bat or config.sh
    Hope this helps
    Michael
    PS. I will be covering installing the software in my upcoming Oracle Discoverer 11g Handbook which is scheduled for release early 2013

  • Oracle Discoverer report pulls incorrect result when scheduled.

    Recently the database was migrated to 10.1.2 RAC from 9.2.0.6, so the discoverer EUL is now resides on new database.
    after migration the report which pulls correct results when run interactively is pulling incorrect result when scheduled in Discoverer.
    This report used sysdate and aggregate functions, i had ran the same report simultaneously( Directly in Discoverer Desktop/Plus and scheduled in discoverer), but the data retrieved in both case is not matching.
    here is the query. any help is appreciated.
    SELECT /*+ FIRST_ROWS */ A.SITE_ID as E175108,B."SYSTEM DESCRIPTION" as System_Prefix,
    B."SYSTEM PREFIX" as System_Description,
    COUNT(CASE WHEN ( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) ) < 0 THEN 1 ELSE TO_NUMBER(NULL) END) as Less_than_0_Days,
    COUNT(CASE WHEN ( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) ) > 121 THEN 1 ELSE TO_NUMBER(NULL) END) as 0_to_14 Days,
    COUNT(DECODE(TRUNC(( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) )/31),3,( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) ),to_number(NULL))) as 14_to_30_Days,
    COUNT(DECODE(TRUNC(( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) )/31),2,( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) ),to_number(NULL))) as 31_to_60_Days,
    COUNT(DECODE(TRUNC(( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) )/31),1,( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) ),to_number(NULL))) as 61_to_90_Days,
    COUNT(CASE WHEN ( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) ) BETWEEN 15 AND 30 THEN 1 ELSE TO_NUMBER(NULL) END) as 91_to_120_Days,
    COUNT(CASE WHEN ( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) ) BETWEEN 0 AND 14 THEN 1 ELSE TO_NUMBER(NULL) END) as 120_Days_Plus,
    COUNT(TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE)) as Total
    FROM PSTAGE.ALL_EQUIPMENT A,
    ( SELECT A.SITE "SYSTEM PREFIX", A.DESCRIPTION "SYSTEM DESCRIPTION", A.SITE_ID, B.SITE_DESCRIPTION, A.G2B_ID
    FROM SITE_LIST A, ALL_CF_SITE_CONTROL B
    WHERE A.SITE_ID = B.SITE_ID
    ORDER BY 1, 3
    ) B
    WHERE ( (B.SITE_ID = A.SITE_ID))
    AND (A.EQUIPMENT_STATUS_CODE IN ('T','7'))
    GROUP BY A.SITE_ID,B."SYSTEM DESCRIPTION",B."SYSTEM PREFIX"
    ORDER BY B."SYSTEM DESCRIPTION" ASC ;
    Thanks!

    Hi sunil,
    Rod is referencing the NLS parameters i.e.
    Can you please let me know which NLS parameters you are referring toNLS parameters in this scenerio may be the date and language for that session.Do check out
    SELECT * from NLS_SESSION_PARAMETERS
    how i can check if there any differences in the NLS parameters when report is scheduled or run interactivelyI think you should run the trace file.Iam not sure about it.
    It would be system_context.
    Hope it helps you.
    Kranthi.

  • How can I set the Corporate Logo instead of Oracle Discoverer logo in 10g

    Hi,
    How can I set the corporate logo/corporate welcom html file instead of oracle discoverer logo in oracle discoverer plus for olap reports version 10.1.2.48.18. while loading the d4o sessions.
    Exactly what are all the steps that I need to follow .
    Thanks,
    Natarajan.U

    Hi Lance,
    Thanks for the documents. Its really helpful to me.
    I am able to change the look and feel of my reports. But I am unable to change the corporate logo.
    The steps that I followed.
    1.Goto discoverer Plus configruation.
    2.Goto Logo change the option button from None to File and Choosed the .jpg file from C:\Logos.
    3.Restarted the application server.
    4.Open the BI plus reports in IE. But still I am seeing the same Oracle Logo only.
    5.But whatever the look and feel like plastic/system/oracle I changed I am able to see the changes.
    6.The logo change is not as simple as I thought??. I need to create Jar on this logo and I need to put the jar file in java /j2ee directory???.
    Thanks,
    Nats

  • Need oracle discoverer faq s can any body help me

    Hi,
    I need some faq s in oracle discoverer for an interview purpose. can any body tell send me or tell me where i can get those.
    Thanks in advance,
    Chaitanya.

    <br>Hi,</br>
    <br>Have you read OracleAS Discoverer ?</br>
    <br>Nicolas.</br>

  • Can oracle discoverer 10 be installed on Windows 2003 server

    Hi,
    I have couple of queries related to Oracle Discoverer. Need help urgently.
    1. Can Oracle Discoverer 4.1 version support Windows 2003 on which Citrix server version 4 or above is installed? If yes, please let me know the patch details to download the same.
    2. Can Oracle 10g BI Tool, Oracle Discoverer Administrator and Desktop be installed on Windows 2003 Server Operating System on which Citrix server version 4 or above be installed?
    Thanks in advance.
    Regards,
    Rajesh Gurram

    Hi,
    1. Discoverer 4.1 has been desupported but was only certified for Windows 200 and XP
    2. Discoverer Desktop and Admin is support on Windows 2003:
    2003 SP1+ 10g (10.1.2.0.2 )
    One thing I have to mentioned is that Oracle does not support any Citrix client operations.
    If ever you encounter a problem you will need to reproduce the problem
    outside of the Citrix environment to prove that it is not the cause of the problem.
    Regards
    Roelie Viviers

  • Oracle discoverer 9i can not running at windows 2003 server

    Hi, Please help me.
    When I upgrade from windows 2000 advance server to windows 2003 server the oracle discoverer 9i can not be open. When I open it there is a error "Failed to open document"
    How to make it run smoothly at windows 2003 server?
    Thank You

    Hi,
    This is a bug in your version of Discoverer. There is a patch to make it work with windows 2003 or you can upgrade your Discoverer to a later version. The patch should be available from Oracle support. I don't know of anyway to make your version work with 2003.
    Rod West

Maybe you are looking for

  • C drive running out of space resolve this without formatting the C: drive.

    Hi every one,                     i am having window xp pro sp3 running machine with 2GB of RAM, 150GB Hdd, C drive 30GB, D drive 60GB, E drive 60GB. After installing all the application its show the remaining space as 14GB but day after day the spac

  • Many many problems after 10.5.8 update

    Used software update to install 10.5.8 after having been in 10.5.7. Since then: 1: Firefox beachballs constantly, then after force quitting, which takes forever I can't open the application. I click the icon in the dock and nothing happens. I open th

  • Date format in Finder

    Swedish Leopard 10.5.2 In the Finder's list view, is it possible to alter the date format shown? In the system settings, there are 4 different date strings available to alter (I don't want to start by altering them if I don't need to). Loosely transl

  • Error in Tcode ME21

    After creating PO in ME21 it get saved but while viewing in display mode it shows PO not available.sometime it get saved but some time does not..how to correct this problem?

  • How can I get size of fetched data size when run a SQL ?

    Hi, When I run a SQL how can I get fetched data size? regards,