Graphs in WAD for a particular value of infoobject which is the dataprovide

Hi,
I am using a query as the dataprovider, in that i have one characteristic infoobject reigon. This region has different values like central, emea, america, northeast etc.
I want three charts to be displayed without any user intervention (drop down, filter, check box).
The charts would display:
1. Chart for Region = emea and america
2. Chart for Region = Northeast and central
3. Chart for Region = All region values
Chart 3 can be easily acheived by assigning dataprovider to the chart, but without using filter, dopdown and anyother user intervention how can i restrict the chart which is using the same dataprovider to different region values.
Thanks
Rani

hi rani
create different views based upon ur query
and attach each view to ur chart and u can assign drop down box or filters web items to any of the chart..make it sure that data provider assigned differently otherwise it will reflect other graph
hope this helps
shalini

Similar Messages

  • How do i search a textfile for a particular value?

    How do i search a textfile for a particular value?
    I have made the records etc, six fields per record, i would like to find a value which is typed into the search textbox, find the record in the textfile and display the record in the boxes used to enter the data.
    SO HOW WOULD I SEARCH A TEXTFILE?
    Thanks very much for your help, Antony (UK)...

    If it were me, I'd use Lucene. Each line could be a separate document, and each field would be a field in Lucene. That would provide you one of the fastest and most flexible ways to do what you want.
    Or did you mean you want someone to complete your homework assignment? :-)

  • Query not executing for one particular value

    Hi
    I have query on multi provider. and this multi provider is combination of Info objects only but not any ODS or cubes. I have one key figure in this multi provider.while executing the query i need to give input for variabl which has 7 different values. Query is executing fine for 6 values but not for one particular value.
    query executed in listcube transaction and it is executed fine here for the same selection. then what might be the reason?
    Please advise as soon as possible.
    Thanks

    Hi Kiran,
    are you maintaining any filters in the query? or is there any logic in the exit for this variable.
    regards.

  • Stop a dimensional drill for a particular value of a column in obiee 11g

    Hi,
    I have dimensional drill been setup for Supervisor Hierarchy Table.I need to stop the dimensional drill for a particular value of the column in obiee 11g.
    Example: I have two columns
    1.Supervisor Level 1 Name
    2.Supervisor Level 2 Name
    Supervisor Level 1 Name Columns have these values.(Ram,Higher,Sam)
    Supervisor Level 2 Name Columns have these values.(Ravi,Higher,Raghul).
    If we pull Supervisor Level 1 Name Column in report which has a dimensional drill(It will navigate to Supervisor Level 2 Name).It will show
    1.Ram
    2.Higher
    3.Sam
    I should not drill on Higher value but the rest of the values(Sam and Ram will drill to Supervisor Level 2 Name) should be drillable.The same should happen for Supervisor Level 2 Name.
    Please Suggest.
    Thanks,
    Azim

    Azim,
    Don't think you can actually get this working

  • Hashtable- how to retrieve key for a particular value?

    I fetched few values from the database and stored all them using hashtable. Then i check for the value entered by the user in a textbox using contains() method of hashtable. Now i want to fetch the key associated to this particular value so that i can pass it to my rest of the program?
    Pls help me....

    The obvious question is what are you using as your key when you store the value into your hashtable?? The idea behind the key/value system is that you use the key to get the value you want, not the other way around. In your current situation, the contains() method might return true, but that could you mean you have 1, or 1000 instances of that value in your hashtable. Which key do you want? You could, I suppose, parse through the output of Hashtable.toString()... but that still wouldn't resolve the possibility of duplicate values in the hash.
    Another possible solution to your problem, depending on how your application works, is to wait until you get that user input before running your database query. Simply append the added info onto your SQL SELECT statement to accurate retrieve only those entries from the database that you will need.

  • Locate an entry in SXMB_MONI for a particular value(IDoc numbe) in payload

    Hi,
         We have an R/3 – XI – Third party scenario. R/3 is sending tones of IDocs. In some cases some IDcos are not going beyond XI. In BD64 we get a status code 40(from XI).
    We would like to locate the entry in SXMB_MONI for one particular IDoc. The only way now is to manually open all entries for the service/interface combination and see the IDoc number which is becoming very painful.
    Since we are in testing phase, there are a lot of entries for the sender/receiver interface combination. We tried to narrow down the result in SXMB_MONI with all possible search criteria like service, interface, etc. Time is ruled out because, we have queues with a lot of messages and never know when a particular message is processed by XI  (so the time of sending from R/3 may not make sense in SXMB_MONI as a search criteria).
    So my question is: it there a way to find an entry in SXMB_MONI for a particular IDoc number (which is present in the payload) ?
    As a programmer, I could think about a program which does this ?! But don’t know in which tables the entries are saved or the relation between the tables ?!
    Can someone please throw some light on it ?
    Thanks in advance
    Cheers
    danus
    null

    There is a way actually.
    Idoc Tracking is available from Sp18 ( I think ).
    http://help.sap.com/saphelp_nw04/helpdata/en/c1/bab13bb3acd607e10000000a11402f/content.htm
    Look into Idoc Tracking in this link.
    Regards
    Bhavesh

  • How to create a variable for key figure (value will be entered by the user

    I want to create one query, where the user has to entered a max value when the query is started, so that only the query rows will be listed, where the key figure value (integer) of the row is smaller than the max value given.
    How can i define that variable which has to start at the begin of the query; and also the restricted key figure iin consideration of the KF variable.
    Thanks for helping
    Ar.

    Hi Arnaud,
                Go to Conditions-> Right click -> New Condition -> Edit -> NEw -> Selct the KEy figures from the dropdown( the KFs that are used in the rows/columns) -> Select Less than from the operator drop down (less than is for you case) -> Values, there is an option to create a variable -> Select the variable -> transfer. It will appear on the top.
    Save & Execute, you will find it in your selction criteria.
    Regards
    Sunil

  • Search help for a particular value

    Hi ABAP gurus,
    Suppose i have 2 fields in Selection-screen i.e Plant and Material, Plant have 3 values say 1000,2000,3000.Whenever user enter 1000 and Press f4 in Material field then all the material values related to plant 1000 should be displayed,Similarly with value 2000 & 3000.
    Thanks in advance
    Sumit Kumar Sharma

    hi sumit.
    in report if you want search help based on another selection screen field value then you need to one function module to capture selection screen field value. i.e DYNP_VALUES_READ.
    the following is the example program please go though for this no need of enter.
    *Structure declaration
    TYPES: BEGIN OF ty_posnr,
           vbeln TYPE vbeln,
           posnr TYPE vbap-posnr,
           END OF ty_posnr.
    *internal table creatioin
    DATA:t_posnr TYPE STANDARD TABLE OF ty_posnr INITIAL SIZE 0.
    DATA: t_dyn TYPE TABLE OF dynpread,
          w_dyn TYPE dynpread.
    DATA: g_vbeln TYPE likp-vbeln,
          g_posnr LIKE vbap-posnr.
    *Selection screen
    SELECTION-SCREEN BEGIN OF BLOCK b1.
    SELECT-OPTIONS: s_vbeln FOR g_vbeln NO INTERVALS NO-EXTENSION ,
    s_posnr FOR g_posnr NO INTERVALS NO-EXTENSION .
    SELECTION-SCREEN END OF BLOCK b1.
    *At selection screen on event
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_posnr-low.
      PERFORM f4_help.
    *&      Form  f4_help
    *       text
    FORM f4_help .
      w_dyn-fieldname = 'S_VBELN-LOW'.
      APPEND w_dyn TO t_dyn.
      CALL FUNCTION 'DYNP_VALUES_READ'
         EXPORTING
           dyname                               = sy-repid
           dynumb                               = '1000'
    *   translate_to_upper                   = 'X'
    *   REQUEST                              = ' '
    *   PERFORM_CONVERSION_EXITS             = 'X'
    *   PERFORM_INPUT_CONVERSION             = 'X'
    *   DETERMINE_LOOP_INDEX                 = ' '
    *   START_SEARCH_IN_CURRENT_SCREEN       = ' '
    *   START_SEARCH_IN_MAIN_SCREEN          = ' '
    *   START_SEARCH_IN_STACKED_SCREEN       = ' '
    *   START_SEARCH_ON_SCR_STACKPOS         = ' '
    *   SEARCH_OWN_SUBSCREENS_FIRST          = ' '
    *   SEARCHPATH_OF_SUBSCREEN_AREAS        = ' '
         TABLES
           dynpfields                           = t_dyn
    EXCEPTIONS
       invalid_abapworkarea                 = 1
       invalid_dynprofield                  = 2
       invalid_dynproname                   = 3
       invalid_dynpronummer                 = 4
       invalid_request                      = 5
       no_fielddescription                  = 6
       invalid_parameter                    = 7
       undefind_error                       = 8
       double_conversion                    = 9
       stepl_not_found                      = 10
       OTHERS                               = 11
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      CLEAR w_dyn.
      READ TABLE t_dyn INTO w_dyn WITH KEY fieldname = 'S_VBELN-LOW' .
      IF sy-subrc = 0.
        SELECT vbeln
               posnr
               FROM vbap
               INTO TABLE t_posnr
               WHERE vbeln = w_dyn-fieldvalue.
      ENDIF.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
    *            DDIC_STRUCTURE         = ' '
                retfield               = 'POSNR'
    *            pvalkey                = ''
                dynpprog               = sy-repid
                dynpnr                 = '1000'
                dynprofield            = 'S_POSNR-LOW'
    *            STEPL                  = 0
    *            WINDOW_TITLE           =
    *            VALUE                  = ' '
                value_org              = 'S'
    *            MULTIPLE_CHOICE        = ' '
    *            DISPLAY                = ' '
    *            CALLBACK_PROGRAM       = ' '
    *            CALLBACK_FORM          = ' '
    *            MARK_TAB               =
    *          IMPORTING
    *            USER_RESET             =
        TABLES
          value_tab              = t_posnr
    *            FIELD_TAB              =
    *            RETURN_TAB             =
    *            DYNPFLD_MAPPING        =
    *          EXCEPTIONS
    *            PARAMETER_ERROR        = 1
    *            NO_VALUES_FOUND        = 2
    *            OTHERS                 = 3
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                                                    " f4_help
    It will work fine. If you satisfied give points.
    regards.
    laxman

  • I am using Edge CC 2014. When I open up actions for a particular object (or in code view) the "toggle display of code snippets" does not show. Is there a preference setting I am missing?

    I cannot get the code snippets to show. What am I missing here?

    Hi there,
    Code snippets have changed for Edge Animate CC 2014: they are categorized by type, and allow you to choose which elements are being targeted. Please refer to the attached screenshot:
    hth,
    Joe

  • How to find for a particular WBS element thourgh which budget has consumed

    Hi ,
           I have a WBS element C-09864/001/002. In CJ33  system is showing Budget amount 90,000 and distrbuted 90000. So total budget has consumed. Now if i want to know how the budget has consumed ,means in what ways it has consumed like PR or POs and what are those  PR& PO doucment numbers.
    Apart from PR & PO s directly by posting FI documet also , is there chance for consuming budget .If yes how to find ?
    Thanks & regds
    ramachadra

    Apart from PR & PO s directly by posting FI documet also , is there chance for consuming budget .If yes how to find ?
    -> transaction MIRO, CJ88, KO88
    You can use the steps I have provided to check this.
    Regards, Gordon

  • WIP QTY. AND VALUE IN SINGLE REPORT FOR A PARTICULAR PERIOD

    Is there any report for a particular period that we can get the WIP qty. and value in single report. If there what the fileds we have to select.
    Ex. We want what is the consumption qty. and value and what is the GR qty. and value for the period ending June 08.

    Hi,
    You can use the T-Code KKAS to get the WIP Qty against a given plant/material combination.
    some of the other supporting t-codes are:
    KKAO                 WIP Calc.: Collective Processing
    KKAQ                 Display WIP - Collective Processing
    KKAT                 WIP Display for Product Cost Coll.
    KKAV                 WIP Calculation for Cost Object Hier
    KKAW                 WIP Display Cost Object Hierarchy
    KKAX                 WIP Calculation for Order
    KKAY                 WIP Display for Order
    Regards,
    JLN

  • Display only positive values for a particular Keyfigure

    Hi..
    (Sorry, I accidentally posted this also in Datawarehousing forum, actually it related to BeX forum).
    For a particular column(keyfigure) in my report, the user wants to display only positive values.
    I used the formula from the one of the forums
    (Keyfig > 0)* Keyfig.
    This displays only positive values in the column as required. But, the result for this column is also affected. As the result is negative, it shows, zero in the result for this column.
    Is there a way in which the result will not be affected by the formula?
    I went into the properties of the particular keyfigure and chose Calculate Result as -> Summation.
    It throws out the following error message
    'Calculating result as...' was not executed
    Message no. BRAIN141
    Diagnosis
    The function 'Calculate Results as ...' could not be used in all
    instances.
    The recalculation of a result cell always occurs based on the set of
    detailed cells subordinated to this cell. This is the most detailed
    level of the drilldown. Therefore it is not posible to recalculate in
    hierarchical lists. The calculation of a results cell is not performed
    if a cell or column with an expand symbol is assigned beneath it.
    Otherwise the newly calculated result is changed every time one of its
    lower-level nodes is expanded. This is not supported for technical
    reasons and would also only confuse users.
    Note, however, that calculating with "Suppress Results" is always
    executed because the restriction described above does not apply in this
    case.
    NOTE:
    The query shows the keyfigure values for a selected title, for profit center and territory hierarchies.
    Any suggestions would be greatly appreciated.
    Thanks,
    Sai.

    Hi Deepu,
    Thanks for the reply. I tried with ur formula.
    LEAF(keyfig) gives all values "zero" for that particular column including the result.
    NOT LEAF(keyfig) gives all values "one" for that particular column including the result.
    So, ur formula gives the same values as of the present column values.
    I tried condition, but it's not working...it says the following errors...
    There is a condit. on Title, results row suppress. active on Profit Center    
    (conditional                                                                               
    Message no. BRAIN144                                                                               
    Diagnosis                                                                               
    Characteristic Title has an output condition and the 'Suppress Results    
        Cells' property is active for Profit Center. This generally leads to an   
        incomprehensible output list.                                                                               
    System response                                                                               
    As soon as an output condition is defined for a characteristic (here      
        Title), the system calculates the corresponding result cells and applies  
        the output condition. If a result cell of this type is later deleted by   
        the condition, all the lower-level detail and result cells in its         
        drilldown are suppressed. Because the result cell is suppressed the       
        Title rows are then omitted from Profit Center.                                                                               
    In extreme cases this can lead to an entirely empty list being            
         displayed, although the single rows or columns would be displayed if the  
         condition were deactivated.                                                                               
    Procedure                                                                               
    Check the query settings, especially results row suppression and the      
         output conditions.                                                                               
    Procedure for System Administration                                                                               
    You can deactivate this message Brain 144 with transaction RSRT1.                                                                               
    There is a condit. on Profit Center, results row suppress. active on        
    Territory as in SPL (conditional                                                                               
    Message no. BRAIN144                                                                               
    Diagnosis                                                                               
    Characteristic Profit Center has an output condition and the 'Suppress  
        Results Cells' property is active for Territory as in SPL. This         
        generally leads to an incomprehensible output list.                                                                               
    System response                                                                               
    As soon as an output condition is defined for a characteristic (here    
        Profit Center), the system calculates the corresponding result cells and
        applies the output condition. If a result cell of this type is later    
        deleted by the condition, all the lower-level detail and result cells in
        its drilldown are suppressed. Because the result cell is suppressed the 
        Profit Center rows are then omitted from Territory as in SPL.                                                                               
    In extreme cases this can lead to an entirely empty list being            
         displayed, although the single rows or columns would be displayed if the  
         condition were deactivated.                                                                               
    Procedure                                                                               
    Check the query settings, especially results row suppression and the      
         output conditions.                                                                               
    Procedure for System Administration                                                                               
    You can deactivate this message Brain 144 with transaction RSRT1.
    Thank you very much.
    Regards,
    Sai.

  • Collection Method to check for the existence of a particular value

    I have to use an associative array to store a list of values. How can i check whether a particular value exists or not in the entire collection?
    The list would look like
    John
    Abel
    Keith
    Johhan
    .i just want to know whether a particular value (say John) exists or not in the entire collection.I can't use the method EXISTS because it will only returns TRUE if the nth element in an Associative array exists.
    If this is not possible with Associative arrays, what other collection types(and method) can i use for this?

    associative arrays should do the trick.
    index by varchar2() rather than binary_integer or pls_integer:
    good example here:
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14261/collections.htm#sthref1022
    edit: I guess I should qualify this by saying that it only works like that if you've got unique values in your index, which may not be an acceptable solution for you. if you have to index by a number, then I'd also be curious if there's a solution other than looping through the whole table find a value. the only fast way I know of would be to ensure the array is ordered and perform a binary search algorithm or something.

  • Looking for a particular set of features

    Does anyone know what Abode product will allow me to write with a stylus (on a Sony tablet) on a PDF and at the same time redord audio.  And then allow it to be played back.  I am math a teacher and I would like to upload an example question (PDF) for my students into a program.  then i would like to be able to complete the example by writing with my touch screen and i would like some audio to acompany it.  Then i want to save this and post on my class web page.   
    Are there and porduct out there that do that?

    Hi,
    Check for the fiscal year variant value for that  fisal period 003/2007in the cube is it same as that of othertwo values of the fiscal period.
    May be at the report level or at the cube level you have restricted the values of the fisacl variant for a particular value and for that variant value there is no fiscal period of 003/2007.
    Also it may be possible that your report key figures are restrcited year to date... that is till current fiscal period only through some other way.. and thats why you can only see data till current fiscal.
    Hope it helps
    Thanks

  • Bex Error for a particular set of data

    Hi Gurus,
        I have strange problem going on with my report, i have report which has variable
        for fiscal period (we can enter like 001/2007), the reports runs fine for 001/2207
        and 002/2007 but fails to run for 003/2007. i have data in the cube for that
        fiscal period.
        Please suggest a solution for this.
    Thanks a ton..

    Hi,
    Check for the fiscal year variant value for that  fisal period 003/2007in the cube is it same as that of othertwo values of the fiscal period.
    May be at the report level or at the cube level you have restricted the values of the fisacl variant for a particular value and for that variant value there is no fiscal period of 003/2007.
    Also it may be possible that your report key figures are restrcited year to date... that is till current fiscal period only through some other way.. and thats why you can only see data till current fiscal.
    Hope it helps
    Thanks

Maybe you are looking for

  • I didn't succeed in updating my Itunes.

    I didn't succeed in updating my Itunes on my Windows PC (Windows 7). Therefore I removed the Itunes application and would  reinstall. But when I get to install - Start Services I get the following message: Service "Apple Mobile Device" failed to star

  • Closing sales orders

    hello, friends. what are the ways that we can prevent changes or additions to the sales order once this has been completed? regards and thanks.

  • Total of Hierarchy

    I have 0Product Hierarchy activated in the Row. The Hierarch has 3 level. In column, there are 3 Key Figure - A, B and C. Column C is the Average Amount, the fomular is Total of the 0Product Hierarchy divided by current Hierarchy Level. Question is h

  • IE 9 hang on latest Flash version 11.5.502.110. Working on beta 11.5.500.104...

    Hi, I have the same issue on my new three machines. Clean Windows 7 32bit OS with latest SP and IE9 (lastest updates). Adobe Reader, Flash, Shockwave, AIR, QT, RealPlayer, Java 7. When running webpages on Admin local account everything works fine. Wh

  • Lots of Boolean indicators

    My front panel has three tabs that are populated with lots of boolean indicators.  What's the best way to minimize the mess on the block diagram.  I'm also using references for a number of boolean controls as well.