Dashboard several variable guests of presentation in the title

Hi all

I have 3 guests of dashboard and I have to make them appear on the title of the report when they select guests. I know how to do it with a command prompt. Not sure if I can with several selections prompt appear on the title of the report, if so could you please give me the format how can I do. for example the electronic sales in-store Super CA, ABR,

Thank you
Ravi

A presentation variable can only contain a single value. This is why you cannot use PVs when you have a multiple selection prompt. This is also true when you have "All choices" as the selection. Behind the scenes, OBIEE interprets this chain "filterless". Therefore, there is nothing to save in the PV, and you get an error. Once you press the "Go" button, you set the variable so it can display the value.

I have no work around this issue for what you are trying to do. I'm sorry.

Tags: Business Intelligence

Similar Questions

  • Variable passage of presentation to the physical layer in SPR

    Hello

    I need to pass the variable of the presentation to the RPD physical layer, so that it can be used in my table function Select, query or procedure, so OBIEE pulls all the data of the database tables.

    , Someone has any idea how to achieve this?

    Or if someone can tell me any other way to achieve the same functionality

    Kind regards
    Vikas

    Published by: user10869662 on June 18, 2009 04:03

    Published by: user10869662 on June 18, 2009 04:04

    Do not use quotes around the variable name as gerardnico has already suggested. It should be VALUEOF (NQ_SESSION. Numero_projet).

  • Dashboard guest - a column affecting several Variables introduction

    Hello world

    I played with dash of guests, trying to get a better understanding of how the function.

    I created three guests of dashboard, all on the same column, the account number. Each default guest a different value, i.e. 1, 2, and 3, respectively. Each guest sets a different variable. PVAR1, PVAR2, and PVAR3 respectively.

    I've created a report that referenced the three variables i.e. ' @{PVAR1} ',' @{PVAR2} ',' @{PVAR3}'.

    I put all three guests and a report in a dashboard.

    When I look at it, all the guests have the same value, a value of 2, but only PVAR3 is the installer. PVAR1 and PVAR2 are empty.

    Why all the presentation of three variables are not defined on the same value? Why does one is full?

    Thanks for the help!

    -Joe

    Hey Joe,

    Thanks for posting this interesting question, I played a little bit and found the same problem.

    It's my conclusion and hoping this makes sense, the variable PV are defined only when you press a button to go. As there are 3 guests in question and all the guests are built on the same column, so the values in the columns are the same, but that a variable is defined. In my opinion the last invite who executed.

    I tried the same thing with a faster with a single Go button and values VAR1 and VAR2 obtained defined but VAR3 was still black. But the 2 guests had the same values.

    In my opinion, since it is the same column that these guests are construction where the question of the definition of values.

    Hope this helps,

    Sunil S Ranka
    Blog: http://sranka.wordpress.com
    "BI Superior is the antidote to the business failures"

  • How the value for several variables using a single guest

    Is there a way to put more than one variable with a single guest?
    for example, the value @CurrentYear and @PasteYear using just a single guest for @CurrentYear.

    A clue?

    Thank you

    Luke

    Using variables to repository you can set like this.
    Check this link http://gerardnico.com/wiki/dat/obiee/set_variable

    If brand pls help

  • Variable of online presentation of dashboard

    Hi all

    I have a report on a dashboard page that navigates to another report on a page of different dashboard (on the same dashboard). The
    first page of dashboard has a prompt that must be passed as a filter to the sailed report i.e. Report1 on dashpage1 has fast Level1
    whose value should be passed to Report2 on dashpage2 which has Level2 (where Report2 must show values for the past Level1 Level2).
    (1) I tried prompt1 setting on the first page to the dashboard, but it did not help.
    (2) I'm trying to set a variable 'level1_val' presentation in the prompt1 and then in Report2 say Level2 = @{level1_val} in the responses (filter-> add variable presentation, I did not provide a default value). But when I browse Report2 shows no results. On the addition of the value of the filter, I noticed the condition of Report2 is Level1 = level1_val (taking level1_val presentation a string variable and corresponding to the Level1 guest value). Level1 prompt value is a string. Y at - he said a format "@{level1_val}' I should use in the column filter (I tried this too)?"

    Thank you
    Ananth

    '<--a href="">
    Action=navigate&col1=%22Level%20Hierarchy%22.Level1&val1='|| REPLACE (REPLACE (' @{pv_level1} ',' ', '+'), '+', '% 2B') | ' > Link<-->'

    For presentation attribute replaces "with 22% and spaces with % 20, it is necessary for the syntax of the URL of the dashboard for attributes prompt report or dashboard target."

    col1=%22Level%20Hierarchy%22.Level1

    where "Hierarchy of levels".level1 is the true name of presentation table.column in report 2, the value is invited.

    Concerning
    Goran
    http://108obiee.blogspot.com

  • Presentation set Variable in shape in the title of the report

    I have completed 3 variables presentation via a dashboard command prompt. I also show their values in the subtitle of the report, but I wasn't expecting the following format in the form:

    timestamp ' 2009-10-19 00:00:00 'TIMESTAMP' 2009-10-25 00:00:00 ' in Abilene

    The dates appear in the format 10/19/2009 and 10/25/2009 in the dash prompt, that is how I want formatted in the title. Where is this subtitle from formatting? So I can reformat the drive.

    Published by: Bob of Austin on October 26, 2009 11:28

    Hey Bob,

    change the format of your fast date by using for example cast (year (date) as char (4)). Cast (month (date) until (2) tank... in the format that you want to display in your title.)

    I hope this can help you.

    KR,
    A

  • Difference between variable interface user layout and presentation of the add() method UI?

    Hello

    What is the difference between a variable user interface layout and presentation of the add() method UI?

    Presentation of the variable user interface is something like this:

    var windowResource = "palette {  \
        orientation: 'column', \
        alignChildren: ['fill', 'top'],  \
        preferredSize:[300, 130], \
        text: 'ScriptUI Window - palette',  \
        margins:15, \
        \
        bottomGroup: Group{ \
            cd: Checkbox { text:'Checkbox value', value: true }, \
            cancelButton: Button { text: 'Cancel', properties:{name:'cancel'}, size: [120,24], alignment:['right', 'center'] }, \
            applyButton: Button { text: 'Apply', properties:{name:'ok'}, size: [120,24], alignment:['right', 'center'] }, \
        }\
    }";
    
    var win = new Window(windowResource);
    
    win.show();
    

    presentation of the UI Add() method is something like this:

    var w = new Window('dialog', 'Random Number Generator');
    var btn_group = w.add('group'),
        btn_ok = btn_group.add('button', undefined, 'Ok');
    
    w.show();
    

    Thank you!

    Since the Guide Javascript Tools on the specifications of the resource (you're high example on the page):

    You can create one or more UI both elements by using a resource specification. This specially formatted string provides a simple and compact of the creation of an element, including any container element and its constituent elements. The resource-specification string is passed as a parameter to the constructor function Window() or add().

    The general structure of a resource specification is a specification of item type (for example, dialog box).

    followed by a pair of curly braces surrounding one or more property definitions.

    myResource var = 'dialogue {control_specs} ";

    var myDialog is new window (myResource);.

    The controls are defined as properties in windows and other containers. For each control, give the name of the control class, followed by the properties of the control between braces.

    I had trouble getting the resource specifications to work - probably just didn't make the time to understand. A few differences is that some of the properties that they put in the resource specifications in brackets after the element will not work in the other method, if you do it this way. You normally have to make a second line and add this property. I'm not sure of the first method, but the second is the function object, and you can use the structure of the object (object, nextProperty, etc.) or set a variable to represent the object. In most of the scripts that I write, I use variables and give them a name such as:

    myCheckBox var = dlg.inSomeGroup.add ('checkbox', undefined, "text box '");

    myCheckBox.name = "maCaseACocher";

    By doing this, I can create a recursive function that goes through the entire user interface and retrieves the values of the elements and writes this information to an xml file. Including the names allows the script to identify which variable to control / it is in the xml file, so that it can be reassigned to proper control. I have not tried this with the method of specifications for resources, so I don't know if it will work with it.

  • PowerCLI Invoke-VMScript re - ip guest - how to get the variable hostname comments

    I run the following script as a task Post-Power-we a re - ip our VMs after that MRS. them rocking.  I was able to run this script successfully without the variable hostname of comments (in the test, he runs a script by test VM with the hostname assigned...), but I'm stumped on how to get comments variablized according to the machine's host name works on, it will take the host name and use it in the GuestUser variable and the command - VM.  I tried the bold part, but it does not work.

    $srv = Connect-VIServer 10.0.0.10 - administrator of the username-password password

    $Hostname = (get-wmiobject win32_computersystem). Name

    $script = "%windir%\system32\cmd.exe/c c:\dr\drIPsettings.bat".

    $HostUser = "root".

    $HostPassword = "password"

    $GuestUser = ' $Hostname\Administrator '.

    $GuestPassword = "password"

    $ScriptType = "bat".

    SE connect-VIServer 10.0.0.10 - Session $srv. SessionID

    Invoke-VMScript - ScriptText $script - VM $Hostname - HostUser $HostUser - HostPassword $HostPassword - GuestUser $GuestUser - GuestPassword $GuestPassword - ScriptType $ScriptType

    Thank you!

    How you code the - VM on the Invoke-VMScript cmdlet parameter, it seems that Displayname of the guest is the same as the host name.

    Can't you just use a loop on guests and then use the displayname property

    $script = "%windir%\system32\cmd.exe /c c:\dr\drIPsettings.bat"
    $HostUser = "root"
    $HostPassword = "password"
    $GuestPassword = "password"
    $ScriptType = "bat"
    
    Get-VM | %{
       $GuestUser = $_.Name + "\Administrator"
       Invoke-VMScript -ScriptText $script -VM $_ -HostUser $HostUser -HostPassword $HostPassword -GuestUser $GuestUser -GuestPassword $GuestPassword -ScriptType $ScriptType
    }
    

    You can encode the Get - VM with more specific selection criteria or use a Where-Object after the Get - VM.

    ____________

    Blog: LucD notes

    Twitter: lucd22

  • Several variables from the session to the login page

    Hey there, I have to point out that I use ASP for several years and am trying to start a transition to PHP. I'm kinda stuck and I don't know that there is a simple solution for this. After a login page, I go to my home page. When you are at the homepage depending on the status you are given i.e. level 1, 2 etc.

    Dreamweaver gives you the code to start a page and I seem to be able to capture the session variable 'MM_Username' on the start page, but in my setup, that's your name. Of course there could be a lot of 'Fred' out there so you need the info from the first name field. How to capture the session password or create a new session for password, so when I'm filtering the session on the page following I can use several variables as what follows must match the user name, password, address, etc?

    In asp is was easy. I started just a session variable capture since the names of the fields username and password. Like this:

    < % session ("NomUtilisateur1") = request ("username") % >

    < % session ("password1") = request ("pass") % >

    My session would be NomUtilisateur1, password1, and I would like to sort out.

    In PHP how would I do a similar thing? Help please!

    Here's the code generated from Dreamweaver.

    <? PHP
    If (! function_exists ("GetSQLValueString")) {}
    function GetSQLValueString ($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
    {
    If (via PHP_VERSION < 6) {}
    $theValue = get_magic_quotes_gpc()? stripslashes ($TheValue): $theValue;
    }

    $theValue = function_exists ("mysql_real_escape_string")? mysql_real_escape_string ($TheValue): mysql_escape_string ($theValue);

    Switch ($theType) {}
    case 'text ':
    $theValue = ($theValue! = "")? « " ». $theValue. "" "": "NULL";
    break;
    case "long":
    case "int":
    $theValue = ($theValue! = "")? intval ($TheValue): 'NULL ';
    break;
    case "double":
    $theValue = ($theValue! = "")? doubleVal ($TheValue): 'NULL ';
    break;
    case "date":
    $theValue = ($theValue! = "")? « " ». $theValue. "" "": "NULL";
    break;
    case "set":
    $theValue = ($theValue! = "")? $theDefinedValue: $theNotDefinedValue;
    break;
    }
    Return $theValue;
    }
    }
    ? >
    <? PHP
    Validate request to connect to this site.
    If (! isset {})
    session_start();
    }

    $loginFormAction = $_SERVER ['PHP_SELF'];
    If (isset($_GET['accesscheck'])) {}
    $_SESSION ['PrevUrl'] = $_GET ['accesscheck"];
    }

    If (isset($_POST['username'])) {}
    $loginUsername = $_POST ['username'];
    $password = $_POST ["password"];
    $MM_fldUserAuthorization = "";
    $MM_redirectLoginSuccess = "/ support/startpageSQL.php";
    $MM_redirectLoginFailed = ' / test2.php ';
    $MM_redirecttoReferrer = false;
    @mysql_select_db ($database_toyosupport, $toyosupport);

    $LoginRS__query = sprintf ("SELECT name, password AND password entry WHERE name = %s is %s",
    GetSQLValueString ($loginUsername, "text"), GetSQLValueString ($password, "text"));

    $LoginRS = mysql_query ($LoginRS__query, $toyosupport) or die (mysql_error ());
    $loginFoundUser = mysql_num_rows ($LoginRS);
    If {($loginFoundUser)
    $loginStrGroup = "";

    If (via PHP_VERSION > = 5.1) {session_regenerate_id (true) ;} else {session_regenerate_id() ;}
    Declare two session variables and assign them
    $_SESSION ["MM_Username"] = $loginUsername;
    $_SESSION ["MM_UserGroup"] = $loginStrGroup;

    If (isset($_SESSION['PrevUrl']) & & false) {}
    $MM_redirectLoginSuccess = $_SESSION ["PrevUrl"];
    }
    Header ("Location:".) $MM_redirectLoginSuccess);
    }
    else {}
    Header ("Location:".) $MM_redirectLoginFailed);
    }
    }
    ? >

    To make this work it turned out to be very simple. at the login page, I simply used:

    <>

    This is to set session values.

    $_SESSION ['username'] = $_POST ['username'];

    $_SESSION ['pass_word'] = $_POST ["password"];

    ?>

    After all the code from Dreamweaver to start a totally different pair of sessions.

    On the home page, I made the Recordset like this:



    <>
    If (! function_exists ("GetSQLValueString")) {}
    function GetSQLValueString ($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
    {
    If (via PHP_VERSION< 6)="">
    $theValue = get_magic_quotes_gpc()? stripslashes ($TheValue): $theValue;
    }

    $theValue = function_exists ("mysql_real_escape_string")? mysql_real_escape_string ($TheValue): mysql_escape_string ($theValue);

    Switch ($theType) {}
    case 'text ':
    $theValue = ($theValue! = "")? « " ». $theValue. "" "": "NULL";
    break;
    case "long":
    case "int":
    $theValue = ($theValue! = "")? intval ($TheValue): 'NULL ';
    break;
    case "double":
    $theValue = ($theValue! = "")? doubleVal ($TheValue): 'NULL ';
    break;
    case "date":
    $theValue = ($theValue! = "")? « " ». $theValue. "" "": "NULL";
    break;
    case "set":
    $theValue = ($theValue! = "")? $theDefinedValue: $theNotDefinedValue;
    break;
    }
    Return $theValue;
    }
    }

    $pass_word_rsUSERNAME = "-1";
    If (isset($_SESSION['pass_word'])) {}
    $pass_word_rsUSERNAME = $_SESSION ["pass_word"];
    }
    $user_name_rsUSERNAME = "-1";
    If (isset($_SESSION['user_name'])) {}
    $user_name_rsUSERNAME = $_SESSION ['user_name'];
    }
    @mysql_select_db ($database_toyosupport, $toyosupport);
    $query_rsUSERNAME = sprintf ("" SELECT * WHERE the password = name = %s AND %s entry ", GetSQLValueString ($pass_word_rsUSERNAME,"text"), GetSQLValueString ($user_name_rsUSERNAME,"text")");
    $rsUSERNAME = mysql_query ($query_rsUSERNAME, $toyosupport) or die (mysql_error ());
    $row_rsUSERNAME = mysql_fetch_assoc ($rsUSERNAME);
    $totalRows_rsUSERNAME = mysql_num_rows ($rsUSERNAME);
    session_start();? >

    Although Dreamweaver code struggled a bit he works and seems to be stable. Note that I added a session_start to the top of the page, even if the source code for Dreamweaver does not. This helped.

    I hope this helps.

  • Using the variable string quickly calling several variables

    OK, I'm not entirely sure how to explain it, but I will do my best...

    I have had several similar Boolean variables which are publicly declared at the beginning of my class.

    for example

    public var _ball0_mcPlaced:Boolean = false;
    public var _ball1_mcPlaced:Boolean = false;
    public var _ball2_mcPlaced:Boolean = false; 

    This will determine whether or not a particular ball was placed in a target area.

    Now I want to use this variable again in a function... However, I do not want to write in the variable for each ball in the service.

    Is there a faster way to access this variable by using a string inside the function varibale?  Each ball becomes a target of the event if clicked, so I could use something like...

    ("_" + event.target.name + "Placé") to create the dependent variable on which ball is selected?
    So, if ball0_mc is selected it returns the _ball0_mcPlaced variable?

    How can I do this?


    See you soon

    It would be written using the array notation in the form of...

    ["_" + event.target.name + "Placé"] = true;

  • Several servers of presentation using the same RPD

    Hello world

    While most people know, the iPhone has a cool application that allows you to log in and look at the contents to your OBIEE. In theory, it's really cool, but it turns out that many of the default value of the cool graphics in Flash and Flash is not supported by iPhone.

    With the help of an indicator in the configuration file for instance, default possible of all charts in png instead of Flash. But which causes all the interactive drillability go away since it's just a flat image.

    It seems that an elegant solution to this problem would be to have two services to market; who is by default Flash and which is default PNG. Then allow the OC4J container to determine if the device accessing the Web site is a complete client browser or a mobile device. Mobile devices get routed to the png and no mobile devices go to the standard Flash page.

    Although not supported by Oracle, it is possible to configure several services presentation on the same server. In fact, the MNC has a great blog about how to do this (http://rnm1978.wordpress.com/2009/08/25/multiple-rpds-on-one-server-part-1-the-bi-server/).

    I was able to implement two (AnalyticsWeb and AnalyticsMobile) presentation services and direct them in the same folder from catalog. In this way, you don't have to duplicate you're work.

    The only thing that I could not understand how do was for them point to the same file from RPD. Ideally, we would have a single file of RPD with metadata definitions master, and two presentation of this unique RPD services. However, the BI Survey Server and error of the RPD even appears twice in the file NQSConfig.ini. I also created a shortcut to the RPD master, but at startup, servers BI said it wasn't a valid repository file.

    Worse, I could just use him copy / paste to duplicate the single repository. And then whenever I've updated, I just need to delete the other and copy. But it seems a bit tedious, and I was expecting a more elegant solution.

    Does anyone know how I could get the NQSConfig.ini for me to indicate to the RPD even twice? Is there some kind of symbolic link or image I create?

    If it helps, I work with OBIEE 10.1.3.4 on a Windows Server 2003 environment with the standalone OC4J container.

    Thanks for the help!

    -Joe

    Hey Joe,

    If I understand then you have done all the hard work and lack the wood from the trees :-)

    You do point your two instances of presentation on the DSN even Services!

    instanceconfigWeb.xml would be:

    ...



    AnalyticsWeb
    ...

    instancewebMobile.xml would be:

    ...




    AnalyticsWeb

    PNG

    ...

    I just tested and it works exactly as you wish.

    Try it and tell us if it works - or if I have misunderstood what you are trying to do.

  • Display dashboard layout variable name

    I would like to place a text object on a dashboard page.  This text object should display this exact string:

    @{My_PV} {horse}

    This is a reference to a variable presentation called My_PV, with a default value of "Horse."  Only the exact string is what I want to see on the dashboard - braces, everything.  And that's what shows me the little overview section.  But when appears in the dashboard, I see this:

    Horse

    The dashboard is to interpret the presentation variable reference.  I tried to place the reference in apostrophes, but then I get 'Horse' (single quotes).  I can't understand how do the dashboard interprets NOT the presentation variable and just show me the exact characters that I typed.

    Thoughts?

    Mark, your channel must be like @{My_PV}{@{My_PV}}{Horse}

  • Storage of Variable year - 1 presentation

    Hi gurus,

    I have a requirement where I'm passing prompt value the financial year of the dashboard a narrative as mode @{YEAR}. I would also like to add to this narrative point of view @{YEAR} - 1 though when the user selects 2012 in line with dashboard, my narrative view shud go something like this:

    These data are for fiscal year 2012 and its prior year 2011. If the user selects 2011, then "data are for fiscal year 2011 and the year before 2010."

    How do I achieve using PV? Tried @{YEAR} - 1, cast to int - 1, etc.

    Please suggest.

    Thank you
    Dan

    You can refer selected variable value of presentation in narrative mode, but you cannot reach

    @{YEAR} - 1

    Try to use the expression @{YEAR} - 1 as one of your columns in the criteria, then hide and refer in narrative mode.
    That would help subtract you - 1 other wise, you may need to do the same using Javascript in narrative mode.

    Hope this helps, let us know updates

    Thank you
    http://cool-bi.com

    Published by: Srini VIEREN on May 26, 2013 12:12 AM

  • variable single process shared with the single element fifo reading arbitrary values

    Hello

    my request in real-time has a motion control loop and a loop of data acquisition. Before the move, the starting position is read once in the motion control loop and recorded as a shared single process with fifo variable single active element (I want to save only the last value). The starting position is then read several times in the loop of the acquisition of data and compared to the actual position. The movement is stopped in the DAQ loop when the difference between the starting position and the actual position reaches a certain displacement of the target.

    Now to my problem: the starting position is read in the loop of data acquisition of the variable correctly shared in the first round after having been written. Then it keeps read an arbitrary value that I have no idea where it came from. How can this happen?

    I summarize: I write the starting position once and then read it several times to calculate the actual shift...

    Thanks in advance for any help! Kind regards

    Grun80

    Hey,.

    It is a strange behavior, usually the variable should return the last value written. You write the variable in another place of the code too? You debug the application?

    What is the RT platform you are working? Version of LabVIEW?

    I suggest using a "functional Global Variable" and see if you still get this random values.

    Christian

  • running some demos aand games on my pc - it says d3dxg_43.dll is not present, install the file and try to run Setup again

    original title: big problem - d3dxg_43.dll

    Hi Ive had problems several times for running some games of aand demos on my pc States d3dxg_43.dll - it is not present, install the file and try to run the Setup again

    See How to fix the D3dx9_43.dll errors

Maybe you are looking for

  • The new password protected notes

    If I lock a note with a password on my iPhone, can someone who has access to my opinion of iCloud account my iCloud.com notes without having to enter the password?

  • Transfer discs from 316 to 516

    Hello I currently have a 316 with 6 x 4Tb hard drives that I installed myself. I'm away from home at the moment, but I think I've implemented with FlexRaid and I don't know that I have implemented so that she could survive 2 drives failing. I think r

  • noise of crackling/stuttering in Satellite P100 has been FIXED!

    Well after obtaining constant crackling even after a full 'out of box' recovery disk, I finally took my laptop to my local Toshiba service agent. After a few weeks and I get a call back. They said they replaced the motherboard, CPU, DVD - ram drive s

  • SCCM Client inactive

    HelloWe have a few hundred clients all deployed by SCCM 2012 successfully, but we currently have a problem on 50% of the PC, wherever they are in the inactiveas Configmgr console. Why?

  • System boot in SafeMode only. Reboot some did not. How can I get out Mode safe?

    Safe mode is identified in the four corners.  Tried to restart, unplug, etc.  Can't open in normal Mode