Where the scheduled (recurring report) related data saved in OBIEE?

Suppose I scheduled the report for daily for one month at 8.30 pm. in Oracle BI Publisher.
I want to know at which location this all report recurring related data saved in OBIEE toll.

hi,,
It will be store in following tables
XMLP_SCHED_OUTPUT,XMLP_SCHED_JOB,XMLP_SCHED_SUBSCRIPTION
DB Instance: Where you configured the details for publisher scheduler (Admin-->Scheduler Configuration)
thanks,
saichand.v

Similar Messages

  • What HFM Table contains the Hyperion Financial Reporting Modify Date

    Does anyone know the name of the HFM table that contains the Hyperion Financial Reporting Modify Date field of a Report?
    Thanks!
    Edited by: user2609991 on Sep 1, 2009 8:49 AM

    1. no "HFM Table" stores any information about Financial Reporting reports. Financial Reporting is part of the "BI+" / "Reporting and Analysis" product, so if there was any information to be found in a relational database, it would be in the BI+ schema not the HFM one.
    2. Oracle / Hyperion do not support customers trying to build their own relational database integrations directly into product repositories. To interact with the BI+ product (e.g. to extract modified by dates of FR reports) you should read up on the API and write custom code using that API. More information can be found in the Developers Guide here http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/hs_developer.pdf and in the "javadoc" documentation that comes with the BI+ product.

  • Have the URL to save the Web Intelligence Report to be saved as excel.

    Hi,
    As per our project requirement,we need to have a url to provided to the end users and so that once the users login using their id,they directly get option of saving the excel file.
    Let me know if you guys can provide me with a suggestion?
    Regards,
    Dikesh Shah

    Well, I am not 100% clear on your requirements, but it sounds like you need the reports to not go out until a certain event has occured. There is an Event server in BO that should be able to handle this. You can create file-based event monitoring so that a report(s) only run based on whether a file was created in a certain location.
    I have not actually set this up myself, but I know we do this where I am now. We do it nightly. No reports run until certain jobs have completed, and created a certain file.
    I did find this one article about this which is a couple of years old, but still relevant, and there should be a newer one if you do a search.
    http://www.businessobjects.com/pdf/products/platform/enterprise_tech_overview.pdf
    Good luck!
    Thanks

  • Where is the value of report repository stored in the database?

    Hi all,
    One of our developers is trying to write a code that would send the output report (pdf)of a process through mail, typical work flow stuff.But the problem is that we are not supposed to hard code the value of report repositiry from where the report has to be picked.can anybody suggest a table in the database from where the value of report repository can be queried.
    we tried using
    select reportrepositorypt from pswebprofile.
    but this doesnt return the correct path. we went to PIA->peopletools->webprofile ->webprofie configuration
    here we updated the value in report repository field and saved it and queried again.
    But this didnt solve our problem.
    Its showing the previous value which is different from the actual report repository path.
    all the servers are in solaris box.
    please suggets.
    Thanks!

    Right now, I am trying to send a PDF (XML Publisher report) as an email to our vendors (it is their ACH Advice).
    What I have done so far is: Created an App Engine, one step to populate a state record with run control information and the second step that runs XML Publisher and creates PDF report(s) which are published to the Report Repository and saved to a file on our network. Now I think I just need to create a third step to recall the PDF(s) and send the PDF(s) out as emails to our vendors.
    I have found that the PDF information from Report Repository is stored in the Database in the CDM_LIST_VW record (this is a view and the main underlying table is CDM_LIST, but this contains what I need for now, so I'm going to try using it first). The Report ID is stored in the CONTENTID field and the Report Description (description shown on the Report Repository -- which in our case contains the email address) is stored in the CONTENT_DESCR field. So I am going to try over the next week to write the logic to query the CDM_LIST_VW for the data needed for the email address and the ReportID to go and grab the file....The hardest part is finding the actual file but I am hoping that I can also find a URL on that table. I'd pull the file from the network, but XML Publisher writes them out into numbered folders where all the PDFs are named the XML Report Defn - thus same name). I have not tried any of this yet, but am hoping I'm on the right path.
    I hope this helped answer your question.
    Good Luck!
    Jennifer

  • Date error when scheduling webi reports

    Hi,
    When i click the prompt option in re schedule the scheduled webi report, i got the error "while trying to invoke the method java.util.date.gettime() of a null object loaded from a local variable 'date' "
    The BI version is 4.1 SP03
    The scheduled webi reports failing and got the error as "Unparseable date: "01/01/1900" "
    How to solve this issues?
    Regards,
    Kathir

    This might fix it from the note http://service.sap.com/sap/support/notes/1981477
    Create a WebI report that uses a date object in the Query Filters
    Schedule the report
    Reschedule by manually entering date value which shows only date and no timestampExample: 12/31/2007
    Reschedule by selecting date value from the calendar which shows date timestampExample: 12/31/2007 12:00:00 AM
    Create a biar file using the Import Wizard and migrate to BI 4.1 SP2
    BI 4.1 SP2 BILaunchPad, navigate to and Right click the report and go to “History”
    Right click the instance without a timestamp for the date parameter and select “Reschedule”
    Click on “Prompts” on the left menu and note an error is produced:This error occurred: while trying to invoke the method java.util.Date.getTime() of an object loaded from local variable ‘date’
    Attempting to schedule this instance (as Run Now or Reschedule) without selecting a Prompt value fails with the error:  Unparseable date: “12/31/2007”
    Using the instance with a timestamp works as expected

  • How to  fetch the relational  data from the xml file registered in xdb

    Hi,
    I have to register the xml file into the  xdb repository and i have to fetch the data of the xml file as relational structure  through the select statement .
    i used the below query to register the xml file in xdb.
    DECLARE
    v_return BOOLEAN;
    BEGIN
    v_return := DBMS_XDB.CREATERESOURCE(
    abspath => '/public/demo/xml/db_objects.xml',
    data => BFILENAME('XML_DIR', 'db_objects.xml')
    COMMIT;
    END;
    Now i have to fetch the values in the xml file as relational data .
    whether it is possible ?
    can any one help me.
    Regards,
    suresh.

    When you transform your XMLdata to a xmltype you can do something like this for example:
    select
    extractvalue(value(p),'/XMLRecord/Session_Id') session_id,
    extractvalue(value(p),'/XMLRecord/StatementId') StatementId,
    extractvalue(value(p),'/XMLRecord/EntryId') EntryId
    from
    table(xmlsequence(extract(xmltype('
    <XMLdemo>
    <FormatModifiers><FormatModifier>UTFEncoding</FormatModifier></FormatModifiers>
    <XMLRecord>
    <Session_Id>117715</Session_Id>
    <StatementId>6</StatementId>
    <EntryId>1</EntryId>
    </XMLRecord>
    </XMLdemo>
    '),'/XMLdemo/*'))) p
    where extractvalue(value(p),'/XMLRecord/Session_Id') is not null;
    For this sample I've put a readable XML in plain text and convert it to xmltype so you can run it on your own database.

  • Where can I find scheduled Jobs (Reports) in Database?

    Hello anyone,
    i'm nearly new in using Oracle Application Server, so excuse me for asking silly questions,please.
    But where can i find the scheduled jobs (reports) in the database?
    We are using OAS in version 10.1.2.3.0
    Thanks
    Florian

    Hi florian,
    where can i find the scheduled jobs (reports) in the database?
    http://<ip-address>:7778/reports/rwservlet/showjobs?server=<your report server name>
    Then select scheduled jobs from the drop down list
    Note:
    1)7778 is the default port for OAS10g r2..check in your httpd.conf file whether it 7778 or else change it accordingly
    2)you will your get report server name from em console itself ie rep_****
    Regards
    Fabian

  • No data in the unused software report

    Hi,
    We have Software metering enabled and many of the software metering reports return data as we would expect, for example: 
    Computers that have run a specific metered software program
    Concurrent usage for all metered software programs
    However, no matter how long we wait (SCCM 2012 has been running now for 3 months) the most important report for us always shows up blank: "Computers that have a metered program installed but have not run the program since a specified date".
    The only thing I have noticed is that if I modify the report for a free text date input it appears to be expecting a US date format, but is presenting us with a UK date format (we are in the UK) when we leave the default drop down box inthe report.  This
    is suggesting to me that the query is expecting a US date format to report against, but has received UK dates from the clients and this is how they are stored in the DB.  I can't work out how to fix this though or why the others are fine but this one
    is blank, please help!
    Thanks in advance! 

    Yes, I know this is an old post, I’m trying to clean them up, Did you figure this out, if so how?
    http://www.enhansoft.com/

  • Schedule line in previous date

    Hi friends,
    I am creating the sale order on today's date. Stock is confirming on todays date in schedule line. But I want to confirm the schdule line on yesterdays date. When I am changing the date in schedule line to yesterdays date, system is giving me 2 schedule lines, but confirming me the stock on todays date only.
    So can I have the schedule lines on yesterdays date with stock confirmed where there is no availability check and this material is a service material where it is not related to stock.
    Please help me out
    Thanks in advance
    Ratna kumar

    What is your reason to want the confirmed schedule line to be on yesterdays date and not to day?
    You can only send your goods or perform your services after receiving the order.
    Possible option is to find out if there is a user exit where you cn influence the confirmed date in the schedule line.possible option is: RV03VFZZ.
    Start SE38 and type in the program name. Select source code and then display.
    Standard SAP will never confirm in the past!!

  • Scheduling/Leveling Report

    Is there a way to remove the LOE's from the Scheduling/Leveling Report?
    On the Activities without predecessors and Activities without successors part.
    Edited by: user9059050 on Feb 15, 2010 11:38 AM

    if you assign both/all activities (related start-to-start and finish-to-finish) to your LOE as logical predecessors (which they are), then your LOE will be reported as an open-end activity since it has no successors, which is normal.
    if you want to avoid this, you can choose to assign finish-to-finish related activities as successors (which they are cronologically, but not from a strictly logical point of view, since they determine the LOE dates and not the other way around). regardless, P6 schedule will work just the same.
    it's usually a good idea to clearly "code" your LOE's using significant ID's (activity codes don't show up in your schedule log) for easier detection in the schedule log. otherwise, the schedule log isn't half bad when checking your schedule for true open-ended activities.

  • Error when scheduling WEBI report to FTP server

    Hi
    We are getting error "destination directory error. CrystalEnterprise.Ftp: 550 Requested action not taken" while scheduling WEBI report to FTP server.
    Any help would be appreciated
    Regards,
    Anisa

    Hi All,
    I want a run my report once by scheduling, so i provide a time interval for scheduling a report
    start date/ time : 11:38:AM 10/30/2011
    end date/time : 11:43:AM 10/30/2011
    after completion of end time....report is failed and fetching an error
    Error : Object could not be scheduled within the specified time Interval
    Any solution for resolving this error

  • Background job scheduling for report

    Hi can any one explain me how to do background job scheduling for report periodically for every 15 min.

    Hi Rajesh thanks for your brief explanation.
    but I am new to abap so I can't understand exactly will you please make it clear for the below program
    REPORT  zklj.
    data: begin of itab occurs 0,
          partner  type but000-partner,
          type     type but000-type,
          BU_SORT1 type but000-BU_SORT1,
          end of itab.
    select partner type from but000 into table itab.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
      BIN_FILESIZE                    =
        FILENAME                        = 'd:\al1\ahaj.xls'
        FILETYPE                        = 'DAT'
      APPEND                          = ' '
      WRITE_FIELD_SEPARATOR           = ' '
      HEADER                          = '00'
      TRUNC_TRAILING_BLANKS           = ' '
      WRITE_LF                        = 'X'
      COL_SELECT                      = ' '
      COL_SELECT_MASK                 = ' '
      DAT_MODE                        = ' '
      CONFIRM_OVERWRITE               = ' '
      NO_AUTH_CHECK                   = ' '
      CODEPAGE                        = '400'
      IGNORE_CERR                     = ABAP_TRUE
      REPLACEMENT                     = '#'
      WRITE_BOM                       = ' '
      TRUNC_TRAILING_BLANKS_EOL       = 'X'
      WK1_N_FORMAT                    = ' '
      WK1_N_SIZE                      = ' '
      WK1_T_FORMAT                    = ' '
      WK1_T_SIZE                      = ' '
      WRITE_LF_AFTER_LAST_LINE        = ABAP_TRUE
      SHOW_TRANSFER_STATUS            = ABAP_TRUE
    IMPORTING
      FILELENGTH                      =
      TABLES
        DATA_TAB                        = itab.

  • Error when scheduling WebI reports in Infoview

    When I shedule WebI reports in Infoview I get the error message "The target program that is required for the task i inactivated".
    First I choose the report that I want to schedule. Then I rightclick and choose "Shedule" and choose "Send To" and any of the choises. The I get the error message in the subject.
    We use:
    -BO XI 3.1 SP3
    On my client:
    -IE 7.0.573013 or Firefox 3.0
    -Win XP
    -Java 1.5
    How can I get the sheduling up and running?

    Hi All,
    I want a run my report once by scheduling, so i provide a time interval for scheduling a report
    start date/ time : 11:38:AM 10/30/2011
    end date/time : 11:43:AM 10/30/2011
    after completion of end time....report is failed and fetching an error
    Error : Object could not be scheduled within the specified time Interval
    Any solution for resolving this error

  • How create report with data from table and some columns results function ?

    Hi,
    How can i create on apex report region with some columns (of the report) as returned from a table and the other columns as results of plsql functions ?
    for example , I want to create a report like that:
    device last_date error_msg stop/start
    kodak1 06/04/08 null >>
    kodak2 08/03/08 good msg --^--
    kodak3 08/04/08 err msg >>
    3 rows returned
    where the 3 first columns are data returned from the table and the forth column is the result of plsql function (returned for example false) and on that i want to display a button of start ( >> in this example ) or stop ( --^-- in this example)

    Thomas,
    There is no problem here -- this is fully suported scenario.
    1. Bind Table dataSource to Customers node.
    2. Bind individual cell editors to any attribute of customer or any nested node like Address, say create column with InputField as editor, then for "value" property select Customer.Address.Street.
    Your nested nodes (like Address) must be non-singleton, set singleton=false on context designer tab.
    Valery Silaev
    EPAM Systems
    http://www.NetWeaverTeam.com

  • Excise base amount is not changing as per the scheduling agreement

    Sub: in migo excise base amount is not changing as per the scheduling agreement type LP ( time dependent ).
    I have created the scheduling agreement type LP with time dependent.
    I have maintained the price value in two validated period i.e
    01/07/08 to 31/07/08 price is 100 rs.
    01/08/08 to 31/08/08 price is 200 rs.
    I have maintained the delivery schedule on
    15/07/08 of quantity 1 nos.
    When I am doing the goods receipts for the scheduling agreement on
    Document date I am giving 15/07/08.
    Posting date I am giving 15/07/08.
    I am giving the posting date in the excise also 15/07/08.
    After item ok.
    When I will the excise base value it is taking 200 and also excise duty is also calculating on 200.
    When I will post the document
    The stock account and GR/IR account is taking 100 only
    And excise duty is posting for rs: 200 only
    Why the excise base value is not changing as per the validity period.
    What setting I have to do the change the excise base value as per the validity date maintained in the time dependent .
    regards
    jrp

    dear sir
    doc date and posting date i have given 15/07/08 and also excise posting date i have given 15/07/08,
    but excise base value it is taking Rs:200 .
    in inforecord price date category 5-goods recepit date i have given
    yes i ahve changed the excise base value it will post , if i will not change the excise base  value i will post rs:200 only and GR/IR clearing account will post Rs100 only.
    why the excise base value will not take based on the time dependent.
    regards
    JRP

Maybe you are looking for