How to create a menu of reports in APEX

Dear Sir
I want to create a menu of reports, so that the user click on the report name to view the report. I save all the reports in a database table and display interactive report on the home page.
How can I bind the relevant reports to each row of the table
kindly help me to achieve the functionality

Hello

Process of creation of list as follows *.

You must follow these steps in the wizard to create a list,

1. go in the shared components of your application.
2. by navigation, click on the menu lists.
3. click the Create button which would be available in this page.
4. Select the Option 'From Scratch' and click Next.
5. enter a name for the list, select dynamic as the type of list, you can choose any list template and compiler options too. Click Next.
6. write the SQL query to dynamically generate the list, you can look in my example to get more clarity on the same with denunciations of target too. Click Next.
7. click the Create button to complete creation of list.

Now, the list has been created in the components of shred.

Then you create a page from scratch in your application, this can be done by clicking on the button to create in your application and choose the type of page to Page zero. You think about the functionality of zero order page, otherwise please try to go through some documents and learn it.

In the zero page, please follow the steps below.

1. create a new region.
2. choose the type of region as a list.
3 give the title to the region and click Next.
4. in the list, the above created list name will be available, choose and click on create the region from the list.

As we have created it in the page from scratch, it will be available in the full application.

Go to the Pages of the report,

Page 5 - used

Change the region of interactive to display in the column 2 reports.

Page 6 - Department

Change the region of interactive to display in the column 2 reports.

Now run the application. It works very well.

Kind regards
Santini.

Tags: Database

Similar Questions

  • How to create the menu on the LEFT, as in new BBM?

    Is there any sample how to create the menu on the left of the application as in the new BBM?

    As I know not - there's a good menu, context menu, top menu... but how to create left?

    It's just a TabbedPane: https://developer.blackberry.com/cascades/reference/bb__cascades__tabbedpane.html

  • How to create a menu button of 3 lines for navigation on a mobile site?

    How to create a menu button of 3 lines for navigation on a mobile site and do trigger the Accordion Panel? I created my first sites on Muse and can't seem to understand.

    Download icons FontAwesome and install it manually.
    https://fortawesome.github.IO/font-awesome/

    Add web fonts self-hosted | Adobe Muse CC tutorials

  • How to create a menu manual, WITH dropdowns

    How to create a menu manual, WITH dropdowns

    You can use the "Composition" widget with these settings:

    Note: Use triggers to place your text. You can use each box to add all your links on the page in question.

  • How to create a menu of 4 pages on a second level page?

    How to create a menu of 4 pages on a second level page?

    Find the forum for some product your question implies and ask your question there.  Here is a link to a page that has links to all of the Adobe forums (look in the drop-down list if you do not see it introduced as a large icon)

    Forum links page:
    ----------------

    http://forums.Adobe.com/index.jspa

  • How to create the page zero in the apex oracle 4.0?

    Hi all
    How to create the page zero in the apex oracle 4.0?

    Concerning
    Mani

    Hello

    Home > Application Builder > Application xxx > create Page
    There are down to the Center on Wizard Page zero

    Kind regards
    Jari

    Published by: jarola 25 August 2010 19:28

    And here's the chapter on literature
    http://download.Oracle.com/docs/CD/E17556_01/doc/user.40/e15517/UI.htm#BGBFFFGH

  • How to create a session variable in the Apex?

    Hello dear colleagues,

    Is there a person know how to create a session variable in the Apex?

    How to get them?

    Thank you

    Best regards

    Hello

    No problem, PS don't forget to mark messages as 'useful' or 'correct', if you did infact find them useful or correct ;)

    John.
    --------------------------------------------
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd

  • How to create a menu of DVD type?

    I have a video on my stage. I would like to create a menu that will control the playback, similar to how works a menu of DVD, but without the cutting the video in separate video clips. In other words:

    My video has Chapter 1 at time 0:00, Chapter 2 at time 01:25, Chapter 3 at 03:50. The user who viewed the video would be able to click a button for Chapter 2 that could launch the video playing at 01:25, or click a button for Chapter 3 which would have the video pass 03:50, etc..

    I would do this if I can change the time simply by updating the code, as mentioned previously, split the video into different clips then loading them is not an option.

    How do I configure this?

    Thank you

    M lively help | Add video to animations

  • How to create a dynamic RTF report that creates dynamic columns based on the selection of dynamic columns in a table?

    Hi all

    Suppose I have table, whose structure changes frequently on a daily basis.

    For example. / / desc my_table gives you after the name of the column the day 1

    SQL > my_table DESC;

    Output

    Name

    Age

    Phone


    Day 2, two other columns are added, viz, address and salary.

    SQL > my_table DESC;

    Output

    Name

    Age

    Phone

    Address

    Salary


    Now, I want to create a Dynnamic RTF report which made extracting data from all columns from my_table daily. For this, I have defined a simultaneous program with XML output type and include in annex a data/definition of data model that takes XML as input and gives the final result of the conc program in EXCEL layout. I am able to do that for a constant number of columns, but don't know how to do it when the number of columns to display dynamically changes.

    For 1 day my XML file should be like this.

    <?xml version="1.0" encoding="UTF-8"?>
    <dataTemplate name="XYZ" description="iExpenses Report" Version="1.0">
    <dataQuery>
    <sqlStatement name="Q2">
    <![CDATA[
    SELECT Name
    ,Age
    ,Phone
    FROM my_table
    ]]>
    </sqlStatement>
    </dataQuery>
    <dataStructure>
    <group name="G_my_table" source="Q2">
      <element name="Name" value="Name" />
      <element name="Age" value="Age" />
      <element name="Phone" value="Phone" />
    </group>
    </dataStructure>
    </dataTemplate>
    
    

    And my day 1, EXCEL output RTF model should be like this.
    Name age phone

    Swapnill 23 12345

    For 2 days my XML file should be like this. With 2 new columns selected in the SELECT clause.

    <?xml version="1.0" encoding="UTF-8"?>
    <dataTemplate name="XYZ" description="iExpenses Report" Version="1.0">
    <dataQuery>
    <sqlStatement name="Q2">
    <![CDATA[
    SELECT Name
    ,Age
    ,Phone
    ,Address
    ,Salary
    FROM my_table
    ]]>
    </sqlStatement>
    </dataQuery>
    <dataStructure>
    <group name="G_my_table" source="Q2">
      <element name="Name" value="Name" />
      <element name="Age" value="Age" />
      <element name="Phone" value="Phone" />
      <element name="Address" value="Address" />
      <element name="Salary" value="Salary" />
    </group>
    </dataStructure>
    </dataTemplate>
    
    

    And my day 2, exit EXCEL model RTF should be like this.
    Name address telephone pay

    23 12345 Madrid 100000 Swapnill

    Now, I don't know below things.

    • Make the dynamic XML as we did in the day 1 there are 3 columns in the SELECT statement and the day 2, 5 columns. I want to create a dynamic XML which must not be changed if the new columns are added into my_table. I don't know how to create this query and also create their corresponding items below.
    • Make the RTF model dyanamic as day 1 there are 3 exit EXCEL columns and the day 2, 5 columns. I want to create a dynamic RTF model that would display all the columns selected in XML dynamic. I don't know how the RTF will create new XML tags and how it will know where to place them in the report. Means, I can create model RTF day 1, by loading the XML data for 3 columns and place 3 tags XML in the model. But how he will create and place the tags for the new columns the day 2?

    Hope so, you got my requirement, it's difficult. Please let me know how I can implement the necessary solution using the RTF dynamically without any manual intervention.

    Kind regards

    Patricia K.

    Post edited by: SwapnilK

    Hi guys,.

    I was able to solve above the requirement.

    I created a procedure that would create & update (attached to the data definition) XML file dynamically for each race. This dynamic XML contains the SQL statement for the data query that is built dynamically. I am updating this XML file using XDOLoader utility to the definition of data. Then run my program customized to generate the excel output.

    Exit excel retrieves correct number of columns dynamically (3 on Day1 and Day2 5), with corresponding data records.

    Kind regards

    Patricia K.

  • How to create this MENU: Danielle Beaumont

    Hello

    I use this menu created by Danielle. This has a nice sliding next to it, but I have questions about how this was actually built, because I would be able to make my own... There is transparency in transfers, and there some sliding mechanism for menu items in one at a time.

    How to create a mobile website with Adobe Muse | Adobe Muse CC tutorials

    I can't find the coordinates, and I can't seem to find a way to deconstruct it. How can I find this information?

    ALSO... BIG note about this, is that there seems to be some type of invisible behind the button that opens the menu. This is important because without it, the menu will automatically expand all rectangle behind it... wanting to know what is happening and why the need for the fix, just so I understand.

    Thank you!!!

    Dave

    Hi Dave,.

    You can find a lot of tutorials of Muse developed at events. Adobe Muse CC who discuss and share glimpses of various tools/options of Muse and how they can be combined to create useful and enjoyable user experiences.

    For the mobile menu, see http://media2.fwpublications.com.s3.amazonaws.com/Design-Webinars/Design-for-mobile-device s-with-Adobe-Muse - CC.mp4 (especially from 32: 00 minutes beyond where Dani explains the menu for mobile layout).

    See you soon,.

    Vikas

  • How to create a menu

    I took a quick glance at some of the sample applications, but the default behavior seems to be for the menu to be accessible by clicking on the trackball. Issues related to the:

    1. How can a built menu which is accessible through the menu button.

    2. How can I get rid of the item of menu "menu".

    3. How can I activate the buttons "Back" and "Hang up" so that they work as they do in all BlackBerry applications. (IE. The 'Back' button keeps running the program and directs the user to the screen of the Launcher, and the "End" button does the same thing)

    Thank you.

    If you extend screen, the menu button is already wired for you. Just substitute makeMenu() and add your MenuItem objects to the menu.

    If you extend full screen or other display classes, you must grab the key and call you the menu.

    By clicking on the ball control is not automatically the menu - it depends on the context of the screen. This was also the defaul on older OS levels (4.10 and back).

    The buttons "back" and "hang up" also works if you extend screen. "hang up" (redphone) will push your app in the background, 'return' will usually close the current screen.

    You should look at the examples provided in a recent version of JDE - all this is covered.

  • How to create a menu bar vertical

    Hello

    I use jdev 11.1.2.4.

    I want to create a menu bar vertically inside a panel according to. I placed the menu bar within a group (vertical) Panel scheme, but his does not work.

    I want the layout like this

    menu 1

    menu item

    menu item

    menu 2

    menu item

    menu item

    menu 3

    ...

    ...

    any ideas?

    Thank you

    Hello

    It works for me

    Frank

  • How to create a menu in the sidebar like this?

    I am relatively new to Muse and would like to create a menu of the similar circular sidebar for the following two examples.  I would like the text to be displayed when you hover over the circles as in the first option and have a slider that goes to the bottom of the page like in the second option.  I tried looking for tutorials to help me with this nail but did not come close to one.  Any help would be great.

    Thank you!

    Example of text - http://workwankers.com/

    The example of cursor - Black 2012 Sun | We believe in...

    You can set the scroll to anchor for the navigation menu:

    http://musewidgets.com/collections/all/anchor

    Thank you

    Sanjit

  • How to create the top 20 report?

    Hi all

    I have a requirement to create a TOP 20 CUSTOMERS by category report.

    I never did and I remember that some RANKING functions are available in the responses.

    Please let me know if anyone has this knowledge.

    Thanks in advance.

    Concerning
    Nathalie

    Hi Nathalie,.

    You can create a TOP 20 reports by following the steps below.

    1. create an analysis by category, customers, and the .
    2. now, include another (all) column and change its formula as RANK ( category).
    3. now, if you run the report, you can see the measures by category.
    4. now to include a filter on the RANK column as<>

    I hope this helps.

    Thank you
    Diakité

  • How to create a text in forms to APEX movement?

    Hello

    Someone can help me with the procedure, and the code to create a moving text in the APEX.

    Thanks in advance.

    Use scrolldelay. example is shown below. creates a delay of one second (1000 milliseconds)

    scrollDelay = "1000".

    direction = "right" loop = "50" width = "100%" >Welcome to Daily Printing Tracker

    Let me know if that answers your query in the active thread

    Kind regards

    Vishal

    Oracle APEX 4.2 reports | Packt Publishing

    Vishal blog

Maybe you are looking for