Dynamic columns in dashboard prompt

Hi all
I have to 'TOP' dispay & dynamic value 'BOTTOM' in the drop-down list of the dashboard invites the creation of a dynamic column value in the drop-down list prompt dashboard? I'm trying to create in writing view sql result but not getting does not correctly according to the selection of HIGH and low, I must make a report changes
SELECT CASE WHEN 1=0 THEN ExistedPresentationColumn ELSE 'TOP' END FROM SubjectArea
UNION ALL
SELECT CASE WHEN 1=0 THEN ExistedPresentationColumn ELSE 'BOTTOM' END FROM SubjectArea

Tags: Business Intelligence

Similar Questions

  • OBIEE 11 g dynamic column headings

    I doubt I should do some dynamic column headings in OBIEE 11 g

    I have guest months (1,2,3...)

    but in the report I want column header to be something as if showing 1 do Jan...

    How to achieve this and is for the column headers!

    Thank you

    NK

    I fixed that with a dummy work around

    created a new prompt and pass values of the previous message and put this quick as a filter on the dashboard (dashboard properties).

    and used this new prompt variable as a header for the report

    He worked

    Thank you

    NK

  • Dynamically fill a dashboard Panel in a Fragment

    I work with a custom in a fragment (jsff) Panel dashboard.  The user can customize the dashboard (re - order of the Panel boxes, set the number of columns, add/remove Panel boxes, etc.) and our goal is to persist these customizations so that they are available in different sessions.  To do this, I created several tables of data base for these customizations and they linked to the table user.  When the user opens the application, the fragment of dashboard is the first fragment to display.  I load the information of the database, and then build the dashboard Panel.  The dashboard starts with a static Panel box set (as seen in main_dashboard.jsff below), then based on the data, I have re - order and boxes rendered set equal to false for the deleted user Panel.

    My problem is that I have to do before the page is rendered.  To do this, call the method of customization of the constructor of my grain of support.  The RichPanelDashboard I bind the user interface component for is not yet available.  I tried several things that didn't work, including:

    -Added @PostConstruct to my customization method annotation.

    -By taking the root of the view component: RichPanelDashboard mainDashboard = (RichPanelDashboard) .getViewRoot () .findComponent () FacesContext.getCurrentInstance ("mainDash");

    -Adding an event 'preRenderComponent' to the page: < f: event type = "preRenderComponent" listener = "#{main_dashboard.setupCustomDashboard}" / > (after a search on the web, it seems that the tag f: event is not supported in the Fragments of the ADF).

    I encountered this problem in the past with the different user interface components.  In particular, I had to fill a SelectOneListBox before the page is rendered.  I solved the problem by adding a child < f: selectItems > to < af:selectOneListBox > and the value of this tag to a list of SelectItems in my grain of support and populate this list on instantiation of the bean.  Is there a similar option for a dashboard Panel and a list of the Panel boxes?  The idea of using a < af:forEach > tag had crossed my mind to fill the dashboard Panel with Panel boxes, but as you can see in my code below, I already use to dynamically fill the first group with < af:forEach > command links box.  Unless there is a way to dynamically fill a dashboard Panel with Panel boxes dynamically populated in the fragment, I don't think that the for each approach will work (it does not appear as a way to dynamically fill boxes of Panel with the user interface components in the bean to support either).

    Example of code is below.  Any suggestions are greatly appreciated.

    main_dashboard. JSFF

    {code}

    < af:panelDashboard id = "mainDash" columns = "2" rowHeight = "250px" styleClass = "AFStretchWidth" inlineStyle = "height: 1000px;

    dropListener = "#{main_dashboard.handleReorder}" binding = "#{main_dashboard.panelDashboard}" > "

    <!-f: event listener = "#{main_dashboard.setupCustomDashboard}" type = "preRenderComponent" /--> "

    < af:panelBox id = "openedBox" text = "Recently opened" >

    < af:componentDragSource / >

    < af:forEach var = "item" items = "#{main_dashboard.openedCommandLinks}" >

    < af:commandLink text = "#{item.text}" partialSubmit = 'true' "

    actionListener = "#{main_dashboard.editorFiredFromDashboard}" / >

    < / af:forEach >

    < / af:panelBox >

    < af:panelBox id = "editedBox" text = "Recently published" >

    < af:componentDragSource / >

    < af:outputText value = "Recently edited" id = "ot2" / >

    < / af:panelBox >

    < af:panelBox id = "openCPsBox" text = "My Open Config Packages" >

    < af:componentDragSource / >

    < af:outputText value = "My Open Config Packages" id = "ot3" / >

    < / af:panelBox >

    < af:panelBox id = "testbox.foobar.com" text = "Test box" >

    < af:componentDragSource / >

    < af:outputText value = "to test only" id = "ot4" / >

    < / af:panelBox >

    < / af:panelDashboard >

    {code}

    MainDashboardBackingBean (main_dashboard)

    {code}

    Private RichPanelDashboard panelDashboard;

    ...

    public MainDashboardBackingBean() {}

    ...

    setupCustomDashboard();

    }

    ...

    Using the annotation @PostConstruct has failed

    @PostConstruct

    public void setupCustomDashboard() {}

    ...

    Set the number of custom columns

    Integer selectedColumnCount = customDashboardDcl.getColumnCount ();

    FacesContext pulling didn't work

    RichPanelDashboard mainDashboard is FacesContext.getCurrentInstance (RichPanelDashboard) () .getViewRoot () .findComponent ("mainDash");.

    mainDashboard.setColumns (selectedColumnCount);

    Null pointer that happens here

    panelDashboard.setColumns (selectedColumnCount);

    Create the new ordered list

    If (customDashboardMap! = null) {}

    List < String > reorderedIdList = new ArrayList < String > (customDashboards.size ());

    for (Integer key: customDashboardMap.keySet ()) {}

    String customId = customDashboardMap.get (key);

    for (UIComponent currChild: panelDashboard.getChildren ()) {}

    String currId = currChild.getId ();

    If (customId == currId) {}

    reorderedIdList.add (currId);

    break;

    }

    }

    }

    Unused Panel boxes must always be added, but not rendered

    for (UIComponent currChild: panelDashboard.getChildren ()) {}

    String currId = currChild.getId ();

    If (! reorderedIdList.contains (currId)) {}

    currChild.setRendered (false);

    reorderedIdList.add (currId);

    }

    }

    Apply the changes

    ComponentChange change = new ReorderChildrenComponentChange (reorderedIdList);

    change.changeComponent (panelDashboard);

    }

    AdfFacesContext.getCurrentInstance () .addPartialTarget (panelDashboard);

    }

    ...

    public RichPanelDashboard getPanelDashboard() {}

    Return panelDashboard;

    }

    {} public void setPanelDashboard (RichPanelDashboard panelDashboard)

    this.panelDashboard = panelDashboard;

    }

    {code}

    Hello

    I actually fill my panelDashboard with a forEach on a dashboard item list.

    Binding = "#{pageFlowScope.myDashboard.dashboard} '"

    dropListener = "#{pageFlowScope.myDashboard.move}" > "

    var = 'panels' >

    background ID = "${panels.ID}" = "medium" showDisclosure = "false" > "

    ID = "r2" / >

    All my panels is rendered as regions that is dynamically filled with workflow single page that are related to the page that contains the dashboard.

    My DashboardItem class creates the binding workflow RegionModel

    public RegionModel getRegionTaskflow() {}

    String regionBinding = "#{bindings." + taskflow + ".regionModel";}

    Model RegionModel = (RegionModel) JSFUtils.resolveExpression (regionBinding);

    return the template;

    }

    I don't know if it's a good practice, but it works.

    Hope that helps,

    Achim

  • dynamic columns

    I use

    DB 10g Release 10.2.0.1.0

    Oracle 6i 6.0.8.8.3 reports

    in the table below.

    How can I have the dynamic columns 'fault' in reports in the order of its highest value of occur_times.

    and a view that gives me no reports (formats below).

    CREATE TABLE dem

    (trid NUMBER (9.0),)

    tr_date DATE,

    point VARCHAR2 (10),

    failure VARCHAR2 (5).

    occur_times NUMBER (9.0))

    /

    INSERT INTO dem

    VALUES

    (1, 26 - JAN 2016', 'MC', 'AB', 3)

    /

    INSERT INTO dem

    VALUES

    (2, 26-JAN 2016', 'MC', 'FM', 2)

    /

    INSERT INTO dem

    VALUES

    (3, 26 - JAN 2016', 'MC', 'SO', 5)

    /

    INSERT INTO dem

    VALUES

    (4, 27 - JAN 2016', 'MC', 'AB', 8)

    /

    INSERT INTO dem

    VALUES

    (5, 27-JAN 2016', 'MC', 'FM', 2)

    /

    INSERT INTO dem

    VALUES

    (6, 27-JAN 2016', 'MC', 'SO ', 1).

    /

    Commit

    /

    example1

    "Report of input parameter: count 26 January 2016 ' to 26 January 2016"

    Output format of report

    point defects Total SW AB FM

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

    MC                10       5      3      2

    e.g.2

    "Report of input parameter: count 26 January 2016 ' January 27, 2016"

    Output format of report

    point defects Total FM SW AB

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

    21 11 6 4 MC

    in example1 in date range, the flaws in the order of its value max occur_times is FM SW, AB,

    but in e.g.2. in view of the date range default by order of its value max occur_times is AB, SW, FM

    THE FAULT of MAX VALUE should take precedence i.e. dynamically in the reports.

    concerning

    teefu

    Lahore, pakistan.

    You must create the parameter in the oracle reports. When the report of the form calling create the parameter list and then pass the required parameter.

    SELECT the item,

    fault,

    Sum (occur_times) tot_times,

    ROW_NUMBER() over (ORDER BY SUM (occur_times) DESC) rn

    DEM

    WHERE the fault ("AB", "FM", "SW")

    AND tr_date BETWEEN TO_DATE(:p_dt1,'dd-Mon-yyyy') AND TO_DATE(:p_dt2,'dd-Mon-yyyy')

    GROUP BY item, fault

    ;

  • Dynamic columns based on the user login

    Dear Experts,

    Is it possible to display the columns dynamically according to the connection of the BI Publisher user?

    For example, if the report of RTF model has 10 columns in total and if I connect with a user named "abc", I should be able to see, say 6 columns containing information about the user "abc".

    And if I have connection with "xyz", I should be able to see, say 7 columns containing information about the user "xyz".

    I will be able to assign to which column should be displayed to the user who?

    If there is a way to achieve this scenario, please let me know as soon as possible, since there is an urgent need.

    Your help will be very appreciated.

    Thanks in advance!

    Yes, using: xdo_user_name in the SQL data model, you can get the details for user identification.

    Then use this model column RTF for display of the dynamic columns.

    Example:

    Select: xdo_user_name as USER_ID of the double

    In RTF

    Column header

    Column data

  • OBIEE dynamic column headings based repository Variables

    Hello

    How can we provide variable name of the repository (from RPD) as column headings in reports (presentation Services).

    Can you please suggest me how to do it?

    Thanks in advance...

    RAM

    Hello

    You can use the following link.

    Oracle Business Intelligence 11g: OBIEE 11 g dynamic column headings

    I used the variable presentation here, you can substitute the variable repository. The difference is that you don't need to create variable presentation, instead you use repository variable there.

    If you are not clear with this, pleas come back. I'll write a new message on your problem.

  • Creating a dynamic column editable

    I tried to make my dynamic columns as editable. The problem is that my dynamic columns are nested.

    Now editable column works fine when I have diff columns with a different name. For example, col1, col2, col3 (not nested)

    Or I nested columns like "pass"(parent) given two columns col1 and col2. ".

    But, when I use them in a dynamic of columns in which all of them have the same name, in the example below, each with the same name 'col', I can change all of them, but the textfield never faded away, when I click on ENTER.


    Suppose I have an editable column with col name:
    for (final CategoryTypeVO type : typeList)
                    {
                           TableColumn<ItemVO, Integer> col = new TableColumn<ItemVO, Integer>(type.getTypeName());
                          col.setMinWidth(100);
                          col.setEditable(true);
                          col.setCellFactory(cellFactory);
                         
                         
                          col.setOnEditCommit(
                                   new EventHandler<TableColumn.CellEditEvent<ItemVO, Integer>>() {
                                   public void handle(TableColumn.CellEditEvent<ItemVO, Integer> t) {
                                   ((ItemVO)t.getTableView().getItems().get(
                                   t.getTablePosition().getRow())).getListType().get(type.getTypeId()).setQuantity(t.getNewValue());
                                   }
                                   });
                           quantity.getColumns().add(col);
                         }
    and cellfactory as:
    final Callback<TableColumn<ItemVO, Integer>, TableCell<ItemVO, Integer>> cellFactory = new Callback<TableColumn<ItemVO, Integer>, TableCell<ItemVO, Integer>>() {
                        public TableCell call(TableColumn p) {
                             return new EditingCell();
                        }
                   };
    and Editing class as
    class EditingCell extends TableCell<ItemVO, Integer> {
               
               private TextField textField;
              
               public EditingCell() {}
              
               @Override
               public void startEdit() {
                   super.startEdit();
                  
                   if (textField == null) {
                       createTextField();
                   }
                  
                   
                   setGraphic(textField);
                   setContentDisplay(ContentDisplay.GRAPHIC_ONLY);
                   textField.selectAll();
                   Platform.runLater(new Runnable() {
                       @Override
                       public void run() {
                           textField.requestFocus();
                       }
                  });
               }
              
               @Override
               public void cancelEdit() {
                   super.cancelEdit();
                  
                   setText(String.valueOf(getItem()));
                   setContentDisplay(ContentDisplay.TEXT_ONLY);
               }
          
               @Override
               public void updateItem(Integer item, boolean empty) {
                   super.updateItem(item, empty);
                  
                   if (empty) {
                       setText(null);
                       setGraphic(null);
                   } else {
                       if (isEditing()) {
                           if (textField != null) {
                               textField.setText(getString());
                           }
                           setGraphic(textField);
                           setContentDisplay(ContentDisplay.GRAPHIC_ONLY);
                       } else {
                           setText(getString());
                           setContentDisplay(ContentDisplay.TEXT_ONLY);
                       }
                   }
               }
               
              
               
          
               private void createTextField() {
                   textField = new TextField();
                   //textField.setText(getString());
                   textField.setText("0");
                   textField.setMinWidth(this.getWidth() - this.getGraphicTextGap()*2);
                   
                   textField.focusedProperty().addListener(new ChangeListener<Boolean>() {
    
                          @Override
                          public void changed(ObservableValue<? extends Boolean> arg0, Boolean arg1, Boolean arg2) {
                              if (!arg2) {
                                  commitEdit(Integer.parseInt(textField.getText()));
                              }
                          }
                      });
                   
                   textField.setOnKeyReleased(new EventHandler<KeyEvent>() {
                       @Override public void handle(KeyEvent t) {
                           if (t.getCode() == KeyCode.ENTER) {
                               commitEdit(Integer.parseInt(textField.getText()));
                           } else if (t.getCode() == KeyCode.ESCAPE) {
                               cancelEdit();
                           }
                       }
                   });
               }
    
              
               private String getString() {
                   return getItem() == null ? "" : getItem().toString();
               }
    Now what happens is this thing works fine if I separate columns with distinct names. But when it comes to dynamic columns, it fails, once I have edit a cell, the text field never leaves his place. It gets stuck in the cell. Any help!

    Published by: abhinay_a on January 21, 2013 12:31 AM

    Do not know what is the problem in your code, but it is easier to use TextFieldTableCell than building your own TableCell from scratch.

    This change to the example I posted in How to create a tableview for this? works for me:

    package itemtable;
    
    import javafx.application.Application;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.scene.Scene;
    import javafx.scene.control.ChoiceBox;
    import javafx.scene.control.TableColumn;
    import javafx.scene.control.TableColumn.CellDataFeatures;
    import javafx.scene.control.TableView;
    import javafx.scene.control.cell.PropertyValueFactory;
    import javafx.scene.control.cell.TextFieldTableCell;
    import javafx.scene.layout.BorderPane;
    import javafx.stage.Stage;
    import javafx.util.Callback;
    import javafx.util.converter.NumberStringConverter;
    
    public class ItemTable extends Application {
    
      @Override
      public void start(Stage primaryStage) {
        final DAO dao = new MockDAO();
        final ChoiceBox choiceBox = new ChoiceBox();
        choiceBox.getItems().setAll(dao.getCategories());
    
        final TableView table = new TableView();
    
        // Make table editable:
        table.setEditable(true);
    
        final TableColumn nameCol = new TableColumn("Name");
        nameCol.setCellValueFactory(new PropertyValueFactory("name"));
        nameCol.setCellFactory(TextFieldTableCell.forTableColumn());
        final TableColumn priceCol = new TableColumn("Price");
        table.getColumns().addAll(nameCol, priceCol);
    
        choiceBox.getSelectionModel().selectedItemProperty()
            .addListener(new ChangeListener() {
              @Override
              public void changed(ObservableValue observable, Category oldValue, Category newValue) {
                table.getItems().clear();
                priceCol.getColumns().clear();
                for (final Type type : newValue.getTypes()) {
                  final TableColumn col = new TableColumn(type.getName());
                  col.setCellValueFactory(new Callback, ObservableValue>() {
                    @Override
                    public ObservableValue call(CellDataFeatures cellData) {
                      Item item = cellData.getValue();
                      if (item == null) {
                        return null;
                      } else {
                        return item.priceProperty(type);
                      }
                    }
                  });
    
                  // Make column editable:
                  col.setEditable(true);
                  col.setCellFactory(TextFieldTableCell.forTableColumn(new NumberStringConverter()));
    
                  priceCol.getColumns().add(col);
                }
                table.getItems().setAll(dao.getItemsByCategory(newValue));
              }
            });
    
        BorderPane root = new BorderPane();
        root.setTop(choiceBox);
        root.setCenter(table);
    
        Scene scene = new Scene(root, 600, 600);
        primaryStage.setScene(scene);
        primaryStage.show();
      }
    
      public static void main(String[] args) {
        launch(args);
      }
    }
    

    Edited by: James_D January 22, 2013 07:22

  • Dynamically hide a dashboard

    Hello:

    Is it possible to dynamically hide a dashboard on a single day for a week? Any tips will be appreciated.

    Thank you
    Chavigny.

    Happy that you have invested some time for 2nd approach... Here you go:

    (1) create a table in DB say

    CREATE TABLE DASH_SCREEN (FLG CHAR);
    INSERT INTO DASH_SCREEN (FLG) VALUES (' N "");
    I guess that if FLG = N then the dashboard is visible, otherwise if FLG = Y then its replaced with a hidden with custom message page.

    (2) you now have 2 options
    -Either use request Direct database: we should not import this picture to RPD
    - OR import this table in RPD and drag up to the presentation layer

    I'm now going to first approach. Ofcourse give access to a database directly to the administrator.

    (3) create a hidden page under the dash with a custom message

    (4) create a direct request from the database:
    -You can put the name of the connection pool that has the details of the database in which this table is present even if the table is not imported to the physical layer.
    -Put SQL as SELECT * FROM DASH_SCREEN WHERE FLG = 'Y '.
    -Check the option to workaround here
    -Click on the result, it will give you no results as value = N. create a Narrative here checked HTML and under story view put this:
    [[
    [[
    [[
    [[

    remove all [in above code

    -This script replace dash with a custom page that is hidden when the value of the flag is 'Y '.

    (5) now, Goto dashboard, front page, first section... Place the report above and also in chapter guided navigation
    Application to the reference Source: Yes
    Request to the source: same as above report
    See Section: If the query returns rows

    Now this guided navigation will guide the hidden page dashboard when this report returns a line any

    (6) you can easily create a direct request to the database to update the valu flag 'Y' or ' don't and then make use of the ibot to plan when necessary.

    This is a good method to hide or basically full dash replacement

    See you soon

  • Adding dynamic columns to datagrid at the beginning of the datagrid

    Hello friends,

    There is a datagrid that is static. and I m adding a dynamic column. It is added at the end of the static data grid

    but I want to add dynamic at the begning of the datagrid column can someone help me on this.

    Thanking you,

    Kind regards

    Gallot

    datagridfeeamount.dataProvider = new ArrayCollection (event.result.rows.row) collection;

    the word 'new', after that the = was supposed to be red and larger

  • Missing cells in the table of dynamic columns

    Hello

    I am creating a table using dynamic columns. Here's an example simplified data that I use:

    < sales >
    ... < drive >
    ... Honda < brand > < / brand >
    ... < color > green < / color >
    ... < / car >
    ... < drive >
    ... Nissan < brand > < / brand >
    ... < color > blue < / color >
    ... < / car >
    ... < drive >
    ... Honda < brand > < / brand >
    ... < color > blue < / color >
    ... < / car >
    < sales >

    I am grouping the brands for the lines, and I want a number of colors as my dynamic column. I find myself with a table that looks like this:

    ----------------------------------------------------------------------------------
    Brand | Blue | Green |
    ----------------------------------------------------------------------------------
    Honda | 1. 1.
    ----------------------------------------------------------------------------------
    Nissan | 1
    --------------------------------------------------------

    Since there is no green Nissan, a cell not created so I find myself with a hole in my table. Ideally, I would want a cell containing 0 to be in this space.
    Is it possible, or to all the least have a cell in this space, so I did not have a table with gaps?

    Thank you!

    Hi cc22

    If you have a look at these. http://winrichman.blogspot.com/search/label/cross%20tab
    you will identify yourself,

    its simple... If this is not the case, let me know.

  • Help by calling the dynamic columns in anonymous blocks

    my code:

    DECLARE
    col1 VARCHAR2 (20): = "City";

    BEGIN
    I'm in (select * from xbd.cus_ord where rownum < 10)
    LOOP
    - I would call col1 dynamically here in my outings DBMS.
    DBMS_OUTPUT. Put_line (i.col1);
    END LOOP;
    END;
    /


    The code above I tried to call a dynamic column. How can I do that.
    I Heve been tried differently using EXECUTE IMMEDIATE. It still does not work.

    THX,
    VI
    DECLARE
       col1        VARCHAR2(30)   := 'object_name';
    
       TYPE REF_CURSOR IS REF CURSOR;
    
       refCursor   REF_CURSOR;
       text        VARCHAR2(4000);
    BEGIN
       OPEN refCursor FOR 'SELECT ' || col1 || ' FROM all_objects WHERE ROWNUM < 10';
    
       LOOP
          FETCH refCursor
           INTO text;
    
          EXIT WHEN refCursor%NOTFOUND;
          DBMS_OUTPUT.PUT_LINE(text);
       END LOOP;
    END;
    /
    
  • Extraction of dynamic columns in table

    I have table with 1000 rows and 200 columns. The columns have additional suffix IE
    Table = 'X '.
    Columns = ID, A, B, C, D1, D2, D3... D200

    I would like to get the values of each column so that I can treat them accordingly.


    OPEN c1 to SELECT * FROM X

    LOOP
    C1 FETCH BULK COLLECT INTO l_dies;

    FOR indx IN 1... l_dies. COUNTY
    LOOP
    FOR indx to 0... 200
    LOOP
    colStr: = l_dies (indx). || » D'|| INDX; <-trying to dynamic column of concat name, but it gives an error.
    Dbms_output.put_line ('indx =' | indx |) 'col = value' | colStr);
    END LOOP;
    END LOOP;
    END LOOP;

    Maybe it's not the right way, but just an example of what I want to achieve.

    Thanks in advance.

    http://asktom.Oracle.com/pls/asktom/f?p=100:11:0:P11_QUESTION_ID:1035431863958

    Visit this link especially the very first post of Tom (Proc print_table).

    I hope this helps.

    Concerning

    REDA

  • Dashboard prompt that is not bound to a column

    Hello

    It is perhaps a fundamental issue, but I'm missing something here.

    How can we create a dashboard guest who is not related to any column? This message should be a drop down with two values to choose from.

    1 accounting
    2. operational

    The value selected in this prompt will be used for the calculation in my reports. The calculation of accounting and operational procedures is different.

    I don't have these two values in a column.

    Please suggest how can I do this.

    It comes to OBIEE 10.1.3

    Your help is highly appreciated

    In this case you can mark as correct instead of useful at my suggestion right?

  • By using a column twice in a dashboard prompt - selection multiple and wild-carding

    My client uses OBIEE 10.1.3.2; It is impossible to pass at this time. However, they want to be able to enter a list of values and a search for wildcard for additional values at the same time for a single column in a row of dashboard.

    Since they cannot be upgraded, they do not have the Wildcard feature search function fast multiple selection improved 10.1.3.3 and later versions.

    If anyone has found another method to do, perhaps using a column twice in a row of table edge or separate dash invite on the dashboard page, in order to, OR the results of a multiple selection and an edit box (with entry wildcard-matching)? I suspect that this won't work - that the result sets from a command prompt to a column replaces any other games of fast results for the same column.

    Has anyone found another way to do this, before his 10.1.3.3 release?

    Yes, it is possible.

    This is how to do it:

    In your report you need to add two filters on the same column and combine them with OR.
    First filter: is invited.

    Second filter: is as presentation_variable
    Then protect this filter! * What will make your prompt is filtered on the Prée variable and it will not be replaced by another invite.

    Now create your guest of dashboard:

    First add your column with an edit box and attach the presentation variable.
    Then edit the formula in the column, so it will not refer to the column more. (Which is not necessary, because the value will be set to the variable Prée.)

    Then add the column even with a multiple selection.

    Then, test and verify your results.

    Kind regards
    Stijn

  • Interaction of value of navigation from one column to the dashboard prompt

    Hi all

    I am fairly new to OBIEE and employs 10g. Currently, I am trying to format our dashboard to track usage. So, I have a report that I want to be able to select a column ("dashboard") and use navigation value interaction or another method to pass its value in a quick dash in a different tab, so I can sort by this column ("Dashboard") for the six reports it. I can get the navigation to work tool to go to another report or dashboard, but it will not filter by the selected column, nor can I get it in the dash line. I was search the forumns and google like crazy, and can happen anywhere... This funcationality still exist?

    Any help would be much appreciated!

    M

    941044 wrote:
    Hi all

    I am fairly new to OBIEE and employs 10g. Currently, I am trying to format our dashboard to track usage. So, I have a report that I want to be able to select a column ("dashboard") and use navigation value interaction or another method to pass its value in a quick dash in a different tab, so I can sort by this column ("Dashboard") for the six reports it. I can get the navigation to work tool to go to another report or dashboard, but it will not filter by the selected column, nor can I get it in the dash line. I was search the forumns and google like crazy, and can happen anywhere... This funcationality still exist?

    Any help would be much appreciated!

    M

    Try this:

    (1) create a small report with a single column, the column that you use in your source in relation to the Interaction of the value.

    (2) on your six reports, put a filter on the same column, conversion to the "filter based on another request.

    (3) points to the report small and the column of the report.

    Your reports will be properly filtered.

Maybe you are looking for

  • HP f800g memory problem

    I have a HP f800g camera car and I use a mikrosdxs I have 10 64GB kingston.It assumes that the standard loop recording technology prevents the storage overhead by deleting the oldest previously saved file and its replacement by a new, but after a few

  • Genuine Validation tool causes error

    After downloading the update # KB 949810 Windows Genuine validation tool yesterday at the opening of Word/Excel (Office 2003) I get the message that the copy of Windows is not genuine. However, it is true that I have the original installation CD and

  • Why the windows xp recovery disk hangs 90%

    Setup formats to 90% and no longer is located at 90%, sometimes it says cannot read disk I just there in the mail from microsoft?

  • Factory recovery finished, now several devices in system without driver

    Hello! I have a desktop HP Pavilion p7 - 1236 s with Windows 7 Home Premium x 64. I got the factory settings last night using recovery discs HP bought for my specific model. I have not installed/uninstalled all programs, drivers, etc., and now, Devic

  • Windows update error. 80070641

    Original title: Can update windows I get the error number 80070641. I tried one of the attempts to correct the FAQ but am unable. Any ideas?