How to use Hierarchy Prompt

Hi all,
I want to filter my request based on the value chosen from a hierarchy prompt. I know that a filter on a hierarchy prompt can be applied in selection step by selecting "Override with Prompt". However, the hierarchy prompt filter only seems to be applied as long as the hierarchy object is displayed in the request itself. Even when moving the hierarchy to the Excluded section, the filter is no longer applied.
In my case it really is useless to expect the user to select a value from the hierarchy prompt and then again display the value they've just chosen in the report.
Is this expected behavior? Is there any workaround?

Hi,
We faced same issue in our previous project. I dont remember if we retained the same.
It is really a problem as we can't assign a presentation variable also to Hierarchy prompt.
Try this: Place the hierarchy column in prompt section of your view. You can apply master detail event from the prompt to report. Hide the view prompt(If you click on the drop down, you will have the option called hidden).
Regards,
Amrutha.

Similar Messages

  • How to use the prompted value in the filter expression

    Hi
    Is it possible to use the prompted value in the filter expression?
    My requirement is that user will be prompted for a date field and I need to filter the records such that the records are displayed for the last 5 weeks from the date entered by the user.
    If somehow I know how to use the prompted value in the filter expression then this requirement is easy to be done. If this is possible, please guide me?
    If there are other ways to acheive the desired results then please suggest.
    Thanks
    -Jaz

    Edit: example added
    SQL> create table tb_test
      2  ( id number(5)
      3  , tot number(5)
      4  , mon_tot number generated always as (tot*15) virtual
      5  );
    Table created.
    SQL> insert into tb_test (id, tot) values (1, 5);
    1 row created.
    SQL> select * from tb_test;
            ID        TOT    MON_TOT
             1          5         75
    1 row selected.
    SQL> update tb_test
      2  set    tot = 15
      3  where  id = 1;
    1 row updated.
    SQL> select * from tb_test;
            ID        TOT    MON_TOT
             1         15        225
    1 row selected.

  • Can any one tell me how to use Image Prompt

    Hi
    Can any one tell me how to use Image Prompt in Answers?
    Thanks
    Rahman

    Had a look at this already?
    http://download.oracle.com/docs/cd/E12103_01/books/AnyUser/AboutPrompts.html
    Cheers,
    C.

  • How to use Hierarchy Filter Selection?

    Hi, experts !
    Could anyone give me a detail for how to use hierarchy filter selection ?
    When i locate a Hier filter selection in the template and execute it, a false info
    accured while filtering data,and the IE inferred the hier node object was missing.
    Then i add another hier filter in the same template, and the secend runs well, however the first one didn't.
    At last, i hide the first one, but the second one can't either.
    Help me !!!
    Thx in advance!

    Thanks Toja !
    Sorry to reply so late !
    The error is line: 51. error:'document.HIERARCHY_MENU_1.NODEID' is null or is not the object.
    The code on line of 51 says:document.HIERARCHY_MENU_1.NODEID.value = i_node;
    Could you please give me some documents on the topic of Hierarchy Filter Selection ?

  • How to use the prompt value in the report column

    Hi
    I have a report prompt column which is 'Adj Type' which holds values 10,20,30 and when user selects Adj Type = 10 then this value should be passed to report column.
    For Eg. Column 1 value is 10 and this should multiple with prompt value and the output should be 10* 10.
    Any thoughts how to capture the prompt values in report column for calculation.

    hi hsekar,
    1) Declare a presentation variable in prompt under the Set Variable section -->Presentation Variable -->P_var
    2) In Fx Table_name.Your_column * @{P_Var}
    @{P_var}{20} ( 20 is default value it will override when a user selects value in prompt
    Thanks,
    Saichand.v

  • How to use image prompt?

    I want to use a map as image prompt. Are there some examples for that?

    Steps are :-
    1. Create new request in Answers.
    2. And click on Prompt tab.
    3. Click on create prompt , Click in Image prompt.
    4. Give Captions and image URL and other details.
    For more details use the link below.
    http://oraclebizint.wordpress.com/2007/11/02/oracle-bi-ee-101332-using-image-prompts/
    Regards,
    Som.

  • How to use multi prompts using java script in FF3.0*

    Hey i used the java script given in link :- http://sranka.wordpress.com/2008/11/09/how-to-replace-multi-go-button-prompt-by-one/#comment-96
    to hide multi-go-button in prompts and it works for IE 7 and firefox 2.0* with 10.3.4.1.
    Now since 10.1.3.4.1 is certified with firefox 3.0* ,when i use this same script in firefox 3.0* for my prompts it doesn’t work .
    Any idea why ? Please help me with this,as i want to use this hide go button feature in firefox 3.0* too.
    Are these scripts browser to browser incompatible ? If yes from where can i get the script for firefox 3.0* ?
    Awaiting for the inputs.
    Thanks,

    Vikas:
    In the 'Button Attributes' field of the button enter 'id='thisButton'.
    Modify the button template to include the substitution string #BUTTON_ATTRIBUTES# . This should be put in the anchor tag in the template defintion.
    Modify your Javascript to reference the above id as
    html_GetElement ('thisButton').disabled = true;
    ....Varad

  • How to use hierarchy variable.

    Hi all ,
    In 0Account I have four hierarchies , please tell me how can I use all these 4 hierarchies in a single BEx query.
    Presently I am able use only one hierarchy .
    With regards

    Hi,
    If u want the user to be able to choose 1 of the 4 hierarchies, in the hierarchy tab of the properties of 0ACCOUNT in BEx Query Designer, click on the white button beside "Select Hierarchy"  and then on the white button present against the drilldown for Hierarchy Variables. Create a new variable there & then select it from the drilldown. You should then be able to use the variable & select 1 of the 4 hierarchies.

  • How to use HIERARCHY in OLAP_TABLE function

    Hello,
    I am new to OLAP and I don't really know what is the exact syntax to look at this cube by using sql and OLAP_TABLE function.
    I have defined a analytic workspace called 'MANUAL' by using Analytic Workspace Manager. Inside I have defined a simple dimension 'DIM_PERIOD'.
    I have 4 levels ('YEAR', 'QUARTER','MONTH','YEAR_MONTH'), 1 hierarchy ('PERIOD') and 6 attributes ('YEAR','QUARTER','MONTH_CODE','MONTH_LONG','MONTH_SHORT',
    'YEAR_MONTH'). Every attribute is linked to one level of the hierarchy..
    I would like to build the correct sql statement to see all my dimension.
    I have already build the following :
    create type awperiod_row AS OBJECT (
    tyear VARCHAR2(4000),
    tquarter VARCHAR2(4000));
    create type awperiod_table as table of awperiod_row;
    Select *
    from table (OLAP_TABLE(
    'manual DURATION SESSION',
    'awperiod_table',
    'DIMENSION tyear from dim_period));
    This is giving me all different level in only one column.
    If I introduce 'WITH HIERARCHY PERIOD' I have an error saying PERIOD is not an object of Manual.
    Is there somebody who can help me ?
    I am expecting the following simple result :
    Year Quarter Monthshort
    2005 1 Jan
    2005 1 Feb
    2005 1 Mar
    2005 2 Apr
    Note also the definition and the data of my dimension is good. I can see the correct contain by using Analytic Workspace Manager
    Thanks already

    The answer to your overall question is that you should use the familyrel keyword in your limitmap, once per level that you want represented as a column (or a single reference along with the USING clause). You would also need to reference these new columns in your ADT.
    But before you start using familyrel, you'll need to discover why you can't specify a hierarchy. My guess is that period is not the name of the hierarchy in the Analytic Workspace. You can list all available hierarchies by using OLAP Worksheet (available in AWM) and typing "listnames relations aw period".
    It is somewhat difficult to be more specific without more detailed knowledge of the underlying Analytic Workspace.
    Thanks.

  • How to use optional prompts with stored procedure universe?

    Hi Experts,
    Iu2019m working on stored procedure universe in BO XI 3.0 SP2 FP2.5 with oracle at back end. My requirement is that I have to pass 5 optional prompts in the report and we have to pass these prompts through open document link. Please tell if this can be worked out on stored procedure universe?
    Thanks in advance.

    Hi,
    Try with OpenDoc syntax as follows.
    http://<servername>:<port>/OpenDocument/opendoc/<plat
    formSpecific>?iDocID=****&sIDType=CUID&sType=wid/rpt&lsM/lsS/lsRPROMPTNAME=[V1],[V2]&sDocName=reportname&sRefresh=Y/N
    where
    server name: cms server name
    port: portno
    <platformspecific>=: for java -> openDocument.jsp
                                      for .net -> opendocument.aspx
    idocid,sDocName & cuid -> we can get report properties ( goto info view -> select report -> right click -> properties i.e. doc id, cuid and report name)
    sType -> type of report i.e webi or deski ...
    lsS -> to pass single prompt value
    lsM -> to pass multiplle values to prompt
    lsR -> range of values ....
    Note: Here prompt name should be same as the one which we used in the report. Use + if there is blank space.
    Cheers,
    Suresh Aluri.

  • How to use Hierarchy for Planning?

    Hi everybody,
    I have created a query, which is input ready.
    This query uses a hierarchy which contains different positions being used for cashflow-planning.
    My Problem is that cashflow not only consists of positions that have to be added, but also positions, which have to be subtracted/discounted.
    I don't know whether it is possible to put my hierarchy into a structure and work with functions (because the function is not able to select child-nodes dynamically, I guess).
    That's the reason for me asking:
    Can I just instruct my hierarchy not to add eyery node, but also subtract them?
    I will be very thankful for every hint being given.
    Regards,
    Martin
    (p.s.: I'm sorry for my bad english. I'm out of practise.

    Hi Martin,
    welcome to sdn.
    follow this link regarding your query...
    http://help.sap.com/saphelp_nw04s/helpdata/en/f8/05d13fa69a4921e10000000a1550b0/frameset.htm
    assign points if  it helps.

  • Problem on a table with hierarchy prompt

    Hi experts,
    I have an unusual error when I'm using hierarchy prompt.
    I make an analysis that it has two hierarchycal columns (One of this is to show on rows of my table, another is to get filter when I choose options with hierarchycal dashboard prompt)
    My table looks like this:
    +Level1
    ...+Level1.1
    ...+Level1.2
    +Level2
    ...+Level2.1
    etc.
    If I drill down by Level1.1, it's drilldown fine and it shows childs of Level1.1, now comes my issue... With Level1.1 Opened (seeing childs of level 1.1), if I click to drilldown level1.2 I have an error:
    Odbc driver returned an error (SQLExecDirectW).
    Error Details
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: [nQSError: 96002] Essbase Error: Syntax error in input MDX query on line 8 at token 'filter' (HY000)
    So...My problem exists when I want to drilldown with diferent ways.
    If I delete hierarchycal column that is prompted in my dashboard...I can drill down perfectly... but I can't to delete this hierarchycal column because my customer needs that hierarchycal prompt.
    Anybody can help me???
    Thanks!

    Sure,
    Can u send a test mail to this user id
    [email protected]...will look into ur issue.
    Thanks

  • How to use addKeyListener in a program running using command prompt

    Does anyone have any idea how to add the addKeyListener to a program running using command prompt.
    Let me explain how the program run.
    The program is start and accept call from other program. But from time to time, I need to issue some command by pressing the keyboard, let say, ESC is closed the program, F1 is showing the stated. F2.... (This is all need to run in the command prompt windows)
    My problem is this program does not have any gui interface, so how can it be added?
    i do it this way
    public void key(){          
    addKeyListener(this);
    But it have compile error.
    mainServerImpl.java:87: cannot resolve symbol
    symbol : method addKeyListener (mainServerImpl)
    location: class mainServerImpl
    addKeyListener(this);
    I did implement KeyListener. But just don't know how to solve this error.
    can anyone tell me how to solve it or point me a source that can help.
    Thank in advance!
    Regards,
    Tai Tan

    Write your own Thread, to do this:
    public class KeyThread extends Thread {
       public void run {
          while(true) {
             int i = System.in.read();
             if(i == 123) {
                break; // to stop the thread
    // in your main:
    Thread keyThread = new KeyThread();
    keyThread.start(); // calls run() of the thread

  • How to use File Adapter with hierarchial Structure?

    Hi,
    How to use File Adapter with hierarchial Structure like..
    Data:
    --Header Details:
    Line Item Details:
    Data
    Bcoz I am getting a Flatfile in a hierarchial way as shown below.
    Header Details :1
    Line Item a
    Line Item b
    Header Details :2
    Line Item c
    Line Item d
    Kishore

    Hey Kishore,
    In order to create a structure you need to use the file with convertion mode on the sending communication channel of the file adapter.
    check the link for the needed configuration paramters.
    If the structure is more complexed you can use the Contetnt master(CM) from itemfield which allows to ceate XML file from complex flat files and more.
    <a href="http://help.sap.com/saphelp_erp2005/helpdata/en/0d/5ab43b274a960de10000000a114084/frameset.htm">File sender adapter</a>
    If you have any question i'll be more than happy to assist.
    Nimrod Gisis

  • How to create a hierarchy in Regional Structure and how to use it

    Hi,
    Please guide me how to create a Political Region Structure hierarchy and how to use it.
    Thanks and Regards

    Hi,
    Thanks for reply please.
    I request you to please copy paste all the possible information here. It will be a great help.
    I hope you understand why we can not provide our id on this forum.
    Please guide.
    Thanks and Regards
    Edited by: MP Vashishth on May 18, 2009 7:14 AM

Maybe you are looking for

  • How do I filter two columns of names to see What names are the same?

    I have two lists of names (one with 2,000+ names and one with 300+ names) I want make a column that shows the names that are not in both columns and the names that are. Is there an automated way of doing this? Basically, I have 2,000 friends on faceb

  • Billing plan type determination based on Variant configuration characterist

    Hi All, We have a process where in to determine the Billing plan of the contract based on the Characteristic value of the material. If the characteristic value is 'M' Monthly billing plan and assign corresponding billing plan to FPLA, if value is 'Q'

  • Explorer failed to collect data from SE6920 array

    Hi, Any kind soul out there can provide advice how can I collect data from SE6920 using the explorer command ? The man page of explorer says that to collect data from SE6920 aray, an input file "se6920inout.txt" with login info must be exist under th

  • Where are iBooks Settings?

    My other good iPhone readers, eReader and Goodreader both have settings to be able to change the font, font size, font color and background color and scrolling... where are iBook settings.. All I see is 'original' no use for reading on iPhone.

  • Need template with daily entries, & monthly sums & year-to-date sums

    I'm trying to find a budget template for Numbers -- adapted from the checkbook template, maybe? -- where one can enter daily transactions (with category) in 12 different monthly tables, show each month's category sums in tables next to the daily ones