How to convert sql report interactive report

Hi all

I have a Sql report and I want to convert in interactive report. I found the option at the top to the right side "Interactive report migrate" but only 3 option to pass parameters.

In my SQL report (Edit button) is here and I'm passing 6 values through this button change, how can I migrate my SQL report interactive report? Please suggest me...

Thank you

Xandot wrote:

In the report links SQL query looks like:

  1. case Type
  2. When 3 then
  3. (select the T_STYLE Style where STYLEID =?)
  4. When 1 then
  5. 'Edit'.
  6. else '||','|| ||','|| ||','|| ||',30>Edit'
  7. end
  8. When 2 then '| «, » || ||','|| ||','|| ||',30>Edit'
  9. When 1 then '| «, » || ||','|| ||','|| ||',30>Edit'
  10. end as change

How to implement above interactive links, until now that I created the link on interactive using links like report:

But here its me allow only a single URL, how to put different URLS of in accordance with the condition, please suggest me.

There is no declarative support for generating links conditionally to line level in interactive reports (or indeed in the standard reports). Set the IR link column property to exclude the link columnand generate the link in the request in the original report. Set the Type of display attribute for the column Edit to report Standard column.

Tags: Database

Similar Questions

  • How to convert sql server procedures in the format of oracle

    Hello

    I need help, I got some procedures that is written in the format MS Sql, I need to convert those to the format of the oracle, and I don't know how to do. Could someone help me?

    IN SQL server code format is:

    / * Object: StoredProcedure [dbo]. [sp_rpt_get_job_log_on_demand]    Script Date: 20/12/2013-09:07:26 * /.

    SET ANSI_NULLS

    GO

    SET QUOTED_IDENTIFIER ON

    GO

    CREATE PROCEDURE [dbo]. [sp_rpt_get_job_log_on_demand]

    (

    @JOB_ID INT

    @REPORT_DATE AS DATETIME

    , @PERIOD VARCHAR (100)

    )

    AS

    BEGIN

    SET @REPORT_DATE = CONVERT (DATETIME, CONVERT (DATE, @REPORT_DATE))

    DECLARE @MONTH INT = (YEAR (@REPORT_DATE) * 100) + MONTH (@REPORT_DATE)

    , @TODAY = INT ((((@REPORT_DATE) YEAR * 100) + MONTH (@REPORT_DATE)) * 100) + DAY (@REPORT_DATE)

    @YEAR INT = YEAR (@REPORT_DATE)

    SELECT J.JOB_ID

    J.JOB_NAME

    CASE

    WHEN F.FREQUENCY_SUBTYPE IS NULL, F.FREQUENCY_TYPE

    OF OTHER F.FREQUENCY_TYPE + '-' + F.FREQUENCY_SUBTYPE

    END AS FREQUENCY_TYPE

    L.TRANSACTION_DATE

    L.PROCESS_DATE

    START_TIME

    END_TIME

    DATEDIFF(MINUTE,START_TIME,END_TIME) AS TIME_TAKEN

    L.RECORD_COUNT

    ISNULL(L.EXECUTION_STATUS, 'NOT STARTED') AS EXECUTION_STATUS

    L.ERROR AS ERROR_DESC

    P.PRIORITY_NUMBER

    P.COLOR_CODE

    OF dbo.JOBS J AS

    INNER JOIN dbo. ACE OF FREQUENCY F

    ON J.FREQUENCY_ID = F.FREQUENCY_ID

    INNER JOIN dbo. JOB_PRIORITY AS P

    ON J.PRIORITY_ID = P.PRIORITY_ID

    LEFT JOIN dbo. TBK_POS_FACT_LOADING_SUMMARY ACE L

    ON J.JOB_ID = L.JOB_ID

    AND)

    (@PERIOD = 'TODAY' AND CONVERT (DATETIME, CONVERT (DATE, L.START_TIME)) = @REPORT_DATE) OR

    (@PERIOD = 'MONTHS' AND ((START_TIME) YEAR * 100) + MONTH (START_TIME) = @MONTH) OR

    (@PERIOD = 'YEAR' AND YEAR (START_TIME) = @YEAR)

    )

    AND CONVERT (DATETIME, CONVERT (DATE, L.START_TIME)) < = @REPORT_DATE

    WHERE F.FREQUENCY_TYPE <>'NONE'

    AND J.JOB_ID = @JOB_ID

    UNION ALL

    SELECT J.JOB_ID

    J.JOB_NAME

    CASE

    WHEN F.FREQUENCY_SUBTYPE IS NULL, F.FREQUENCY_TYPE

    OF OTHER F.FREQUENCY_TYPE + '-' + F.FREQUENCY_SUBTYPE

    END AS FREQUENCY_TYPE

    L.TRANSACTION_DATE

    L.PROCESS_DATE

    START_TIME

    END_TIME

    DATEDIFF(MINUTE,START_TIME,END_TIME) AS TIME_TAKEN

    L.RECORD_COUNT

    L.EXECUTION_STATUS

    L.ERROR AS ERROR_DESC

    P.PRIORITY_NUMBER

    P.COLOR_CODE

    OF dbo.JOBS J AS

    INNER JOIN dbo. ACE OF FREQUENCY F

    ON J.FREQUENCY_ID = F.FREQUENCY_ID

    INNER JOIN dbo. JOB_PRIORITY AS P

    ON J.PRIORITY_ID = P.PRIORITY_ID

    INNER JOIN dbo. TBK_POS_FACT_LOADING_SUMMARY ACE L

    ON J.JOB_ID = L.JOB_ID

    WHERE F.FREQUENCY_TYPE = 'NONE '.

    AND)

    (@PERIOD = 'TODAY' AND CONVERT (DATETIME, CONVERT (DATE, L.START_TIME)) = @REPORT_DATE) OR

    (@PERIOD = 'MONTHS' AND ((START_TIME) YEAR * 100) + MONTH (START_TIME) = @MONTH) OR

    (@PERIOD = 'YEAR' AND YEAR (START_TIME) = @YEAR)

    )

    AND J.JOB_ID = @JOB_ID

    AND CONVERT (DATETIME, CONVERT (DATE, L.START_TIME)) < = @REPORT_DATE

    END

    GO

    I tried to convert it to a format of oracle... But I get the error message.

    --------------------------------------------------------------------------------------------------

    CREATE OR REPLACE PROCEDURE POS.sp_rpt_get_job_log_on_demand_V)

    JOB_ID NUMBER,

    DATE OF REPORT_DATE,

    PERIOD VARCHAR2 (100))

    AS

    BEGIN

    l_MONTH: = TO_CHAR (REPORT_DATE, "YYYYMM");

    TODAY: = TRUNC (REPORT_DATE);

    l_YEAR: = TO_CHAR (REPORT_DATE, 'YYYY');

    SELECT J.JOB_ID,

    J.JOB_NAME,

    CASE

    WHEN F.FREQUENCY_SUBTYPE IS NULL, F.FREQUENCY_TYPE

    OF OTHER F.FREQUENCY_TYPE | '-' || F.FREQUENCY_SUBTYPE

    END

    AS FREQUENCY_TYPE.

    L.TRANSACTION_DATE,

    L.PROCESS_DATE,

    START_TIME,

    END_TIME,

    (END_TIME - START_TIME) AS TIME_TAKEN,

    L.RECORD_COUNT,

    NVL (L.EXECUTION_STATUS, "NOT STARTED") AS EXECUTION_STATUS,

    L.ERROR AS ERROR_DESC,

    P.PRIORITY_NUMBER,

    P.COLOR_CODE

    OF POS.JOBS J.

    POINT OF SALE. FREQUENCY F,

    POINT OF SALE. JOB_PRIORITY P,.

    POINT OF SALE. TBK_POS_FACT_LOADING_SUMMARY L

    WHERE J.FREQUENCY_ID = F.FREQUENCY_ID

    AND J.PRIORITY_ID = P.PRIORITY_ID

    AND J.JOB_ID = L.JOB_ID

    (PERIOD = 'TODAY'

    AND TO_CHAR (L.START_TIME, 'YYYYMMDD') =

    TO_CHAR (REPORT_DATE, 'YYYYMMDD'))

    OR (PERIOD = 'MONTHS' AND TO_CHAR (START_TIME, "YYYYMM") = MONTH)

    OR (PERIOD = 'YEAR' AND TO_CHAR (START_TIME, 'YYYY') = YEAR)

    AND F.FREQUENCY_TYPE <>'NONE'

    AND TRUNC (L.START_TIME) < = TRUNC (REPORT_DATE)

    AND JOB_ID = J.JOB_ID

    UNION ALL

    SELECT J.JOB_ID,

    J.JOB_NAME,

    CASE

    WHEN F.FREQUENCY_SUBTYPE IS NULL, F.FREQUENCY_TYPE

    OF OTHER F.FREQUENCY_TYPE | '-' || F.FREQUENCY_SUBTYPE

    END

    AS FREQUENCY_TYPE.

    L.TRANSACTION_DATE,

    L.PROCESS_DATE,

    START_TIME,

    END_TIME,

    (END_TIME - START_TIME) AS TIME_TAKEN,

    L.RECORD_COUNT,

    L.EXECUTION_STATUS,

    L.ERROR AS ERROR_DESC,

    P.PRIORITY_NUMBER,

    P.COLOR_CODE

    OF POS.JOBS J.

    POINT OF SALE. FREQUENCY F,

    POINT OF SALE. JOB_PRIORITY P,.

    POINT OF SALE. TBK_POS_FACT_LOADING_SUMMARY L

    WHERE F.FREQUENCY_TYPE = 'NONE '.

    AND J.FREQUENCY_ID = F.FREQUENCY_ID

    AND J.PRIORITY_ID = P.PRIORITY_ID

    AND J.JOB_ID = L.JOB_ID

    (PERIOD = 'TODAY'

    AND TO_CHAR (L.START_TIME, 'YYYYMMDD') =

    TO_CHAR (REPORT_DATE, 'YYYYMMDD'))

    OR (PERIOD = 'MONTHS' AND TO_CHAR (START_TIME, "YYYYMM") = MONTH)

    OR (PERIOD = 'YEAR' AND TO_CHAR (START_TIME, 'YYYY') = YEAR)

    AND JOB_ID = J.JOB_ID

    AND TRUNC (L.START_TIME) < = TRUNC (REPORT_DATE)

    END;

    /

    POS PROCEDURAL errors. SP_RPT_GET_JOB_LOG_ON_DEMAND_V:

    LINE/COL ERROR

    -------- -----------------------------------------------------------------

    4/28 PLS-00103: encountered the symbol "(" quand attend un de la) "

    Next:

    := . ), @ % of default characters

    The symbol ': = ' has been replaced by "("pour continuer.) "

    76/1 PLS-00103: encountered the symbol "END" when awaits an of the

    Next:

    . (* % & -+; / TA for rem rest mod < an exhibitor > (*))

    and or group having intersect less order start union where

    connect | multiset

    The symbol ';' was replaced by 'END' continue.

    Thank you and best regards,

    John of Vikash

    Keep in mind, DBMS_OUTPUT is reserved for debugging purposes. If you want the output to a front-end, you can use SYS_REFCURSOR as OUTPUT parameter and get the data of the SELECT query.

  • How do I call the interactive report procedure?

    Hello
    Is possible that call the procedure in an interactive report on the APEX?
    Because
    in the source of the region, he asked only the sql statement so I'm confused and I don't know how to call procedure interactive report?

    Published by: esra aktas on 12.May.2011 11:04

    Published by: esra aktas on 12.May.2011 12:05

    And your procedure returns the data? Why you don't run in an area of pl/sql?

    Or better yet, a page with two 2 areas of installation

    Region one is of html with your controls to display, and then select the procedure to run from a selection list. When your selection list returns and have a running process that takes this value, select the code you want on your table and he published on a page element.

    second region would be a region of sql report, which uses a function returns sql to select necessary sql, using the code met at step 1...

    Thank you

    Tony Miller
    Webster, TX

    On the road of life... He has "windshield", and there are "bugs".
    (splat!)
    "Squeegees wanted."

    If you answer this question, please mark the thread as closed and give points where won...

  • How to adjust column widths individual classic SQL report

    Hello

    I use Oracle APEX v4.2 with IE8 browser and basically tries to adjust widths of individual columns in my classic SQL report. Basically, I have three columns I want to spacing, so that the width of the entire region for the report is used, but am not sure how to proceed.

    I drilled in individual columns and specified the column widths as the element, but in vain.

    Would appreciate help on how to do this for each column and hope that I do not need to change the model of report (if possible).

    Thank you.

    Tony.

    Tony F. says:

    I use Oracle APEX v4.2 with IE8 browser and basically tries to adjust widths of individual columns in my classic SQL report. Basically, I have three columns I want to spacing, so that the width of the entire region for the report is used, but am not sure how to proceed.

    There is an element of uncertainty in what we suggest as well, because you have not specified the theme and the report of model that is used. This information is required for any question of formatting or the visual layout.

    I drilled in individual columns and specified the column widths as the element, but in vain.

    Report in some themes templates may be missing in the #COLUMN_WIDTH substitution string # required for use of the declarative column widths, as shown here: Re: width of column in reports

    I don't know why it would be missing from a theme of so-called "modern" (perhaps the lack of documentation affects even the Oracle theme designers), but you can add it to the models listed in this thread.

    Width of the element applies only to controls on a form in a table.

    Would appreciate help on how to do this for each column and hope that I do not need to change the model of report (if possible).

    This can be done using selectors CSS attribute (for the themes of quirks mode non-traditional, because you are using a legacy version of IE). Add a style sheet in CSS Inline property page:

    #ALIAS,
    td[headers="ALIAS"] {
    width: 40%;
    }
    

    where the ALIAS value in the attribute selector matches the required column alias, and the width property specifies the column dimension required and the units.

    Note that the percentage widths will be compared to the width of the report table. Therefore, it may be necessary to also specify widths (100%) for the table of report and its components. Exactly how is based on the report, the region and the page templates and theme used, information that was not provided.

  • How to create 2 buttons for printing on a sql report?

    Hello
    I'm working on the apex 4 and 11 GR 2 database, I set up bipublisher for advanced printing.
    On a sql report I want to have excel button and a Pdf with the redirect URL button.
    I don't know how to specify the output format in the URL.
    I see in the help
    "use the output format derived from the option element and include the name of the element and the value in the URL of your impression."
    but I'm looking for an example of a URL.

    Best regards
    Jean-Marc

    So, you must specify a hidden item that contains the value, then specify the name of the item in print attributes (mine is P5000_TYPE)

    Then you'd have button redirect URL:

    JavaScript:Redirect('f?p=&APP_ID.:&APP_PAGE_ID.:&session.:FLOW_XMLP_OUTPUT_R1483125430108678:::P5000_TYPE:PDF'); and
    JavaScript:Redirect('f?p=&APP_ID.:&APP_PAGE_ID.:&session.:FLOW_XMLP_OUTPUT_R1483125430108678:::P5000_TYPE:XLS')

    to print in pdf and xls respectively.

    Van
    Trent

    Published by: trent on December 10, 2010 23:29

  • How we get enough space for a column in the SQL report?

    How did one reserves enough spaces for a column in the SQL report?

    Ex: 2 columns defined as follows

    projectNo varchar2 (10)
    ProjectName varchar2 (50)

    When creating a sql, the report header report will show below. If my project name is 'Tire force Test site R987654'. I need to show in a single line, since it has been defined as varchar2 (50)
    projectNo     ProjectName
    A0001         Tire Strength
                  Test At Site
                  R987654 
    It have a way to get around here. Thanks in advance.

    Tai

    You can enter "space: nowrap;" in the CSS Style of the column, or, better yet, to set a CSS class to it.

    HTH,
    Chris

  • How to create a report based on the item selected from the list of selection?

    Hello

    I created a tables_LOV based on:

    Select table_name table_name user_tab_cols r, d

    where column_name like '% _type % '.

    Then I created a ListOfTables page element, display in a selection list and pointing to tables_LOV.

    I run the page, and I can choose the table I want in the drop-down list.

    How to create a report based on the selected element? (ex: select * from selected_table)

    Thanks in advance

    Salah

    Hi Salah,

    Allright, take a look at this page: http://apex.oracle.com/pls/apex/f?p=vincentdeelen:collection_report

    I think that simulates what you are trying to accomplish. I've implemented the simplest method I could think of.

    The report is based on a collection of apex. If you are not familiar with this, you should study the documentation: APEX_COLLECTION

    To recreate my example, you should:

    (1) create a report (interactive) on your collection

    SELECT *
       FROM APEX_collections
     WHERE collection_name = 'MY_COLLECTION'
    

    (2) create a selection list page_item for the tables that you want to display (in my case, this is called "P38_TABLES")

    (3) create a dynamic action that triggers on the evolution of your selection list page_item. Dynamic action must be a parade of PL/SQL procedure the following code:

    declare
      l_query varchar2(4000);
    begin
      l_query := 'select * from '||:P38_TABLES;
      if apex_collection.collection_exists
            ( p_collection_name => 'MY_COLLECTION' )
      then
        apex_collection.delete_collection
          ( p_collection_name => 'MY_COLLECTION' );
      end if;
    
      apex_collection.create_collection_from_query
        ( p_collection_name => 'MY_COLLECTION'
        , p_query           => l_query
        );
    end;
    

    Make sure that you add your page_item 'Page to send items' section.

    (4) add a real extra action that makes an update of the report area.

    Here are two photos describing the da:

    http://www.vincentdeelen.com/images/OTN/OTN_COLLECTION_REPORT_DA1.PNG

    http://www.vincentdeelen.com/images/OTN/OTN_COLLECTION_REPORT_DA2.PNG

    Good luck and greetings,

    Vincent

    http://vincentdeelen.blogspot.com

  • Convert Web report OBIEE

    I have a relationship in a personalized web portal that was created on top of a Teradata Database with star patterns. I have been asked to convert these same reports OBIEE. OBIEE will also be pulling data from Teradata Database. How can I migrate these reports from the web portal of OBIEE. Thanks in advance.

    shaolin_obiee wrote:
    I have a relationship in a personalized web portal that was created on top of a Teradata Database with star patterns. I have been asked to convert these same reports OBIEE. OBIEE will also be pulling data from Teradata Database. How can I migrate these reports from the web portal of OBIEE. Thanks in advance.

    There is no automated tool that allows you to convert the reports in OBIEE. You must enter the SQL code generated behind the reports and the design schema star/snowflake to the RPD and build your MDB layer and the layer of presentation accordingly. You will then use the domain create reports to replicate that exist.

    Automation would have made life easier, but since it does not exist in the present, you have everything in OBIEE manually build from scratch.

  • Change the SQL report to Intractive report

    Dear friend


    I created the SQL report.

    Could you tell me please, there is a way to change the SQL report to Intractive report.

    How can I do that.

    Thank you

    Under the Definition of the region of the report; look over to the right margin and you will see interactive report-migrate under tasks .

    The f

  • want to create Searchbar on SQL report

    Hi evryone...
    I had created SQL report in my application... But I coould nt find option of bar of serch who create generally with interactive report... so if I want to create serchbar in my SQL report so how could I able to do this thing?

    Thanks in advance

    Rommy

    Hi Rommy,

    Take a look at my first post in this thread: Re: option search for a page of REPORT FORM AND.

    Concerning

    Andy

  • Problem with Top SQLs report

    Hello

    I have a big problem with Top SQLs reports, when I generate a report of high SQLs, SQL, the value text is not end, I know that there is a "The SQL text size" setting on the properties of the agent (this configuration is also on the collections setting ' Ta maximum size in characters of the short collects text of the SQL statement is ") on the two options , I've incremented the value of 256 (default) 1500, but when I generate the Top SQLs postpones continue it problem, once the changes I restarted the agent but the problem persists, I generate the report on the different formats, but result is the same, could you help me please.

    Thank you.

    Best regards.

    I see this in support KB article https://support.software.dell.com/kb/109536

    "

    • Title

      SQL in DB2 Top instructions are truncated in the delivered report of Top SQL

    • Description

      SQL in DB2 Top instructions are truncated in the delivered report of Top SQL

    • Resolution

    • Resolution A DDB-3673 request improvement with Support software Dell to show the full text of SQL high in the report Top SQL for DB2.

      Workaround At this point you should be able to make a custom report by cloning the Top SQL existing and then customizing report. »

    I know that this is not the solution, more of an explanation and guidance on how to solve this problem by using customizations.

    Golan

  • SQL report

    How can I make the Apex SQL report that follows (two versions)?

    Thank you very much.

    Participation of students in the meetings.

    Students = Aris, Maria

    Meetings = 1, 2, 3 (2014-1-5, 15-1-2014 and 2014-1-25 respectively).

    Participation = 0/1 (absent/present).

    __________________________________________

    Report version 1

    Meeting 1 meeting 2 3

    1 1 ARIS 0

    Maria 1 0 0

    __________________________________________

    Report version 2

    Meeting 1 meeting 2 3

    2014 1-5 15-1-2014 2014-1-25

    1 1 ARIS 0

    Maria 1 0 0

    __________________________________________

    Here's the diagram:

    create table students

    (

    primary key not null ID number,

    name varchar2 (80)

    );

    create table meeting

    (

    primary key not null ID number,

    date of meeting_date

    );

    create the table student_meeting

    (

    primary key not null ID number,

    student_id number of non-null reference student (id),

    meeting_id number of non-null reference meeting (id),

    number of presences,

    check (presence in (0, 1))

    );

    insert into values student (11, "Aris");

    insert into values student (12, 'Maria');

    Insert in the encounter of the values (1, '' 2014-01-05);

    insert into values of meeting (date 2, '' 2014-01-15).

    Insert in meeting values (3, '' 2014-01-25).

    insert into student_meeting values (101, 11, 1, 1);

    insert into student_meeting values (102, 11, 2, 1);

    insert into student_meeting values (103, 11, 3, 0);

    insert into student_meeting values (104, 12, 1, 1);

    insert into student_meeting values (105, 12, 2, 0);

    insert into student_meeting values (106, 12, 3, 0);

    commit;

    What you want is called a matrix or pivot table dynamic PivotTable report... Take a look at this link RPF (as long as you eon ar 11g for a database...) for example: Vishal blog: methods of creating matrix in Oracle APEX report

    Thank you

    Tony Miller
    Software LuvMuffin
    Ruckersville, WILL

  • SQL report should look to the updating of the continuous element

    Hello

    I have a question about how it is possible to do a SQL report that looks like the element continuous is changed in the browser.

    I now have this SQL query:

    Select x.first_name, x.Last_name, it. Nom_element, ui.user_item_ID, ui.item_ID, ui.employee_number

    of APEX_EBS_ACTIVE_LIST x,.

    USER_ITEMS ui,

    ELEMENT that she

    where x.employee_number = ui.employee_number

    and it.item_id = ui.item_id

    and ui.employee_number =: p7_employee_number

    ORDER BY x.last_name

    I have Apex page 7 a popup lov (P7_employee_number. When selection here the employee_number I want that the SQL query displays at the same time the report below on the page with the information on the employee.

    Does anyone know how this is possible? I use APEX 4.2

    Thank you!


    Concerning
    ELCO

    ELCO

    On point page p7_employee_number have a dynamic action with the event 'change '.

    Have an action "Refresh" with as affected the region of you're sql statement.

    Make sure that the p7_employee_number element is declared as "Elements of Page to submit" to the region.

    Which will refresh the report whenever the item is changed.

    It is with the section of the page and the report are not on the same page apex.

    Nicolette

  • How to generate a report

    Hello

    I have a pretty simple question, how to create reports in the CR?  My boss is looking for the weekly stats of all my ESXi 3 servers (CPU utilization, memory, etc.) all and he doesn't want screenshots.  What is the best way to do it?

    Thank you

    VCenter/VSphere with none of the integrated reporting mechanisms.  Apart from the use of tools of the 3 - rd party, you could always query the historical data of the SQL VCenter database using something like SQL Reporting Services or a programming language of your choice.  It would take some research to correlate all the data, but it's there.  Display the view such as "... _HIST_STAT...".

  • Change the line color of the standard SQL report

    Hello

    I'm trying to follow this post to change the color of a line in the APEX SQL report. Change the color of line - report SQL Oracle APEX

    It is a little outdated and trying to figure out how to get to this page: http://img7.imageshack.us/img7/4782/columntemplate.jpg 4.2 APEX where I can put under condition of background color.


    I use Theme 13 (inheritance) and make a copy of the report area. Published, but could not find an equivalent section of this screenshot of the apex 3.1.

    Any help appreciated.

    William Wallace says:

    I'm trying to follow this post to change the color of a line in the APEX SQL report. Change the color of line - report SQL Oracle APEX

    It is a little outdated and trying to figure out how to get to this page: http://img7.imageshack.us/img7/4782/columntemplate.jpg 4.2 APEX where I can put under condition of background color.

    I use the theme 13 (legacy)

    Ugh.

    and make a copy of the report area. Published, but could not find an equivalent section of this screenshot of the apex 3.1.

    This suggests that you look at the definition of region page, or even simply the definition of region model. What you need here is a copy of the report model.

    1. go in Home > Application Builder > Application > shared components > models.

    2. Select theme 13 theme filter, the Filter Type reports and click OK.

    3. create a copy of the Standard report model by using the icon copy in the list.

    4. Select the new report template and edit it as shown in the thread linked to above, paying special attention to the content of the second post. (It is of generic column template definition page that contains the section in the screenshot).

Maybe you are looking for