Hiding a row based on the the drill down via table interfaces

I have a requirement to hide a particular row (key field) of a table if a characterisitic (0PLANT) is included in the table.
I have managed to hide the key field via the table interface but need to know how I would see if the characteristic is drilled down (IE included in the table).
Initially I used CAPTION_CELL to establish whether 0PLANT was in the report but when I then removed 0PLANT from the report, CAPTION_CELL is not reprocessed and thus the report is incorrect.
What is the best way to establish what characteristics are included in any report.
Any help would be appreciated.
Cheers
Shep.

Hi Neal,
why not using the service method get_state_infos.
In e_thx_axis_info you should find all relevant information
http://help.sap.com/saphelp_nw04/helpdata/en/32/ab3a3c24b4a00ae10000000a11402f/frameset.htm
Heike

Similar Messages

  • Drill down via the legend icons

    Hi,
    I created a line chart. Via navigate it's possible to drill down to a another report. Is it also possible to drill down via the legend icons?
    Thanks, Robbert

    hi,
    For this u can add one custom graph for the legends and enable the drill down on that legend
    please go through this thread
    refer obiee Guru John's reply
    Re: How to show only legend in graph?
    thanks,
    saichand

  • Drill down via legend

    Hi,
    I created a line chart. Via navigate it's possible to drill down to a another report. Is it also possible to drill down via the legend icons?
    Thanks, Robbert

    hi,
    For this u can add one custom graph for the legends and enable the drill down on that legend
    please go through this thread
    refer obiee Guru John's reply
    Re: How to show only legend in graph?
    thanks,
    saichand

  • How to get the back button if we to go the 2nd drill down report??

    Hi,
    I have a drill down report for the main report. And have detailed drill down as in 1st report>2nd report>3rd report.
    But once i goto drill down, the return button is there which directs to main report i.e. 2>1,
    But once i goto 3rd, i do not get the back button so that i can access reports in 3>2>1, instead its going directly to 1st from 3rd.
    hope i have made the point clear.
    Someone suggest me how do i get the back button??
    Thanks!!

    use the below code in Narrative view
    <script&gt;
    function goBack()
    window.history.back()
    </script&gt;
    <input type="button" value="Back" onclick="goBack()"&gt;
    If helps mark
    Edited by: Srini VEERAVALLI on Feb 13, 2013 12:08 AM

  • Drill down in Table or Pivot for derived column

    Hi All,
    I have a requirement like Top 5 products should show the product names and remaining should go to *'Others'*. I achieved it by using Rank function and case when.
    ex: case when rank(product) <=5 then product else 'Others' end
    Now the problem is, I am not getting the Drill option for this column. When I use product column without case when or case when on same column like
    case when product = 'xyz' then 'abc' else product end. In this case drill is working.
    Can anybody suggest me to get the drill on the derived columns.
    Thanks in advance

    A similar thread was recently talked about here:
    In OBIEE charts, how do you make drill downs work on custom formulas?
    With a calculated column, you need to make sure the source query and destination query have the EXACT same formula and the same name for the field. If it is not 100% identical, it may not work correctly. (I typically use the NAVIGATE function to get to the second query rather than the Drill function.)
    Now in some cases, if you try to create a second drill down query with more details in it, the original formula doesn't work the way you want it to. The calculated formulas have to make sense in both source query and destination query in order to work properly. If you have a ranking of the Top 5 Products in the source query, the destination query also has to have the same ranking of Top 5 products in order to work. If you add more fields into the destination query (e.g., adding on product attributes, or # of records associated with that product name etc.), then sometimes the ranking / aggregation in the destination doesn't add up the same way. This causes the system to think that the formulas are different and prevents the drill down.
    I managed to get around this by having a 3rd query in between the original summary view and the detailed data view. So the sequence would be (for example):
    - Dashboard based summary query (including the calculated ranked product names formula)
    - drill down into virtually identical query (add on one slight bit of difference here, for example adding on a second Product Name field ... not a calculated version, but the actual name). Create a drill down this time by clicking on the regular Product Name field (don't drill down on the custom formula)
    - final detailed drill-down query
    You can format this intermediary drill down query to explain to users that they need to click a second time.
    It's not ideal, but it should work. Hope this helps.
    Ted

  • The order of columns in the report/drill down

    By using the command SAPBWGetDataProvider I can get a list of characteristics/structures and whether they are in the rows or columns but.....
    Is there any way to see the order, IE is there any way to extract the information to say Material Type is in the first column, Plant is in the second column etc....?
    Any help will be appreciated.
    Cheers
    Shep.

    FYI: Found the answer, it was in position 19 if position 4 is filled with an X(Row) or Y(Column).
    Shep.
    Message was edited by: Neal Sheppard

  • URL Parameterizing for BI Query Detail Drill Down via Xcelsius

    Hi Guys,
    I am In the process of building an Xcelsius dashboard using BI/BW as my source system, working on a "Details" URL button to allow the user to drill directly into the source BI queries with their current combo box selections. 
    I am trying to build a URL to pass a value to both a variable and to filter a characteristic. I want to pass a value to a 0fiscper variable and exclude an employee number. 
    I have been able to get each URL to work independently, but not working together. If I leave out either the variable part or the filter part it works, but it doesn't work with both the filter portion and characteristic filter section. 
    I followed other threads and used Web application designer (WAD) instructions to view the XHTML I will have to parametrize for my URL.
    This is how I have flattened/parametrized it
    Variable part:
    BI_COMMAND_1-BI_COMMAND_TYPE=SET_VARIABLES_STATE&
    BI_COMMAND_1-VARIABLE_VALUES-VARIABLE_VALUE_1-VARIABLE_TYPE=VARIABLE_INPUT_STRING&
    BI_COMMAND_1-VARIABLE_VALUES-VARIABLE_VALUE_1-VARIABLE_TYPE-VARIABLE_INPUT_STRING=010/2010&
    BI_COMMAND_1-VARIABLE_VALUES-VARIABLE_VALUE_1-VARIABLE=BCURFPER&
    data provider part
    BI_COMMAND_1-BI_COMMAND_TYPE=SET_SELECTION_STATE&
    BI_COMMAND_1-TARGET_DATA_PROVIDER_REF_LIST-TARGET_DATA_PROVIDER_REF_1=DP_1&
    characteristic filter part
    BI_COMMAND_1-CHARACTERISTICS_SELECTIONS-CHARACTERISTIC_SELECTIONS_1-CHARACTERISTIC=0EMPLOYEE&
    BI_COMMAND_1-CHARACTERISTICS_SELECTIONS-CHARACTERISTIC_SELECTIONS_1-SELECTIONS-SELECTION_1-SELECTION_INPUT_STRING=!201
    So my complete URL is:
    http://serverinfo?
    QUERY=ABCQUERY&
    BI_COMMAND_1-BI_COMMAND_TYPE=SET_VARIABLES_STATE&
    BI_COMMAND_1-VARIABLE_VALUES-VARIABLE_VALUE_1-VARIABLE_TYPE=VARIABLE_INPUT_STRING&
    BI_COMMAND_1-VARIABLE_VALUES-VARIABLE_VALUE_1-VARIABLE_TYPE-VARIABLE_INPUT_STRING=010/2010&
    BI_COMMAND_1-VARIABLE_VALUES-VARIABLE_VALUE_1-VARIABLE=BCURFPER&
    BI_COMMAND_1-BI_COMMAND_TYPE=SET_SELECTION_STATE&
    BI_COMMAND_1-TARGET_DATA_PROVIDER_REF_LIST-TARGET_DATA_PROVIDER_REF_1=DP_1&
    BI_COMMAND_1-CHARACTERISTICS_SELECTIONS-CHARACTERISTIC_SELECTIONS_1-CHARACTERISTIC=0EMPLOYEE&
    BI_COMMAND_1-CHARACTERISTICS_SELECTIONS-CHARACTERISTIC_SELECTIONS_1-SELECTIONS-SELECTION_1-SELECTION_INPUT_STRING=!201
    Then it gives me the following error when I attempt to run this...
    " The metadata of "CMD" "SET_VARIABLES_STATE" are incorrect for parameter "CHARACTERISTICS_SELECTIONS"
    If I set the debug=x flag to see what is generated in the error this is the info I get:
    The parameter "CHARACTERISTICS_SELECTIONS" in the metadata of "CMD" "SET_VARIABLES_STATE is not correctly defined:
    <parameterList>
      <param name="BI_COMMAND_TYPE" value="SET_VARIABLES_STATE"/>
      <param name="CHARACTERISTICS_SELECTIONS">
        <param name="CHARACTERISTIC_SELECTIONS" index="1">
          <param name="CHARACTERISTIC" value="0EMPLOYEE"/>
          <param name="SELECTIONS">
            <param name="SELECTION" modification_type="delete_if_value_not_equal" index="1">
              <param name="SELECTION_INPUT_STRING" value="!201"/>
            </param>
          </param>
        </param>
      </param>
      <param name="TARGET_DATA_PROVIDER_REF_LIST">
        <param name="TARGET_DATA_PROVIDER_REF" value="DP_1" index="1"/>
      </param>
      <param name="TARGET_VARIABLE_CONTAINER_REF" value="DEFAULT"/>
      <param name="VARIABLE_VALUES">
        <param name="VARIABLE_VALUE" index="1">
          <param name="VARIABLE" value="BCURFPER"/>
          <param name="VARIABLE_TYPE" value="VARIABLE_INPUT_STRING" modification_type="delete_if_value_not_equal">
            <param name="VARIABLE_INPUT_STRING" value="010/2010"/>
          </param>
        </param>
      </param>
    </parameterList>
    Thanks for looking!
    -Gary

    Hi Gary,
    We came across the following issue.Colud you please provide the solution which you used to resolve it.
    " The metadata of "CMD" "SET_ITEM_PARAMETERS" are incorrect for parameter "BUTTON_LIST".
    Thanks,
    Anji

  • Drill Down and Hiding the Previous Column

    Hello Everyone:
    I am trying to know if this is possible at all using OBIEE.
    I have a table with the following drill down:
    Award
         Program
              Department
                   Section Sales, Profit, Costs
    I am able to drill down from award to section just fine. But When I drill down the table gets wider and wider rendering the table unacceptable. Is there away to possibly drill down from 1 to 2 and hiding or not showing 1?
    Drill from Award to Program, but hide award when I am at program level etc…?
    Thank You
    Adel

    Ouch, its a common requirement but sadly not suppoted out of the box.
    I think Goran blogged about 'Navigate in place' but it involves custom iframes etc. so may be a bit of a ballache.
    here it is :
    http://108obiee.blogspot.com/2009/06/same-page-navigation-drills-using-drill.html
    Some other 'nearly there' workarounds exist tho, theres a trick to use a column selector and replace one column with a concatanated <column 1>'-'<column 2> but you'll lose furthur drill functionality, indeed you'd need to configure this for every level,
    I'll try and dig the link out if you interested, its not that tidy though.

  • How to add a drill down feature in the Adobe form output

    Hi,
    I am new to adobe forms.I have a requirement where in i need to develop a form which will have diffeerent rows in the output.
    if the user is accessing the form using SAP GUI i need to provide a hyperlink on the row which will have a drill down feature further to have  the details on the row in a tabular form.Please help me on this.Thanks in advance.
    Moderator message: wrong forum, please have a look in the forum for "Adobe Interactive Forms".
    Edited by: Thomas Zloch on Apr 7, 2011 9:44 AM

    Hi,
    Refers the following links.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/4fd2d690-0201-0010-de83-b4fa0c93e1a9
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5f27e290-0201-0010-ff82-c21557572da1
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/70c9a954-aa20-2a10-64bb-ea0835204e03
    Thanks
    Abhilasha.

  • How do I get the drill-down arrow to display in Messages/Alerts?

    Hello Experts,
    We have created the following query and added it to alerts management to notify certain users when a production order is closed.
    SELECT T0.[DocNum], T0.[ItemCode], T0.[Status] FROM OWOR T0 WHERE T0.[status] = 'L' and T0.[U_RD] is null AND datediff(mi,U_Status_Update,getdate()) <= 5 FOR BROWSE
    I would like to have a drill-down arrow in the alert message that gets sent out to users. 
    I have searched the forums and discovered that adding FOR BROWSE to the end of the query creates the orange drill-down arrow when the query is executed which is great but the drill-down arrow still does not show in the internal mail message sent out to users.
    Can drill-down links be included in alerts/messages and if so, what have I done wrong?
    Thank you kindly,
    Richard
    SAP Business One Version 8.8 PL:15

    Hi Richard,
    Based on my experience, I don't think drill-down links can be included in alerts/messages.
    Thanks,
    Gordon

  • Graph label in Drill down graph to display only the lowest level label

    Recently I have upgraded from OBIEE 10 to 11g.
    Some reports have a country -> region -> branch drilldown, for which hierarchy is created in business layer of RPD. The graph, drills down from Country -> Regions -> Branches and displays the measures accordingly. But the horizontal label displays the full hierarchy , like CountryName,RegionName and Branch Name. In 10g, I used to get the Branch name only in the axis label.
    I would like to display only the Region names when Country is drilled down and the branch name alone when the Region is drilled down.
    Kindly help.

    In 11g it is bug....
    For this u should create 3 individual reports (1 for country, 2. Region, 3. Branch) and give action link one to another.
    for filter make sure the required column "Is Prompted" for every detailed reports.
    Pls mark if it helps
    -Chinna

  • Drill down on all values of a row from bex universe

    Hi
    We had developed BO universe on bex query, and as in web i the whole row will come as a single object.
    so when we drill  on the row the drill is not performing on the whole row rather its happenig on a single value of the row
    Ex:- if we have rows named as US, china, America, Japan, Gross sales, invoice etc
    when wen i drill on any row for lets say US, and i drilled on currecy type the drill is happening only us from the row.
    But we need this drill on whole values of the row,
    if aware of bex analyser, we need the same drill down future as in bex.
    Any help in this regards is appreciable.
    Thanks in Advance,

    Hi,
    Your code seems to be right.
    Try writing the code as the below format.
    CASE SY-UCOMM.
    * CHECK FUNCTION CODE
    WHEN '&IC1'.
    * CHECK FIELD CLICKED ON WITHIN ALVGRID REPORT
    IF SELFIELD-FIELDNAME = 'LIFNR'.
    * READ DATA TABLE, USING INDEX ROW USER CLICKED ON
    READ TABLE IT_FINAL INTO WA_FINAL INDEX SELFIELD-TABINDEX.
    * SET PARAMETER ID FOR TRANSACTION SCREEN FIELD
    SET PARAMETER ID 'BES' FIELD WA_FINAL-LIFNR.
    * EXECUTE TRANSACTION 'XK03',AND SKIP INITIAL DATA ENTRY SCREEN.
    CALL TRANSACTION 'XK03' AND SKIP FIRST SCREEN.
    ENDIF.
    ENDCASE.
    Thanks
    Arbind

  • How to user Error Trigger for mapping - trying to catch row-based errors

    Hello everyone,
    Has anyone managed to use the error trigger for a mapping?
    I created a row based map with the right parameters (i set the error trigger procedure which I already created in the database).
    For this map after run i have 5 warnings which appear in the interface but the error trigger procedure is not executed.
    I set the max errors to 3 so after run the map should end with errors instead of warnings.
    Still not executing the error trigger procedure.
    What am i doing wrong?
    Please help as i really need a way to "catch" row based errors - having multiple target tables sucks.
    Thank you,
    Irina
    Edited by: Irina on Jul 30, 2009 1:32 PM
    Edited by: Irina on Jul 30, 2009 3:38 PM

    It seems nobody knows what I'm talking about - no documentation on it either ... not even in the user guide ... not even on google ... well, just saying what it is doesn't count :D

  • Combine rows based on column value

    I'm trying to combine rows based off of a common value.
    Table Data:
    Result A
    Player_ID   Player_Name  Team_Name  Points Sequence
    99999       John Smith    Bulls              50         1
    99999       John Smith    Pistons          14         2
    What i want in the output
    Result B
    Player_ID Player_Name Team_Name  Points
    99999     John Smith      Bulls           64 (50 for Bulls)Here's my main query...
    select player_id, player_name, team_name, points
    from
              SELECT player_id, player_name, team_name, sum(points) sum_points
              FROM stats_data
              WHERE season_id = 2008
              AND points > 0
              GROUP BY player_id, player_name, team_name
              ) t
    ORDER BY sum_points DESC, last_name;**The current query gives me the output from Result A
    1) Not entirely sure how to combine data based of player_id
    2) Once i figure out 1, im sure by adding the ('sum_points' for 'team_name') to the output can be done with a case statement, i think?

    Sorry about that Frank.
    Using: Oracle 10.2g
    i was incorrect about the output of the query
              SELECT player_id, sum(points) sum_points
              FROM stats_data
              WHERE season_id = 2008
              AND points > 0
              GROUP BY player_id
    )Output
    Player_ID      Sum_Points    
    99999              20        
    55455               6          
    66489               2  So the subquery is outputing the correct data
    The output of the original entire query(that you had posted) is:
    Player_ID    Player_Name   Team_Name    Points    
    99999        John Smith      Bulls               16 (8 for  Bulls)    
    55455        Bob Johnson    Rockets          6   (3 for Rockets)
    66489        Chris Terry       Kings              2   (1 Kings)Here's some more raw sample data from the table:
    Player_ID    Player_Name   Team_Name    Points     Sequence  Game_Type_ID Team_ID
    99999        John Smith      Bulls               12          1                       1                  5
    99999        John Smith      Bulls               0            1                      -1                  5
    99999        John Smith      Pistons            4           2                       1                 12
    99999        John Smith      Pistons            0           2                       -1                12
    55455        Bob Johnson    Rockets          4           1                        1                  3 
    55455        Bob Johnson    Rockets          0           1                       -1                  3 
    66489        Chris Terry       Kings              2           1                        1                  8
    66489        Chris Terry       Kings              0           1                       -1                  8So your code frank is very close, the issue is that:
    A) All players have a ('pt value' for 'team name') even if they played on the same team, which can prob. be solved with a case statement, which i tried to do in my last post.
    WITH       grouped_data     AS
              SELECT player_id, sum(points) sum_points
              FROM stats_data
              WHERE season_id = 2008
              AND points > 0
              GROUP BY player_id
    SELECT     g.player_id
    ,     s.player_name
    ,     s.team_name
    (case when sequence = 2 then g.sum_points  <==
         ||  '('
         ||  TO_CHAR (s.points)
         ||  ' for '
         ||  s.team_name
         || ')'
    else to_char (g.sum_points)
    END)     AS points
    FROM     grouped_data     g
    JOIN     stats_data     s     ON g.player_id     = s.player_id
    WHERE     s.sequence     in (1,2)     <==
    AND     s.season_id     = 2008
    AND     s.points     > 0;the output has two issues, for players who played on more than one team, like Josh Smith the output comes out as
    99999        John Smith      Pistons           20  (2 for Pistons)        
    99999        John Smith      Bulls               20While the players who played on one team came out correctly. So issue with my edit of your code is:
    A) josh smith is output 2, needs to be output once
    B)josh smith should say (Josh Smith Bulls 20 (4 for Pistons) not "99999 John Smith Pistons 20 (2 for Pistons)"
    c) Issues with "99999 John Smith Pistons 20 (2 for Pistons)" is that it listing the wrong team for him: should be Bulls and listing half of his total with the pistons in the prentices should be 4. --The reason that is because s.points needs to be summed as based off of the data there's two entries
    Hope this clears it up, thanks!
    Edited by: user652714 on Mar 11, 2009 9:28 AM

  • Conditional display of headings based on drill-down page or section shown

    <div>Crystal Reports 10</div><div>I have a report (originally written by someone else) with 1 drill down page.</div><div>The drill down shows section group footer 2.</div><div>I am adding a new drill down from the 1st drill down. This will show the details section.</div><div>There are headings which are displayed in the page header section.</div><div>I would like to suppress or hide these headings when the 2nd drill down page (details section) is shown.</div><div>I figured I could do it based on whether a section, or a field within a section, is displayed on the page or not.</div><div>How to accomplish this?</div>

    Thanks for asking this question.Â
    There is a formatting function (under the Document Properties group of functions) called GroupLevel(). It returns what level of group you're on. You can use this along with the Suppress conditional format to show/hide a section based on where the user is located. Â
    This would be a great one to "show" as a sample. I'll add it to my task list for submissions up here.Â
    Again, thanks for asking the question and start the ball rolling!
    Â Â Â Â Â - Kathryn Webster (Report Design Specialist)

Maybe you are looking for

  • Price too low - Invoice is not blocked...

    Dear, Probably you all know that invoices can be automatically blocked for payment based on the tolerances set up in customizing. When the price is too high, the system acts like expected, but when the price is too low, we don't get the preferred res

  • How can I import mail from Opera Mail to Thunderbird?

    I use Opera Mail as my primary email agent on Windows XP Pro SP3. Soon I will install Windows 7, but first I am trying to set up Thunderbird. (I already use Firefox.) I have >4500 email messages in my Opera Mail store, and I have not been able to fig

  • 9300 screen is white

    Good Afternoon , i got my 9300 for about 3weeks on contract from MTN south africa  . I had my phone in my pocket and i noticed that the lcd has turned white with a small black mark on the screen .Please note that the phone was not dropped or mishandl

  • Can't update from 4.3.3 to 6.0

    I have ios 4.3.3 on my ipad trying to update to the newest version, goes through the whole process and then error message that it can't restore my ipad. help?

  • Adobe Presenter 8

    Hi, I have installed Adobe Presenter 8 in my clients computer. It was working fine till last week. And all of a sudden it stopped working and it came up with error message as attached. I tried to uninstall and re-intsall the aplication and tried diff