How to create link on report of table on the othere dashboard page

Hello

I created a page of dashboard... we have graphic report... When I'm clicking Chart report, it goes to the page respective dashboard... Please help me

Hi merago,

This can be achieve with action links. Please refer to http://www.rittmanmead.com/2010/07/obiee-11gr1-action-framework-and-conditions/

Close the thread and give points.

J.

Tags: Business Intelligence

Similar Questions

  • How to create a SelectOneChoice using different Tables in the database

    Hi all

    I have a requirement where I have two tables have been created in the database: -.

    Master
    Slave

    Main table has columns as Id and Name. Are similar to values associated with the columns: -.
    ID:-1, 2, 3
    Name:-mobile phone, T-Shirts, bags of University

    In the table of the slave I have columns like Id and elements. Are similar to values associated with the columns: -.

    ID:-1.
    Items:-Nokia, Samsung, Motorola
    ID:-2
    Items:-Adidas, Reebok, Gucci
    ID:-3
    Items:-Reebok Adidas, VIP,.

    I need restore the values of mobile phones (Nokia, Samsung, Motorola), in SelectOneChoice1, t-shirts (Adidas, Reebok, Gucci) values in SelectOneChoice2 and bags of University (Adidas, Reebok, VIP) in SelectOneChoice3.
    I have two controls of data with me, it is main table and isn't the slave table but how do you get the different values in each of the SelectOneChioce.

    Please suggest. !!
    Thank you

    chk
    http://andrejusb.blogspot.com/2008/12/cascading-lovs-in-Oracle-ADF-11g-update.html
    http://www.YouTube.com/watch?v=nXwL2_RP7AQ
    http://blogs.Oracle.com/Shay/entry/got_to_love_cascading_lovs_in

  • How to create a parameterized report - select "- ALL -" for the Department and manager does not.

    I downloaded the app OEHR sample of objects and followed the steps in Oracle® Application Express Advanced Tutorials
    Version 3.2.

    The report and the settings seem to work fine except when I get 'everything' for service or manager I get no corresponding success.

    What is the way most effective to get 'everything' if the user selects all for dept and mgr - so we would like to return all records in the table.

    Snipprt region

    Enter search Edit   
    Edit
    Edit
    Edit

    Here is the sql code that was provided as part of the turitoral.

    SELECT

    'OEHR_EMPLOYEES '. "" EMPLOYE_ID ""EMPLOYE_ID"

    'OEHR_EMPLOYEES '. "" NAME ""FIRST NAME",

    'OEHR_EMPLOYEES '. "" LAST_NAME ""NAME,"

    'OEHR_EMPLOYEES '. "" ""E-MAIL. "

    'OEHR_EMPLOYEES '. "' PHONE_NUMBER '"PHONE_NUMBER. "

    'OEHR_EMPLOYEES '. "' HIRE_DATE ' 'HIRE_DATE ',.

    'OEHR_EMPLOYEES '. "" JOB_ID ' "JOB_ID,

    'OEHR_EMPLOYEES '. "" TREATMENT ""TREATMENT. "

    'OEHR_EMPLOYEES '. "" COMMISSION_PCT ""COMMISSION_PCT. "

    'OEHR_EMPLOYEES '. "" MANAGER_ID ""MANAGER_ID. "

    'OEHR_EMPLOYEES '. "" DEPARTMENT_ID ""DEPARTMENT_ID ".

    Of

    "#OWNER # '." OEHR_EMPLOYEES' 'OEHR_EMPLOYEES '.

    WHERE

    (lower (first_name) like '%' | lower(:P1_NAME) |) '%' OR

    Lower (last_name) like '% "| Lower(:P1_NAME) | '%')

    AND department_id = decode(:P1_DEPT,'%null%',department_id,:P1_DEPT)

    AND manager_id = decode(:P1_MGR,'%null%',manager_id,:P1_MGR)

    Hello

    Use this...

    SELECT

    'OEHR_EMPLOYEES '. "" EMPLOYE_ID ""EMPLOYE_ID"

    'OEHR_EMPLOYEES '. "" NAME ""FIRST NAME",

    'OEHR_EMPLOYEES '. "" LAST_NAME ""NAME,"

    'OEHR_EMPLOYEES '. "" ""E-MAIL. "

    'OEHR_EMPLOYEES '. "' PHONE_NUMBER '"PHONE_NUMBER. "

    'OEHR_EMPLOYEES '. "' HIRE_DATE ' 'HIRE_DATE ',.

    'OEHR_EMPLOYEES '. "" JOB_ID ' "JOB_ID,

    'OEHR_EMPLOYEES '. "" TREATMENT ""TREATMENT. "

    'OEHR_EMPLOYEES '. "" COMMISSION_PCT ""COMMISSION_PCT. "

    'OEHR_EMPLOYEES '. "" MANAGER_ID ""MANAGER_ID. "

    'OEHR_EMPLOYEES '. "" DEPARTMENT_ID ""DEPARTMENT_ID ".

    Of

    "#OWNER # '." OEHR_EMPLOYEES' 'OEHR_EMPLOYEES '.

    WHERE

    (: P1_NAME IS NULL OR)

    (: P1_NAME IS NOT NULL AND)

    (

    (lower (first_name) like '%' | lower(:P1_NAME) |) '%') OR

    (lower (last_name) like '%' | lower(:P1_NAME) |) '%')

    )

    )

    ) AND

    (: P1_DEPT IS NULL or department_id =: P1_DEPT) AND

    (: P1_MGR IS NULL or manager_id =: P1_MGR)

  • Where did my design go?  I created 4 pages for web design and I was finishing up the home page, all the other 3 pages have simply disappeared, the layers are empty? I spent 4 days design that... How to make that back?

    Adobe Muse: Web design.

    Where did my design go?  I created 4 pages for Web design and I was finishing up the home page, all the other 3 pages have simply disappeared, the layers are empty? I spent 4 days design that... How to make that back?

    I restarted the laptop,

    creates a new document and quickly made 3 new pages... and yet once... These pages have disappeared?

    Please provide a quick solution for me because I have to present my work to the customer.

    Did you remove all traces of high level in the layers (i.e. "layer-1") Panel?

    When something like you describe is reported, most often the user does not understand the layers of high level exist across all pages and updates on the page of your site. If you delete "Layer 1" you may remove the content of all pages of your site.

  • How to create a button to download files in the form?

    How to create a button to download files in the form?

    Hello

    Please refer to the link below with a similar discussion.

    Download file button

    Kind regards

    Vivek

  • How to restore deleted records in another table in the oracle 10g database...

    Hi all

    I want to restore deleted records in a particular table in the other table

    Suppose that:

    I make a request

    delete from emp

    where deptno = 30;

    now, I won't restore deptno = 30 records in the other table, let's say table emp1

    can someone let me know how to do it?

    Thank you...

    This is what flashback query is for:

    orclz > conn scott/tiger

    Connected.

    orclz > select count (*) emp;

    COUNT (*)

    ----------

    14

    orclz > delete from emp where deptno = 30;

    6 deleted rows.

    orclz > commit;

    Validation complete.

    orclz > create table deleted30 in select * from emp to the timestamp (systimestamp - 5/1440) where deptno = 30;

    Table created.

    orclz > select count (*) in the deleted30;

    COUNT (*)

    ----------

    6

    orclz >

  • How to subtract th position of a table from the position of the i - th another

    Hello world

    In my program, I have a subract the other table. It should be like x - y (i)

    Can someone explain to me how can I make sure I'm subtracting ith value of table 2 of l'i-ieme value in the table one?  No, for example, x - Y (i + 1)?

    Thank you

    In LabVIEW polymorphism of the substrate function we will exempt you directly from one table on the other. If I understand you correctly, this will be what you want.

    Also seems that you are new to the concepts: take a look at the posibillities of automatic indexation of the loops for.

    Felix

  • How to create a window with its own window border other than the local system window border?

    How to create a window with its own window border other than the local system window border?

    For example, a border: a black line with a width of 1, then a transparent line with a width of 5. Inside, it's the content pane.

    In JavaSE, there seems to be for the JFrame paintComponent() method to realize the effect.

    I can't see what you're trying to do now: it's a little trickier. You need stage.initStyle (StageStyle.TRANSPARENT), and I think you have to imitate the transparent part of the border by the presence of a second vessel inside the root container, properly positioned.

    Something like:

    
    import javafx.application.Application;
    import javafx.application.Platform;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.layout.AnchorPane;
    import javafx.scene.layout.StackPane;
    import javafx.scene.paint.Color;
    import javafx.stage.Stage;
    import javafx.stage.StageStyle;
    
    public class CustomBorderExample extends Application {
    
      @Override
      public void start(Stage primaryStage) {
      AnchorPane root = new AnchorPane();
      root.setStyle("-fx-border-color: black; -fx-border-width: 1px; ");
    
      StackPane mainContainer = new StackPane();
        AnchorPane.setTopAnchor(mainContainer, 5.0);
        AnchorPane.setLeftAnchor(mainContainer, 5.0);
        AnchorPane.setRightAnchor(mainContainer, 5.0);
        AnchorPane.setBottomAnchor(mainContainer, 5.0);
      mainContainer.setStyle("-fx-background-color: aliceblue;");
      root.getChildren().add(mainContainer);
    
      primaryStage.initStyle(StageStyle.TRANSPARENT);
      final Button closeButton = new Button("Close");
        mainContainer.getChildren().add(closeButton);
        closeButton.setOnAction(new EventHandler() {
          @Override
          public void handle(ActionEvent event) {
            Platform.exit();
          }
        });
      primaryStage.setScene(new Scene(root,  300, 200, Color.TRANSPARENT));
      primaryStage.show();
      }
    
      public static void main(String[] args) {
      launch(args);
      }
    }
    
  • need a script to create multiple tables as the other columns in tables

    I need script to create multiple tables as the other columns of tables respectively.

    lets consider I want to create tables from table1... table99 like tablex1... .tablex99 columns (without data) respectively (i.e table1 as tablex1, table99 as tablex99).
    declare
    
    cursor c is select object_name from all_objects where object_type='TABLE';
    
    begin
    
    for i in c loop
    
    execute immediate 'create table '||i.object_name||'_x as select * from '||i.object_name||' where 1=2';
    
    end loop;
    
    end;
    
    use can use this and put your user names accordingly.
    If you get any error please post the error.
    
  • Problem: Build a VI to display a string in the table of the lights. Each letter must be posted in a separate table and letters must move from one table to the other in the direction from left to right.

    Hi all

    Problem: Build a VI to display a string in the table of the lights. Each letter must be posted in a separate table and letters must move from one table to the other in the direction from left to right.

    I did program mentioned above but it does not work. Can you tell me what is the problem?

    There is no error is indicated in the program. If someone knows about it please try to find solutions and help me out of this problem.

    I have attached my program with this message.

    Thank you in advance!

    (1) FOR loops are your friend here.  You can make a slight restructuring using loops, and then you will have less mess to deal with, the inner loop through tunnels of autoindexing to make it even simpler.

    (2) I would only treat the numeric values of the characters.  So go terminal of control of the chain, the capital letters and byte array to before the outer loop.  You can use a size of Board over there to tell how many times the outer loop to iterate.

    (3) the Index table is extensible.  So you only need over the index of the first, and it will increment itself, as it develops.

    (4) you need to finish the lookup table (table 3D)

  • My Macbook 2014 pro is almost full. How to free storage space. Most is in the 'other' category in the view of storage.

    My Macbook 2014 pro is almost full. How to free storage space? Most is in the 'other' category in the view of storage. Also, if I delete movies bought from iTunes, I'll be able to download them later for free?

    Bottom line: you need to delete/move files on the internal drive. For important files, you will want to copy them to an external drive.

  • [ADF, JDev12.1.3] master / detail af:tables the link is handled by ExecuteWithParams: how to create a master report / detail in a loop on the lines?

    Hallo,

    I have a page with 2 legs and they both contains an af:table created by dragging an instance of VO in the user interface.

    The 1st tab uses a master VO while the 2nd uses a VO detail.

    Between 2 your, there is not a link of VO master / detail.

    Opening Details tab I update the secondary table by calling the method ExecuteWithParams of the detail VO instance (in a managed bean).

    I would now like to generate a report that loop on the master table and that, for each line of master:

    • He writes in the report;
    • loops of registration of details (which are based on the master record) and also writes the report.


    Could you kindly suggest me which is the best way to achieve that through a code to write in a managed bean?

    Here I am interested how do to loop through the data, not in how to write the report.

    Thank you

    Federico

    Yes it will affect the selected line. If you want to ignore try using this code

        DCIteratorBinding iter = (DCIteratorBinding) BindingContext.getCurrent().getCurrentBindingsEntry().get("DepartmentsView1Iterator");
        ViewObject vo = iter.getViewObject();
        for (int i = 0; i < vo.getEstimatedRowCount(); i++)
        {
          Row r = vo.getRowAtRangeIndex(i);
          System.out.println("DeptId= " + r.getAttribute("DepartmentId"));
        }
    
  • How to create link db to access other databases for specific user tables

    Hi Experts,

    You want to create db link:

    Please create a dblink, a native of PSOLDB (proddta, owner) and the PSOLPP (owner of the CMR) destination.

    GRANT SELECT, UPDATE, DELETE

    Database: PSOLPP

    Owner: RMC

    TABLES: F5560052, F5560011, F5560053, F5560001, F5560002, F5560535, F5560035, F5560537, F5560538, F5560080, F5560081, F5560092, F5560100, F5560101, F5560102, F5560105, F5560103, F5560104, F5560004, F5560003, F5560200 and F5560110

    My question is how to create db connection for access of the user of the CMR tables in database PSOLPP, and a question arises in my mind is if we create DB link for user CTMR, it will access all tables in the schema of RMC, but we need only access some tables (above tables only)

    Please advice

    Thank you


    Sam

    You can

    Create another user in the PSOLPP database.

    Give all the privileges the user created on rmc tables

    create database PSOLDB (owner of proddta) link to the new user.

  • How to create a vertical report

    I'm new to application Express. I am trying to create financial reports base use it (for example, income statement, balance sheet). As a general rule, these reports are organized vertically where quarterly financial data are displayed as a separate column. Can someone point me in the right direction on how to create these types of reports using the Application Express?

    I haven't played with the report model "vertical report, watch 1. When I used this disc was oriented vertically and not the default horizontal orientation, but records appeared in individual tables instead of a big table with several columns.

    Here is an example of the type of report, I am trying to create: http://finance.yahoo.com/q/is?s=ORCL

    Thanks in advance.

    Hi Jim,.

    You can do if you create a custom line template. I do not have your tables, so what follows is based on:

    SELECT ENAME, SAL, COMM FROM EMP ORDER BY 1
    

    1 - Go to the components shared, models
    2 - Click on create
    3 - Select the report
    4 - Select from scratch
    5 - Enter a name for the model, select any template class (for example, Custom 1) and select "Named column (model line).
    6. click on create

    Now, edit the model and use the following settings:

    Model of line 1

    <td align="right" style="width:200px;">#1#<br>#2#<br>#3#<br></td>
    

    Front of the lines

    <table>
    <tr>
    <td align="right">Name<br>Salary<br>Commission</td>
    

    After the lines

    </tr>
    </table>
    

    Pagination parameters can be copied from a report of your choice model

    Attach the new model to your report and run the page. The HTML before lines will be rendered first, and then for each 'line' in the report, a new TD cell is created with all the data of this 'line' (note that #1 #, 2 # and #3 # fact refers to columns 1, 2 and 3 - so, in this example, ENAME, SAL and COMM respectively) and, upon reaching the maximum number of lines by the report parameters the HTML after lines is added, thus completing the line.

    Obviously, you will have to add in your own style and change the above to suit your specific needs, but that should give you a starting point.

    Andy

  • How to create link annotation on a particular word to PDF?

    Hello

    I'm creating a plugin in Acrobat 9. The plugin must find a text to PDF and create a link to this topic annotation.

    I use PDWordFinder to find the text in the pdf file. But I am unable to create the annotation link as create an annotation requires the ASFixedRect object.

    Can anyone help me how can I get object ASFixedRect of a word especially in pdf format to create a link annotaion on it?

    Thank you

    As I've already said:

    When you use the word finder, you can get the quad for each word.

    A quad is now the corners of four shape faces - not necessarily a rectangle. But if you make the smallest rectangle that surrounds the quad, it's the best that you can make a rectangular link.

Maybe you are looking for

  • Deleted photos six months there are still appearing on my PC iCloud Photo downloads - even if they are not on my phone or iCloud photos online. Help, please

    Hello world I would really appreciate help with this. I took all my photos on my iPhone (iOS 9.2) 5s and put them on my computer. I also have pictures of iCloud connected to my computer. Anyway, I logged into my icloud.com account and there are no ph

  • Copy photos from one project (book) to another

    I have created a project (book), but I'd like to see what it looks like with a different format.  So, I chose a new project but can't seem to find a way to copy the photos from the first to the second.  I can select all the photos in the first draft

  • Help! Unable to connect USB with the computer!

    Hey... I use bike g 2nd GEN recently, when the options of connectivity usb came... I have disabled by error two options... And now, when I connect my phone with cable USB WHAT DO not come connectivity options to the top! And only charges the phone! I

  • shooting a bjt

    Hi guys,. Can someone suggest me how we use systems LAbview DAQ to the fire BJT connected to a switching circuit. Kind regards RJ

  • Help restore my desire

    Gentlemen: I want to again. I made a mistake in setting up, and I need to go back to the way I got it from the factory. I reinstalled the OS and got most of the drivers, but miss me him still 3 (Controller network and two unknowns) There must be an e