Re-scheduling workbooks from Discoverer Admin

Hi All,
We have Discoverer integrated with Oracle Applications.
When logging into Discoverer Admin as EUL owner, it is possible to re-schedule workbooks scheduled by other users by navigating to 'Tools->Manage Scheduled Workbooks...' and clicking on the 'Edit' button for a workbook. It allows to change date/time of when the report should be executed and successfully updates the Discoverer meta-data tables in the EUL. However, the dbms job associated with the workbook is not re-scheduled, so the report is executed at the original time.
I am not very familiar with the Discoverer, but my feeling is that it is not properly configured in our installation. Any advise on how to fix this issue would be greatly appreciated.
Thank you.
Denis

Hi,
You can move the workbooks by using a Discoverer export/import from Administrator.
Rod West

Similar Messages

  • Export workbooks in discoverer admin

    hello
    I am able to export workbooks from discoverer admin. in DEV env.
    The file is in '.eex' format.
    How can I import '.eex' file into Discoverer Desktop in Test env.
    If i import the same .eex file into Discv Admin @ Test..How can i open it in Desktop@Test.
    Appreciate any feedback
    thanks
    kp

    Hi Tamir,
    As i was having only discoverer plue in 11i i can only export using disc.admin.
    Disc plus dont have options for this
    THanks a lot for your tip..It worked
    I selected
    Refresh The Object
    and "By Identifier"
    I checked only take ownership if original owner can not be found
    and it worked fine
    I have few more clarifications
    1)
    When I click on =Refresh the object
    there is a check box at the bottom says: Preserve Display Related Properties
    Should I check it or not
    2)
    Also when I open the workbook under my name
    workbook was opening only with this option->
    Open the workbook in the current database account
    If the workbook is asking if i need to substitute a join, I may need to do that right?
    thanks
    kp

  • Scheduling workbooks in discoverer desktop

    I'm trying to figure out how to schedule workbooks to run and export the output to a folder in Discoverer Desktop, I see in many posts that it can be done easily, I just can't figure it out, can anyone help?
    I did confirm with my DBA that we do have the DBMS_Job package installed.
    When I click on schedule as a user I get the following message:
    A workbook cannot be scheduled for the following reason(s) - summary refresh 'job_queue_processes' parameter is 0
    I would appreciate any help you can offer.
    Thanks,
    Janet
    email: [email protected]

    Hi Janet
    You do not need to have DBA privilegs to schedule workbooks and any user should be able to do this. Here is an article from my notes:
    Setting up Workbook Scheduling
    The workbook scheduling feature in Discoverer uses native features in the Oracle DBMS, and is therefore only available when running against the Oracle database. This feature uses the same highly scalable and reliable processing procedures ithin the kernel, since the summary management capability and the setup for both features is similar. These procedures use standard packages in the DBMS called DBMS_JOB.
    To enable the processing procedures for workbook scheduling in Discoverer, follow these steps:
    A. Grant Schedule Workbook Privilege to the user.
    B. Confirm that DBMS_JOBS has been installed.
    C. Specify result set storage.
    D. Set the time period at which the process kicks in.
    These procedures are described in the following sections:
    A. Grant Schedule Workbook Privilege to the User
    The user must be granted the Schedule Workbooks privilege in the Privileges dialog. Connect to the Administration Edition, and grant the Schedule Workbooks privilege in Tools->Privileges dialog.
    B. Confirming that DBMS_JOBS is Installed
    1. Log onto SQL*Plus as the Administrator, and execute the following SQL statement:
    SQL> select * from all_objects where object_name='DBMS_JOB' and
    object_type = 'PACKAGE';
    If the statement returns no rows, use SVRMGRL to create the necessary packages.
    2. From Windows XP or NT, select Start->Run.
    3. Type in one of the following:
    SVRMGRL
    4. When in the DBA facility, type CONNECT INTERNAL.
    5. Execute the following SQL statement:
    SQL> start <ORACLE_HOME>/rdbms/admin/dbmsjob.sql;
    SQL> start <ORACLE_HOME>/rdbms/admin/prvtjob.plb;
    C. Specifying Result Set Storage
    When a scheduled workbook is run, the results are stored in database tables
    within the database. Result set data created as part of the workbook
    scheduling process may be stored in one of two areas:
    the user's own schema or a centralized schema.
    User's Schema
    In order to enable workbook scheduling in the user's own database schema,
    the user requires the following database privileges:
    Create Procedure
    Create Table
    Create View
    To grant these privileges, do the following:
    1. Log onto SQL*Plus or SQLDBA as the Database Administrator.
    2. Type the following:
    SQL> Grant CREATE PROCEDURE to <USER>;
    SQL> Grant CREATE TABLE to <USER>;
    SQL> Grant CREATE VIEW to <USER>;
    SQL> Grant EXECUTE ANY PROCEDURE to <USER>;
    SQL> Grant SELECT on SYS.DBMS_JOB to <USER>;
    SQL> Grant EXECUTE on SYS.V$_PARAMETER to <USER>;
    where <USER> is the userid of the person who is to be allowed to schedule
    workbooks.
    These privileges must be granted directly to the user and not to a database
    role.
    Advantages: A database limit can be specified on the maximum amount of data a
    user can store in the database. If the result set is stored under the user's
    schema, then you keep control over the maximum amount of space one individual
    user can fill with result sets. If the user creates a scheduled workbook that
    fills that space, it affects only his/her own scheduled workbook.
    Disadvantage: The user is required to have the above privileges in the database.
    Repository User's Schema
    In order to enable workbook scheduling using a centralized repository user's
    schema, the SQL script batchusr.sql must be run in SQL*Plus or SQLDBA as a
    database administrator (such as, SYSTEM). This script creates a new user that
    is granted the above privileges.
    In addition, the administrator of the EUL must change the user so that the
    Repository User property is pointing to the repository user's schema just
    created. The centralized repository user's schema may be customized by the
    database administrator for space management purposes and underlying data access.
    NOTE: SELECT ANY TABLE access is given by the script batchusr.sql,
    but this may be limited provided the repository user's schema is
    granted access to the underlying data that will be accessed for
    workbook scheduling.
    The repository user created will not be able to directly schedule a workbook
    through the User Edition.
    Advantages: Each user does not need DML procedures to run scheduled workbooks.
    Disadvantages: One user can potentially run a scheduled workbook that fills the
    available result set space, preventing other scheduled workbooks from running
    until it is cleared.
    D. Setting the Start Time for Workbook Processing
    The workbook processes run within the database on the server, and are
    controlled by parameters in the initialization file of the Oracle DBMS
    - the INIT<SID>.ORA file.
    To limit the number of processing requests that can run simultaneously:
    The parameter job_queue_processes specifies the number of concurrent processes to use to process DBMS_JOB. It controls the number of processing requests that can be handled simultaneously. The default value is zero, which means processing requests will not be created. You should set it to a minimum of 2 or more if you have any other applications that use DBMS_JOB.
    You need more than one job queue process, because if one job fails for any reason, it may keep getting re-submitted, and thus, prevent everything else in the queue from being completed. If you want to have 10 simultaneous processing requests handled, then you will need to set this to 10.
    The INIT<SID>.ORA parameter job_queue_interval is the time in seconds that controls how often the job processes wake up to process pending jobs. The default is 60, which is quite frequent. What you set this to depends on how frequently you want the process to wake up and serve the requests that have been made. Oracle recommends that you update the 60 seconds default to at least 10 minutes (a value of 600).
    NOTE: This parameter also affects summary management.
    To enable these parameters:
    1. Locate the INIT<SID>.ORA file.
    For example, on Personal Oracle7 the INIT<SID>.ORA file is held in
    <ORACLE_HOME>\database. Its default name is INITORCL.ORA where ORCL is
    the <SID> name.
    2. Enter 2 lines into the file. For example:
    job_queue_processes = 2
    job_queue_interval = 600 (equivalent to 10 minutes)
    NOTE: The summary management and workbook scheduling features both use this scheduling capability within the Oracle DBMS. The interval you specify and the number of concurrent requests affect both features.

  • Can't create scheduled workbook on Discoverer desktop

    Hi ,All
    I want to create a scheduled workbook on discoverer desktop(end user version) by....
    1. grant privileges to user in the following
    CREATE PROCEDURE
    CREATE TABLE
    CREATE VIEW
    SELECT ANY TABLE
    2. grant scheduled workbook to user in Discoverer Admin(Menu-->Tool--> Privileges)
    when I launch discoverer desktop to schedule workbook ,I can select workbook, set time to run and set parameter but when I accept all parameter to schedule workbook .....the program show the error
    "Internal EUL Error: TransError - Unexpected transaction error"
    Anyone know what is the problem and how to solve it ?
    Thank you,
    Mcka

    Hi
    See the following link, maybe it helps you:
    http://download-uk.oracle.com/docs/html/B13916_04/scheduled_workbooks.htm#sthref493
    Ott Karesz
    http://www.trendo-kft.hu

  • Scheduling Workbooks on Discoverer Viewer.

    Hello guys
    I know you can schedule workbooks in Discoverer 10g Plus, but can you do this in Viewer? If not, then does this mean that we must give all our users Discoverer Plus so that they can schedule their own workbooks? Users used to schedule their own workbooks on Discoverer 4i. Now we are upgrading to 10g and we wanted to give them Viewer access. How do they schedule workbooks in Viewer?
    Thank for all your help..

    Hi,
    In Discoverer viewer you cannot schedule reports though you can retrieve reports that have been scheduled.
    Users that have access to Viewer will also be able to access Plus by entering a Discoverer Plus URL. The users privileges are stored in the EUL and determine what features the Discoverer user can access, not which tool they can use. So if the user has read-only access to the workbooks in Viewer then they will also have read-only access in Plus.
    Rod West

  • How to open a defult workbook from Discoverer Plus

    Hi all,
    Is it possible in Discoverer Plus for a user to open a pre defined worksheet in a workbook when he logs in without having to select the workbook and then select the worksheet?
    Please advise how to achive this.
    Any help will be greatly appreciated.
    Thank you all.
    Yjk

    Hi Yjk
    This is possible but you will have to alter the URL call to do it and add the workbook name to the end of the URL.
    You can use either the names of workbooks and worksheet or unique IDs of workbooks and worksheets. Using unique IDs is easier and helps avoid encoding problems with long names. Unique IDs are language independent. The following are the URL parameters to use while working with workbooks and worksheets.
    Discoverer Plus Relational:
    Workbooks:
    opendbid=<workbook ID>
    opendbname=<workbook name>
    Worksheets:
    sheetid=<worksheet ID>
    sheet=<worksheet name>
    Discoverer Viewer:
    Workbook:
    wbk=<workbook ID>
    wb=<workbook name>
    Worksheet:
    wsk=<worksheet ID>
    ws=<worksheet name>
    Discoverer OLAP:
    Workbooks:
    workbookname=<workbookname>
    Worksheets:
    sheet=<worksheet name>
    Note: Discoverer Plus OLAP uses only workbook and worksheet names.
    Examples below:
    How to Find the Unique IDs of Workbooks and Worksheets
    To find the unique ID of a workbook, use thie workflow:
    1. Launch the Open Workbook from Database wizard
    2. Right-click the workbook name
    3. Select Properties.
    The value of the Identifier field indicates the unique ID of the workbook.
    Alternatively, when the workbook is open, select File | Workbook Properties.
    To find the unique ID of a worksheet, use this workflow:
    1. With the worksheet open, select Edit | Worksheet Properties
    2. The Worksheet Properties dialog box opens.
    3. Click the General tab.
    The value of the Identifier field indicates the unique ID of the worksheet.
    The following URL starts Discoverer Viewer and opens a worksheet with the unique ID "156", which is present in the workbook whose unique ID is "MONTHLY_SALES". The connection ID used is "cf_a101".
    http://<machine.domain>:<port>/discoverer/viewer?cn=cf_a101&wbk=MONTHLY_SALES&wsk=156
    If the connection that is used here is a private connection, the user will be prompted for the password.
    In Plus, the same command is:
    http://<machine.domain>:<port>/discoverer/plus?cn=cf_a101&opendbname=MONTHLY_SALES&sheet=156
    Does this help?
    Regards
    Michael

  • How to copy workbooks from Discoverer 4i to 10g

    Hi guys
    Can somebody please help me. We've rolled out Discoverer 10G for users that are running on windows Vista (I believe that 4i does not work on Vista, please correct me if I'm wrong). We're still using Discoverer 4i for the users running on windows XP. We have migrated all our existing workbooks from 4i to 10G. The problem is when we create new workbooks, we currently have to create them on both Discoverer 4i and 10G. This is time consuming for us and I'm sure there is a way to just copy/migrate that newly created workbook from 4i to 10G.
    Does anybody know how to do this or is there a document.
    Thank you for all your help.

    Hi,
    You can move the workbooks by using a Discoverer export/import from Administrator.
    Rod West

  • Script to delete expired or errored scheduled workbooks for Discoverer

    Hi All,
    Can any one pont me to find a script to delete all expired and Errored workbooks in Database for discoverer?
    Appreciate all your assistance.
    Thankks
    -S

    Hi Asim,
    I don't think you can share the results of the scheduled workbook using Desktop. As for Plus, when you're signed on as the other user are you in the same database & eul and are you looking for "scheduled workbooks"?
    Brent

  • Discoverer Scheduling Workbook failed.... advise needed please

    when I try to schedule workbooks on Discoverer 10.1
    Database Error - ORA-04068: existing state of packages has been discarded
    ORA-04063: package body "TKDBA.EULL_BATCH_USER" has errors ORA-06508: PL/SQL: could not find program unit being called ORA-06512 at line 2
    System: XP Pro SP2
    Desktop Client 10.1.2456c
    End User layer Library - 10.1.2.45.46c
    End User Layer - 5.1.1.0.0.0
    Edited by: ControlV on May 22, 2009 6:07 AM

    Hi
    Thanks for this. A couple of things come to mind. First, it looks like you may have done more than one installation of the Discoverer 10g Admin / Desktop Install and it also looks as though you have an older Discoverer sitting out there, presumably a Discoverer 4 version. How did I spot this?
    Firstly, the name you are using for you 10g installation is BIToolsHome_2. This tells me that you either have 2 or you had a failed install number 1. If you happen to be calling the executable from the first install with the PATH set to the second install this will cause a problem.
    Secondly, Discoverer 4 always installs using the ORANT folder.
    I am not sure what you have inside d:\oracle\bin or even in c:\oracle\discoverer\bin. These could definitely be causing problems elsewhere but probably not impacting Discoverer 10.
    10g Discoverer Admin / Desktop needs these 4 entries in the path and these are there, albeit againt BIToolsHome_2 and not 1:
    C:\oracle\BIToolsHome_1\bin;
    C:\oracle\BIToolsHome_1\jlib;
    C:\oracle\BIToolsHome_1\jre\1.4.2\bin\client;
    C:\oracle\BIToolsHome_1\jre\1.4.2\bin;
    First things first, we need to verify that you don't have an old version 1 hanging around.
    Right-click on the icon to start Admin. In your case it should look like this: C:\Oracle\BIToolsHome_2\bin\dis51adm.exe
    Right-click on the icon to start Desktop. It should look like this: C:\Oracle\BIToolsHome_2\bin\dis51usr.exe
    Please verify the above and let me know if everything looks right.
    Best wishes
    Michael

  • Discoverer Viewer and Scheduled workbooks error

    Hi
    Hope someone can help.
    I am scheduling workbooks in Discoverer Plus 10.1.2.48 with the intention of viewing them in viewer.
    The report shows itself as running okay in Admin, but when I open the report in Viewer or Plus I get errors including:
    ORA-03106 Fatal two task communication error
    or
    "unable to generate sql for this scheduled workbook"
    I suspect they might be retrieving fairly large result sets (10 K rows +)
    Please can anyone offer advice on how to resolve this?
    Many thanks

    Hi Tim
    Well just the way the file is put together, like is it using SID= or SERVER=, does it use SERVER=DEDICATED, do you have one ADDRESS= or multiple?
    To make sure everything is right, rename both TNSNAMES and SQLNET.ORA files, then suse Net Configuration Assistant to set up a connection. Then compare that with what you have already and make the necessary changes.
    I also noticed that Russ has made a posting concerning a similar error. You should take a look. Its either in here on the Discoverer forum.
    Best wishes
    Michael

  • Export workbooks in discoverer plus

    hi
    I am not able to export discoverer workbook as .dis from discoverer plus.
    how to do this
    Should I follow only command prompt?
    From discoverer admin i am able to export a workbook as .eex ..But i wonder how to import this workbook.eex into discverer desktop ?
    thanks
    kp

    Hi,
    .dis format is specific to Discoverer Desktop . This saves the workbook on the windows pc where Discoverer Desktop is running. Discoverer Plus does not have the option to save workbook on local system.
    .eex format is specific to Discoverer Admin and it contains metadata info including BAs,Workbook etc.
    In order to import .eex files you have to use Discoverer Admin . It can not be imported using Discoverer Desktop.
    Thanks,
    Sutirtha

  • Schedule workbooks - results to excel

    Hello,
    I know you can schedule workbooks through discoverer plus. The results from these can be found under File > Open > View: scheduled workbooks.
    Is there anyway that these can be scheduled with the reults being output to excel?
    Thank you
    sarah

    Pl see previous discussions on this topic - https://forums.oracle.com/forums/search.jspa?threadID=&q=schedule+AND+excel&objID=f56&dateRange=all&userID=&numResults=15
    HTH
    Srini

  • Killing a scheduled workbook

    Hi All,
    There is report which took long time to execute hence i scheduled that, but this report is taking very long to display the output than expected.
    The status of this report shows Running Query. I want to kill that scheduled workbook, is there any way i can do that.
    Any sql statements to kil the scheduled workbook from the backend or by any other way would be of great help.
    Regards,
    Shruti

    Hi Shruti ,
    After killing the job you can do the following to remove the job from the Discoverer Scheduling Manager .
    But first make sure that you have a schema level backup . (Just in case :) )
    # Connect to SQL*Plus as the EUL owner:
    Issue the following command to get the scheduled reports name (doc_name):
    SQL> select doc_id, doc_name from eul5_documents where doc_batch=1;
    # Get the scheduled workbook id (br_id) by referencing the doc_name (obtained from the query in step 2 above) and using the command:
    SQL> select br_id from eul5_batch_reports where br_name='<doc_name>';
    # Get the status (brr_state) of the scheduled workbook id (brr_id) using the command:
    SQL> select brr_id,brr_state from eul5_br_runs where brr_br_id=<br_id>
    For example,
    BRR_ID BRR_STATE
    100975 2
    # Now update the table and set the status of brr_state to a value of '4' which is 'Error while running query':
    SQL> update eul5_br_runs set brr_state=4 where brr_id=100975;
    SQL> commit;
    Thanks,
    Sutirtha

  • Scheduling workbooks in Discoverer4

    Hello.
    I am trying to schedule workbooks from Discovreer4. The workbook schedules ok but after running it errors out. The error is "ORA-01031 Insufficient Privileges."
    Has anyone else run into this problem?
    I would appreciate any input anyone might jave into how to solve this problem.
    Thanks!

    Check your privilege in Admin Edition whether or not the user has been given to schedule workbooks.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by BB:
    Hello.
    I am trying to schedule workbooks from Discovreer4. The workbook schedules ok but after running it errors out. The error is "ORA-01031 Insufficient Privileges."
    Has anyone else run into this problem?
    I would appreciate any input anyone might jave into how to solve this problem.
    Thanks! <HR></BLOCKQUOTE>
    null

  • How to delete a workbook in Discoverer 10g

    Hello guys,
    Does anyone know how to delete a workbook from Discoverer 10g? I created a report in Discoverer Plus as SYSADMIN and gave this to my user. My user only has access to Discoverer Viewer. He went and did a "Save As" on this report. Now when he loggs in to Viewer again, he sees two report. One created by SYSADMIN and the on he created. I want to delete the one he created. How do I go about doing this? Can I do it from Discoverer? If so, which one(Viewer or Plus)? Will I have to login as him to do this? Please advise.

    Hi,
    I'm sorry for the question but you said:
    You just login as the user into viewer and delete the workbookWhere do you see the option to delete from the viewer ?
    To delete/ manage workbooks you need to login to either Plus or Desktop versions.
    And yes you need to log in using the owner user name
    Tamir

Maybe you are looking for

  • Pong Game Problem

    I have a problem with my pong game. IT says its missing a return statement at :71: and at someplace else. How do I fix this? Below is the source code. Note that I haven't done puck-paddle collisions yet. It isn't supposed to do those right now anyway

  • JDialog best practice

    I am building a custom JDialog that includes a JPanel so that it's easier for me to customize (I'm using NetBeans). This is my first solo project as a developer so I want to make sure I follow best practice whenever possible. I have two questions in

  • Substitution ZREF01 not found

    Dear Experts, When we are planning to do the F-47 (Advance Request),we are unable to proceed the request. system is given message " In company code number range 17 is not maintained". so we maintained number range 17 in FBN1. now it is showing the er

  • Home button not working if more app or data stored

    Hi guys... i bought my ipod touch 3 months back.... now if i store more data or install application in my ipod touch... home button is not working.... even though i always keep 1gb free space... any solutions...?

  • Security Deposits and EMD

    Dear Friends, Any body explain the following please? The basic settings for EMD (Earnest money Deposit) and Security Deposits. Are both one and same? When i am giving Sp GL Request in f-37 i am not able to find feildĀ  "Tendering Document" as Referenc