Scheduling report By inserting in BI scheduler schéma

Hello,
Can I schedule report by inserting with queries directly in database, not by BI Publisher (Web).
Thanks
Djam75

If you explain more , of what you are trying , it will be of helpful here to figure out
But to answer
You can if,
you need to understand it well , how to do that.

Similar Messages

  • Link column from an interactive report to insert a row in a tabular form

    Hi, I need your help, i'm new on APEX and i really need to make a "link column" from an "interactive report" to insert a row into a "tabular form".
    I mean that when you click the "link column" instantly create a new row in the Tabular form with the information of the linked row on the interactive report. Its something like that.
    I really appreciate your help.
    Ricardo Capuz

    Hi Ricardo,
    You can use the following code as per your requirement (this is just an example),
    (In this case IR report is in Page#1 and Tabular form is in Page#2),
    On Page#1, Create a hidden item (i.e 'P1_ID')
    IR Report query as like the below,
    select empno,
    ename,
    job,
    mgr,
    hiredate,
    sal,
    comm,
    deptno,
    empno "copy"
    from empUse the below JS code in Page HTML Header section,
    function f_insert_row(pSub)
        $s('P1_ID',pSub);
        doSubmit('ADD');
    Edit  Report Attribute -> copy column -> Under Column Link
    Link Text: Select your column name (i.e. #EMPNO#)
    Target: URL
    URL: javascript:f_insert_row(#EMPNO#);
    Then create a process to insert like below,
    BEGIN
    insert into emp_test (select * from emp where empno=:P1_ID);
    END;Process condition as * Request=Expression1* in Expression1 as 'ADD'.
    At last, create a branch to Page#2, Check 'include process success message' and with the same condition as * Request=Expression1* in Expression1 as 'ADD'.
    Thanks,
    Lakshmi

  • Use of READ REPORT and INSERT REPORT

    Hi Guys,
    i need a small help from u guys.......
    i want to know the use of READ REPORT and INSERT REPORT  with Example
    the requirement is...
    i want to declare an internal table with fields from custom table.
    if any field is aded in the custum table then that field also should get populated in the program.
    Ex: custom table fields are
    MANDT
    BUKRS
    MATNR
    LIFNR
    field1
    field2
    field3
    now suppose if a new field field4 is added in the Table
    then the Program should automatically pick-up the fields from FIELD1...FIELD4.
    i heard by using READ and INSERT report we can do it
    plz help me ...
    Thanks
    Sunil.:-)

    If you're on 46C or above, you can use the following to generate tables dynamically.
    CALL METHOD CL_ALV_TABLE_CREATE=>CREATE_DYNAMIC_TABLE
    EXPORTING
    IT_FIELDCATALOG = GT_FIELDCAT
    IMPORTING
    EP_TABLE = GS_DATA_HEAD
    EXCEPTIONS
    GENERATE_SUBPOOL_DIR_FULL = 1
    OTHERS = 2.
    But you are restricted to 32 calls, if I remember correctly.  If you are in a later release, you can use the RTTS classes to create internal tables dynamically, without the restriction on subroutine pools.
    These classes are CL_ABAP_TYPEDESCR and subclasses.
    There are a few blogs on SDN that give examples of their use.
    Matt

  • Report Painter insert blank line after report header

    Hi Expert,
    I have a problem to insert a blank line (a spacing) after the report header of my customized report painter.
    For example, in standard cost center report, S_ALR_87013611, there is a small box listed information like cost center/group ... and reporting period.
    Right after reporting period, the report header box ends, and there is a space line between it and the cost element data ...
    For my customized report painter, I cannot make this space line.
    I tried edit > row > insert blank line ... but not successful ... kindly advise.
    Thanks and regards,
    -CK

    Hi
    In KKO2 go to output tab, here under layout, tick header and then press pencil symbol and in the editor you write your header. I think this will give you desired result.
    Regards
    Rajneesh Saxena

  • Report designer - inserting problem

    hi,
    we want to use report designer for formatting reports. When we insert
    query to report then following error occurs: internal error
    ID: E-CREATEFROMQUERY and message: reference to object is not set to
    instance of the object. When I go through this errors and execute
    this report to web I get this error: Web Item Report error: Tag "band"
    with name "footer1": Tag "keyfigure": Nested tag "y" must not
    be empty. Have you any solution for this problem?
    Thanx

    Hi,
    I mean frontend SP 12 (is already released). You can stay on your SPS in ABAP, Java. Frontend is compatible with older backend.
    Regards, Karol

  • Checkboxes in report to insert or update a value, doesn't do both

    I'm going crazy trying to solve this, hopefully someone can help me out. At the moment, I have a credit card table that will contain the information relating to a user-credit card pairing. Banks and such can submit credit cards to users, and the credit card table will be updated, with the column Approved_Flag being set to "N". Now, in another page, I have a report that displays any credit cards that a user may want, along with checkboxes. This report contains any bank submitted cards, or any cards that have been marked "General". Users can decide which ones they would like to keep, and then hit a submit button, which will update the credit card table. Existing records in the table would have the Approved column marked 'Y', new records from the so called "General" cards would be inserted.
    The issue is that with the code I've written, it updates any existing records in the credit card table perfectly, but it will not insert any new information. The following is my code for the process that activates when the submit button is hit:
    FOR i in 1..APEX_APPLICATION.G_F01.count
    LOOP
    MERGE INTO ls_credit_cards dest
    USING( SELECT apex_application.g_f01(i) credit_card_id,
    :F125_USER_ID created_by,
    sysdate created_on,
    :P54_CARDS card_id,
    :P54_USER user_id,
    'Y' approved_flag
    FROM dual) src
    ON( dest.credit_card_id = src.credit_card_id )
    WHEN MATCHED
    THEN
    UPDATE SET dest.approved_flag = src.approved_flag
    WHEN NOT MATCHED
    THEN
    INSERT( credit_card_id,
    created_by,
    created_on,
    card_id,
    user_id,
    approved_flag )
    VALUES( src.credit_card_id,
    src.created_by,
    src.created_on,
    src.card_id,
    src.user_id,
    src.approved_flag );
    END LOOP;
    Through some testing, I've found out the the issue is any "General" credit cards will not have a credit card ID assigned to them. By hard coding it, I can get them to insert, but then existing records do not get updated. I've used this code to assign each checkbox in the table a credit_card_id (I think...) so I don't understand why this isn't working.
    APEX_ITEM.CHECKBOX(1,credit_card_id) " ",
    Could anyone shed some light on how I can do this? I would appreciate it IMMENSELY

    A Trigger is just a set of code that runs when certain DML events are applied to a specific table. Here's an example of a simple trigger that assigns a value to a key field when no value is supplied (NULL). Notice that the trigger makes use of another structure - a Sequence - for determining the ID. Sequences are just auto-incrementing values that are very useful for deriving unique values for use in primary key fields, etc.
    Here's an example of how to create a sequence using SQL:
    CREATE SEQUENCE SEQ_MVR_RATING_SCALE
        MINVALUE 1 INCREMENT BY 1 START WITH 1
    /You can also create them directly using the SQL Workshop portion of the APEX console.
    Here's an example of how to create a trigger that uses that sequence to populate the key value:
    CREATE OR REPLACE TRIGGER  BI_MVR_RATING_SCALE
      before insert on MVR_RATING_SCALE
      for each row
    declare
    begin
      if :NEW.MVR_RATING is null then
        select SEQ_MVR_RATING_SCALE.nextval into :NEW.MVR_RATING from dual;
      end if;
      if :NEW.ENTERED_BY is null then
        :NEW.ENTERED_BY := FN_GET_USER(nvl(v('APP_USER'),user));
      end if;
      :NEW.ENTERED_ON := SYSDATE;
    end;
    /Without giving you a complete tutorial on triggers, just note the call to SEQ.nextval. That's what retrieves the next value from the sequence and tells the DB engine to increment the sequence value. The next time it is called, it will then be a different value.

  • Passing value to a report after insert on form

    I am trying to open up a form after I insert values into a form, i have put the following code on the insert button after doInsert; but for some reason the value of l_req_id does'nt get populated, do i have to put the code somewhere else?
    declare
    l_req_id integer;
    l_url varchar2(2000);
    begin
    l_req_id := p_session.get_value_as_NUMBER(
    p_block_name => 'DEFAULT',
    p_attribute_name => 'A_SA_REQ_ID');
    l_url := 'pos.CUST_SHIP_RPT.show?'| |
    'p_arg_names=req_id&p_arg_values=' | |l_req_id;
    portal30.wwa_app_module.set_target(l_url,'CALL');
    end;
    value of l_url after the insert of the form:
    http://hostname/pls/portal30pos.CUST_SHIP_RPT.show?p_arg_names=req_id&p_arg_values=

    Hi prassu,
    thanks for you reply know we can do this if we have a prompt,but my issue here is we do not have prompt.
    We have Report 1 with a column area_id.
    & another report2 with column area_id,we would like to pass the value from one report to another once we click on the values under area_id column of report1.
    Hope have explained it properly.

  • RG1 report-Ztable_entries insertion

    Hi Folks,
    Inorder to create a RG1 report the previous development team has created a ztable of the same strcuture as J_2IRG1BAL.But I was not able to find out how they are inserting the entires into this ztable.
    1.Is there any  possibility that they would have return any bdc to populate this ztable?
    2.J_2IRG1BAL needs two transactions to be run for the table to have the entries( I heard),so does the same logic applies for the ztable too?
    3.What are the ways to find how a ztable is getting populated?
    K.Kiran.

    Hi Man,
    Poppulating Entries for RG1 Related tables is bit tricky. It gets poppulated when u run tcode J2I5. For this SAP is having many considerations like updating RG1BAL Table and other related tables.
    Hope this answers your query. for RG1 and CIN you can contact me on email or mobile given in my profile.
    Regards,
    Darshan
    <i><b>**Reward Points to helpful answers; it motivates us to answer more</b></i>

  • Report painter insert line problem

    I have one report, many pages, 156 rows, now the requirement is insert five rows at row number 103, five rows including two character and three formula, but after i insert five rows, I need to adjust formula for those rows below the five rows,
    is there any method I can insert fornula in the five rows without affecting other rows, thanks.
    also i find I have formula ID like Y001, Y002.....Y123 and Z001, Z002....Z134, what does this mean? when I right click this formula ID, I can't see the content, only I can do is check formula, is there any way I can see the content of these formulas?

    Thanks,
    I didn't chosse the copy function, instead I insert  row 104(other current asset) , but I find the first column (which should be a formula)corresponds to row 104 is empty, and I check all formula ID under formula components, there is no other current asset
    formula ID, what should I do?
    Row 103(current asset) has a formula ID, but new inserted rows can't find formula ID

  • Report generation insert name

    I need to insert a name for a cell or range of cells. Can I do this with the Report Generation toolkit?

    I needed to define a name using Labview for a cell or range of cells so that I can use the name in formulas and a summary worksheet. Using Report Generation VI's, I was able to place data in cells using names, but did not see a VI to define a name. My Excel spreadsheet will have 16 worksheets with data in rows. The amount of data will vary, so I find the last row in each worksheet and place my sum and / or averages after the last row of data. I then wanted to assign a name such as "Range1_NT" to the cell. A summary worksheet will reference to and display the values of "Range1_NT", ......  instead of a cell designator "$B$123".

  • Report Designer - Inserting Graphs?

    I have seen SAP PowerPoint slides demonstrating the capabilities of Report Designer that contain charts (bar or pie) apparently coming from BEx query data.
    Is this possible to insert in the current version?  When I insert a dataprovider into a report, it's coming up as a table by default, and I don't see any way to change it to a chart layout.
    Thanks!

    In SP 12 user can insert Image and Graphic.
         To insert image: first we need to store supported (GIF, JPG and JPEG) images in MIME repository then insert image browse throw required image from MIME and click oK.
         With the recent SP u have an option to insert image using MIME wizard that would take u directly to the MIME foler and generates a link like for. E.g. bwmimerep:///sap/bw/mime/Customer/Images/images.jpg and image get dipalyed in Report.
         Later u can change the Height and width of image.
    About inserting Graphic: First insert a graphic item and then select Dataprovider, and Chart type thorough chart editor.
    U can have more than one chart from different data provider
    Hope this helps
    Thanks
    Sateeesh Pasodi

  • Dynamic report Generation INSERT REPORT/INSERT TEXTPOOL

    hi,
    I have problem while creating dynamic report I have a text file Containing all the lines of a Program If i download the text then the Pgm should be dynamically creted with text elements. i cant Copy text element alone in the text file So i used two lines of statements,
    1.one to insert lines of Program
    INSERT REPORT repname FROM code.
    2. To insert Text elements of that Particular Pgm
    INSERT TEXTPOOL repname FROM text2 LANGUAGE langu2.
    I want to know how to combine this both..
    or is there any other method to dynamically insert the report with textelements.
    Plz give me suggestions
    Hema

    It is soleved by declaring the text in file format

  • Insert Loop through a Report or Insert using a Column Link

    Hello!
    I think I have an easy one.
    I have created a site that tracks "issues" with the curriculum of a university's courses. If a curriculum developer sees something that must be updated, they use this site to log the "issue" so we have a running list of how the curriculum has changed for the particular course or courses. Some "issues" span multiple courses, so a table was created to allow the issue to be associated with as many courses as necessary.
    The "Courses" table holds a list of all courses at the university
    The "Issue_Courses" table combines the primary key for the "issue" and the "course" and creates the association between issues and courses.
    The page users use to create the associations has a report called "add_courses" which is searchable and filterable so the user can narrow down the list of courses they want to view (the list is well into the thousands), and this report contains a column with check boxes. This page also contains a hidden field containing the primary key for the issue, "p13_Issue_ID"
    I would like to create an insert statement that grabs the primary key for the issue from "p13_issue_ID" and loops through the report, inserting a new record for each checked box in the report. Any assistance would be great! Admittedly, my sql is pretty week.
    Another option that I think would work, if possible, would be to have a "column link" that simply runs the insert process by grabbing the issue primary key from "p13_issue_ID" and the course id from the report. Then, the user could simply click on an "Add" link or something similar on the report, which would run the insert statement, and basically create that association. Is this possible?
    Thanks in advance!
    Edited by: 846852 on Mar 23, 2011 3:12 PM
    Edited by: 846852 on Mar 23, 2011 3:14 PM

    Start with adding a checkbox column to the report in page (13 ??)
    select apex_item.checkbox(1,course_id) CHECK
           ,course_name
    FROM courses
    I assumed that course_id is the PK of the courses table , if not change the column names appropriately
    In report attributes of the "CHECK" column, change the column type to "*Standard Report Column*" (important).
    Now you should see a report with courses lists and checkboxes to choose them, You can also do the same with an interactive report(if you want to use it features to filter down records)
    Inorder to process the records create a PLSQL process that loops over the selected records(courses) and creates the relation in the Issue courses table using the hidden item and checked course primary key(course_id above)
    DECLARE
      ln_course_id NUMBER;
    BEGIN
      FOR 1 IN 1..APEX_APPLICATION.G_f01.COUNT
      LOOP
        ln_course_id := APEX_APPLICATION.G_f01(i);
        --Insert new relation using Issue Id and course ID
        INSERT INTO ISSUE_COURSES(course_id,issue_id) VALUES( ln_course_id,:P13_ISSUE_ID);
      END LOOP;
    END;If you have a submit/save button , make the process conditional for that button.

  • Report generation, inserting Excel formulas

    Hi everyone,
    We just acquired the Report Generation Toolkit. I've got the basic report figured out but I'm stymied at inserting formulas where I need to. The report will have one row added when data is acquired. At that time I need to insert two formulas each referring to the cell immediately to the left of the cell it's in. I've found examples that put formulas at the end of the sheet but none that plugs them in as the data is being saved. Does anyone have an example of how this can be done?
    Thanks 

    This snippet creates a report with the value 3 in a cell (as it turns out, it's cell A1).  Note that because I'm using Excel Easy Table, I need to turn my scalar (3) into a 2D array.  Easy Table gives me the cell address just to the right of the insertion (where the Formula will go -- by subtracting one from the Column, I can get back the Excel Address (A1) of the "cell to the left".  I then create a formula (starting with "=") that doubles this cell and adds 0.5, then use Excel Insert Formula to put it into the Worksheet, where it becomes 6.5.
    Bob Schor
     

  • Deploy Scheduled JOB by OMBPLUS

    Hi,
    I need to deploy a scheduling by OMB+ Script.
    My scheduling is correctly created.
    Then, I send this instruction :
    OMBCC '/$project_name/SCH'
    OMBCREATE TRANSIENT DEPLOYMENT_ACTION_PLAN 'SCHEDULING_PACKAGE'
    ADD ACTION 'SCH'
    SET PROPERTIES (OPERATION) VALUES ('CREATE')
    SET REFERENCE SCHEDULABLE'SCH_DELTA'
    OMBDEPLOY DEPLOYMENT_ACTION_PLAN 'SCHEDULING_PACKAGE'
    OMBDROP DEPLOYMENT_ACTION_PLAN 'SCHEDULING_PACKAGE'
    OMBCOMMIT
    but I obtain this error :
    OMB01073 : SCHEDULABLE SCH_DELTA not found
    Can someone help me?
    Thank you
    Julie

    Hi Nigel,
    I will try to explain on the best how I have created my objects :
    I created a process flow PRC_DELTA which needs to run every day.
    This process flow is created in the 'Process Flow Modules' like this :
    Process Flow Modules
         PFL_PROCESS
              PPK_DMT
                   PRC_DELTA
    Then by OMB Script I created a scheduling in the 'Schedules Module' like this :
    Schedules
         SCH
         SCH_DELTA
    Still by OMB script, I have combined PRC_DELTA with SCH_DELTA (ie SCH_DELTA is the referred calendar of PRC_DELTA)
    Then, I have deployed my process flow. But, it doesn't run every day.
    So I try to understand why.
    In the Control center my objects are presented like this :
    SCH_LOCATION
         Scheduled jobs
              PRC_DELTA_JOB
    OWF_LOCATION
         PFL_PROCESS
              PPK_DMT
                   PRC_DELTA
    And I need to deploy the PRC_DELTA_JOB object and start it. But I don't know how to do this by OMB+ script.
    Thank you for your help
    Julie.

Maybe you are looking for

  • Replicate CRM z-fields of BP to ECC

    Hi experts, We're having a requirement of adding z-fields in CRM BP (for delivering plants in ECC) and transferring these fields to ECC customer master data (KNVV). Can anybody who have achieved this before provide a suggestion? Thanks Shane

  • Error creating a connection pool (No suitable driver)

    I have just installed WLS6.1 SP3 I try to create a connection with the following parameters URL = jdbc:oracle:thin@myOracleServer:1521:myOracleSID DriverName = oracle.jdbc.driver.OracleDriver every thing else is left as the defaults, when I click cre

  • Installation date... Stupidity & Lies

    So we were moving house... Please choose an available date... Saturday 8th February 2014. All going swimmingly. Text message... Your installation has been moved to Monday 10th February. Go on BT, take a wild guess as to why I chose Saturday morning,

  • Flashback.C Trojan-Downloader

    ars technica recently published a story about Flashback.C and a link to F-Secure to fix it. Now I'm, panicking, as I did update Flash recently, but can't remember the look of the update screen. It's such a common practice that Flash needs updating fr

  • Third party material-MM01

    hi  Gurus, While iam creating a Sales order by using a thirdparty party materila(itemcatgroup:BANS) iam getting thebelow error: "No Procurement efined formaterial 'XXXXX' what could be the reason? how can we resolve the issue. cheer