*Can I pass default Selection dynamically for Drill Down Charts*

Hi
I am having Charts with Drill Down tab and I am currently having to select a value for the Default Selection Combo Box while saving the chart.
I want to be able to update this default selection depending upn data coming from the XML / Webservice. Is there a way to update the Default Selection dynamically ?
Please let me know if anyone has come across this.
Thanks,
Rahul
Edited by: Rahul Modey on Sep 2, 2008 5:15 PM

Hi Rahul,
Drill Down > Default Selection > Series/Item may not be filled dynamically.  They must be selected manually.
Good Luck.

Similar Messages

  • In Drop Down by Index how can i pass default value Dynamically

    Hi Friends,
    In Drop Down by Index how can i pass default value Dynamically.Please help me.
    Thanks in advance.
    Regards,
    Kumar.

    hi,
    if you want the value to be defaulted only the first time you execute the program then write the code which suman has mentioned in the views method
    wddoinit.
    Regards
    Sajid

  • Passing the filter values to drill down chart

    Hi all,
    I want to drill down on a chart on the basis of fitlter values. i.e User wants to click on the section of first chart and want to pass on the filter values of first chart to the second chart...How should I achieve this in Xcelcius???

    You can do this using the Drill Down tab in the properties of the chart.
    Click on Chart goto Properties --> Drill Down --> (Check Box) Enable Drill down
    -Anil

  • How can we pass the select-option value to modulepool program?

    hi,
      how can we pass the select-option value to modulepool program ?
      Because if i declared select-options in executable program and i used SSCRFIELDS to define push buttons in selection screen.
               My requirement if enter the values to select-options and press UPDATE pussbotton then i want call screen which contains tablecontrol.
               How i get select-option values to PAI of call screen for getting the data from database table to my internal table?

    Oh I thought that you have selection-screen and again you are working on dialog programming.
    if you want to use select-option directly in module pool then it is not possible.
    but you can do other way.
    create two varaiables
    data : v_kun_low like kna1-kunnr,
             v_kun_high like kna1-kunnr.
    use these two variables in layout ,let user knows that he can not give options like gt,lt,eq ,it will be always BT.
    and also when you see normal report program,you can use multiple values in either low or high,but here it is not possibel.
    use can enter only low value and high value.
    when you come to program point of view
    declare one range
    ranges r_kunnr for kna1-kunnr.
    do the coding like
    r_kunnr-low = v_kun_low.
    r_kunnr-high = v_kun_high.
    r_kunnr-options = 'BT'.
    r_kunnr-sign = 'I'.
    append r_kunnr.
    now you can use r_kunnr in select query ,it will work like select-option.
    other than this there is no option.
    Thanks
    Seshu

  • Select Dynamic for Select Option

    Hi. Good Night.
    I have the following screen of selection for a user. I need create a Select Dynamic for the table ANLA, Having in count the values selected by the user in each option of the screen.
    SELECTION-SCREEN BEGIN OF BLOCK SEL WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS:
                   BUKRS     FOR ANLA-BUKRS,
                    ANLKL    FOR ANLA-ANLKL,
                    KOSTL    FOR ANLZ-KOSTL,
                    GDLGRP FOR ANLA-GDLGRP,
                    INVNR     FOR ANLA-INVNR.
    SELECTION-SCREEN END OF BLOCK SEL.
    How can do this?
    Thank in advance for your help.
    Regards.

    This is the error:
    Err.tmpo.ejec.         SAPSQL_WHERE_ILLEGAL_VALUE
    Excep.                 CX_SY_DYNAMIC_OSQL_SEMANTICS
    Fecha y hora           17.08.2010 10:05:08
    This is my source code.
    SELECTION-SCREEN BEGIN OF BLOCK SEL WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS: SOCIEDAD  FOR ANLA-BUKRS, "
                    CLASEAF   FOR ANLA-ANLKL, "
                    CENCOST   FOR ANLZ-KOSTL,"
                    CARRESP   FOR ANLA-GDLGRP,
                    NUMINV    FOR ANLA-INVNR.
    SELECTION-SCREEN END OF BLOCK SEL.
    DATA: l_lines(72) TYPE c.
    itab for fields selection
    DATA: lt_condition LIKE TABLE OF l_lines(72),
          lt_fields    LIKE TABLE OF l_lines(72).
    DEFINE m_add_fields.
      l_lines = &1.
      append l_lines to lt_fields.
    END-OF-DEFINITION.
    m_add_fields 'BUKRS'.
    m_add_fields 'ANLK'.
    m_add_fields 'GDLGRP'.
    m_add_fields 'INVNR'.
    *bukrs
    l_lines = 'BUKRS in SOCIEDAD'.
    APPEND l_lines TO lt_condition.
    ANLK
    l_lines = 'AND ANLK in CLASEAF'.
    APPEND l_lines TO lt_condition.
    Select statement
    SELECT INVNR ANLKL SERNR ANLN1 TXT50 AKTIV ZUGDT
           BSTDT LIFNR LIEFE ORD41 ORD42 ORD43 AIBN1
           AIBN2 VMGLI FLURN
    INTO TABLE it_tabla
    FROM ANLA
    WHERE (lt_condition).
    Thank in advance for your help.
    Regards

  • Passing Filter criteria parameters to drill-down reports

    Hi,
    I have a scenario, where my base report prompts a filter criteria for date range (from & to date) based on this criteria, I populate my base report with data's.
    Suppose if i have a drill-down, can i make use of the filter criteria value selected in the base report and pass the same value to my next-level drill-down report as criteria.
    Please let me know if this is possible. Also, let me know if there is any alternate approach available to achieve the same.
    My environment details are provided below.
    BAM (11.1.1.3)
    Report: Summary crosstab
    Any help would be greatly appreciated.
    Thanks & regards,
    DK

    Hi pypawar,
    Thanx for ur reply.
    We are not using heirarchical drilling in our case, we are using another report for drill-down.
    I will give some more background for this issue.
    We have a scenario where we used the date filter for getting the from and to dates based on which we display our Master report (cross-tab).
    Further, when drilling down from the master report to child report(which uses the same dataobject as master); we are not able to pass the dates input that were provided in master report as filter criteria.
    While assigning parameters in the drill-down for the child report, we are not able to find an option to pass the date value selected in the master report to child report for filter criteria.
    In an alternate approach, what we did to resolve the above issue was to pass the primary key fields of the data object while drill-down. But while passing primary keys, we realised there are cases where large number of values are getting passed as filter criteria to child reports and in some case it fails since there large number values getting passed as filter criteria.(in our case the chance of this value could be few 100's to 1000's). You can find details for this error in CACHEEXCEPTION during drill-down in BAM reports
    Please let me know if this is possible. Also, let me know if there is any alternate approach available to achieve the same.
    Any help would be greatly appreciated.
    Thanks & regards,
    DK

  • Passing Parameters from JSP with Drill Down Graphs

    Hello,
    I have 2 JSP's where when user clicks on the bar graph it drill down and goes to next JSP, it is hyperlink. How can I pass parameters using HttpPortletRendererUtil.portletParameter
    My JSP code is something like this which is pasted below.
    StandardCategoryURLGenerator("xy_chart.jsp","series","section")) is the function, I need to use for drill down.
    Kindly help me with this and any help is highly appreciable.
    Thanks
    ************ JSP**************
    CategoryAxis categoryAxis = new CategoryAxis("Site");
    ValueAxis valueAxis = new NumberAxis("Value");
    StackedBarRenderer3D rend = new StackedBarRenderer3D();
    StandardCategoryToolTipGenerator tt = new StandardCategoryToolTipGenerator();
    rend.setItemURLGenerator(new StandardCategoryURLGenerator("xy_chart.jsp","series","section"));

    Trenton,
    One way to pass parameters to other portlets on the page while using a form is to create a hidden form field and assign it the value that you need to pass to it. If the hidden field has an unqualified name (i.e. not created by using the portletParameter method) then it will be seen by all portlets on the page.
    Since all the form fields are passed on to the query string as part of the URL, you can then use request.getParameter(paramName) to take different actions in your portlets.
    You could use different techniques where based on the values you pass on to parameters of the portlets, some portlets make specific updates to themselves. Though the whole page would be refreshed, you could allow portlets to decide based on the incoming parameter value whether they need to change or not.
    So given the functionality you desire - here's something you might try.
    1) Create hidden form field that gets populated when you select values from the drop-down lookup.
    One way to do this would be to add a onChange ="populateMyHiddenParam(this.form)" to your form item that changes.
    And you could add a small JavaScript function that populates the parameter.
    e.g.
    function populateMyHiddenParam(thisForm){
    thisForm.myHiddenParam.value=thisForm.elements[4].value;
    2)In the other JSP portlet (on the same page) where you need to populate a table based on the value selected, just get the parameter value passed by using request.getParameter("myHiddenParam").
    Since you want this parameter to be read by other portlets, you need to create it as an unqualified parameter. So dont call the HTTPPortletRendererUtil.portletParameter while assigning the name to the form component for the hidden field.
    Hope this helps.

  • KCA0 - Convert Aspect for drill-down report in ECC6

    Hello experts,
    Do you know the steps to convert an aspect (for drill-down reports) from 3.0 to ECC6? And how to add it to the list in transaction KCR0 (Execute Drill-down report). SAP has mentioned transaction KCA0 for doing a conversion after the upgrade but I am not familiar with this transaction. Please help!
    Thanks and Best regards,
    Chuong

    Hi,
    You can use all the statements in HR also.
    For getting the AB values,there are macros and function modules available.
    Macros:
    rp-imp-c2-b2.
    You need to pass b2 key values before calling macro.For eg,
      MOVE pernr-pernr  TO b2-key-pernr.(since u r using LDB)
      MOVE year         TO b2-key-pabrj. (year you need to pass)
      MOVE period       TO b2-key-pabrp. (month)
      MOVE '1'          TO b2-key-cltyp.
    have a look at these Function Modules also.
    HR_WORK_SCHEDULE_TIMES
    HR_TIME_RESULTS_GET
    HR_TIME_RESULTS_IN_INTERVAL
    HR_WORK_SCHEDULE_TIMES
    Reward points if helpful.
    Regards,
    Manoj.

  • Prompt for drill down result

    All,
    I have a report like showing ProjectName, ManagerName. When I click any ProjectName it should drill to show the Project name, ManagerName , Project members name and other details . My requirement is provide a prompt for ProjectName and the Project Members Name. I have done to provide a prompt for ProjectName, but i cannot do the same for ProjectMembers prompt in drilldowned page. Can anyone help me on this

    Drill-down doesn't work like that, In other words, you can't put a prompt on a drill-down page because the "drilldown" is generated by obi based on the value selected in the parent report and the way the hierarchy was set up in the rpd.
    If you really want to have a destination page with prompts for the members, use Navigation from Value Interaction instead of drill. Then you can Navigate to another dashboard that contains both the prompt for the members and the detail report (on the destination page).

  • Set headers for drill-down reports.

    Hi!!!
    The problem we have by now is when printing a report, selected characteristis are showed in header as "multiple values" instead of showing the real values that user have choose.
    Does anybody knows how to set headers for drill-down reports in order to see selected characteristics?
    Thanks in advance...
    Adela Cambiasso.

    Sorry, me again...
    I have found yet they way to show in the header the report parameters, I mean, the selection criterias that user used when execute the report... I was able to show selected characteristics inside de report but not the selection criteria...
    Do you know what I have lost? or what to use for this?
    Thanks again.
    Adela.

  • Passing Mulitiple Parameters in a Drill Down Report

    Hi,
    I can pass single parameter in a Drill Down Report..
    But i cant passes more then one parameter at same time,,
    Example.
    First I tried Dates passes to another Report its work
    srw.run_report('report=D:\REPORTS\LIST_OF_DISBRUSTMENTS destype=screen paramform=yes
    SDATE='||TO_DATE(:SDATE)||'');
    Now I want SDATE with 2 other parameters that are
    Acct_MGR and EDATE...how can i use them in Drill Down Report..
    I tried as Much I can but Parameter hasnt pass properly.

    did you try using + sign, e.g.
    .....+Acct_MGR=:acmgr+EDATE=:enddate

  • Dynamic EVDRE, Drill Down insserting and a formula

    Hi,
    I need your help.
    I need to do a dynamic EVDRE report, where the customer can see the details of the accounts (Drill Down option: expand by inserting news accounts), and between the dynamic rows I have rows with formulas.
    I've got this RangeOption:
    PageKeyRange     Sheet1!$I$3:$I$13
    ColKeyRange     Sheet1!$H$15:$I$16
    RowKeyRange     Sheet1!$F$19:$F$24;Sheet1!$F$26:$F$37
    The ExpansionOption:
    ExpandIn     COL     COL     ROW
    Dimension     TIME     CATEGORY     ACCOUNT
    MemberSet     SELF     SELF     LDEP(1,A_111),A_111,A_112,A_113|DEP(A_114),A_114     
    In the rows represented by pipes (' | ')     I've got a formula like this: =R1/R2 (R1,R2 are references to the fields)
    All this is ok when I do this:
    - I expand the report
    - I do doble click in a field to see the detail account
    - I do doble click in the same field to hide the detail account
    - I expand again the report
    This dont work if I do this:
    - I expand the report
    - I do doble click in a field to see the detail account
    - I expand again the report... I loose the reference to the fields!!
    Some idea about what can I do??
    Thanks
    BR.
    Edited by: nmartin on Oct 11, 2011 6:24 PM

    I checked than the problem was because I loose the expansion.

  • INVALID_VARIABLE_VALUES error for drill down/up

    Hello ,
    I have created a VC model corresponding to a BI query. The query has 3 variables of which one is mandatory the value for which i am hardcoding.In the output table we have a heirarchy variable for
    which I wish to use the drill up and drill down features.But after applying these features, and running
    the application ,on clicking the drill down/up buttons i get the following error
    Nested Exception. Failure to execute native function. Nested Exception. INVALID_VARIABLE_VALUES
    The variable format seems to be fine as I have tried it from the BI side and it also generates the output in the VC output table.Following is the webapi used for drill down .
    'FILTER_IOBJNM=YGL_ACCNT;FILTER_NODE_IOBJNM=0HIER_NODE;FILTER_VALUE='&#ID[ACC40T]@G_L_Account&';FILTER_COLLAPSE= ;FILTER_IOBJNM=YGL_ACCNT;CMD_1=CMD%3DDRILL_TO_LEVEL%26LEVEL%3D2%26IOBJNM%3DYGL_ACCNT%26DATA_PROVIDER%3DDP;'
    Any help would be most appreciated.
    BI 7.0,VC 7.0
    PS: have already gone through the wiki link for this error
    Thank You
    Rgds

    Vineeth,
    Please see my comments below:
    1)The complete web api command is in the above thread, the mandatory variable is the fiscal year.
    I don't see where you have defined the fiscal year in the web API command below:
    'FILTER_IOBJNM=YGL_ACCNT;FILTER_NODE_IOBJNM=0HIER_NODE;FILTER_VALUE='&#IDACC40T@G_L_Account&';
    FILTER_COLLAPSE= ;FILTER_IOBJNM=YGL_ACCNT;
    CMD_1=CMD%3DDRILL_TO_LEVEL%26LEVEL%3D2%26IOBJNM%3DYGL_ACCNT%26DATA_PROVIDER%3DDP;'
    2)am not too sure about your question.
    Is the hierarchy for YGL_ACCNT defined as a text hierarchy or characteristic hierarchy?  If it is a characteristic hierarchy, you should specifiy the parameter FILTER_NODE_IOBJNM=YGL_ACCNT instead of FILTER_NODE_IOBJNM=0HIER_NODE.
    3)the command is as intended as per the sap documentation
    If you are following the SAP documentation, the first occurrence of FILTER_IOBJNM=YGL_ACCNT should be removed as it is already defined after the FILTER_COLLAPSE parameter.
    Regards,
    Mustafa.

  • Drill Down chart using a selector

    Hi ,
    Is it possible to use the drill down option  with a selector? I have figured out dirll down and it's quite simple but I can't seem to get it to work when a selector is in use
    Here is my requirement
    At the top layer  it should show the region  data  when I click on any one region it should provide me the Bar chart (drill down chart)without Industries data in that particular region
    and also I have 2 filters as selector
    one filter is labeled as  forecast  and contains the values Current  , Past  & the other should be the Year contains the values 2007, 2008, 2009
    I have a  Region Pie chart which should default show the values Forecast = All  and Year = All
    if I select the values from the forecast = Current & select the values from year = 2006 the pie chart should display the values according to the selection and even the bar chart(drill down chart) should display the values according to the selection
    Please any one let me know how can I do this

    Sirisha,
    Emailed you the xlf file as per your requirement...
    Sirisha's Requirement:
    Ultimately what we want is to have a selector (combo box) which will have the choices: person A, person B and person C. Then when a person is chosen, say person A, a pie chart will display amounts for info X, Y and Z that pertain to person A. Likewise, if we chose person B with the selector (combo box), the chart would change to the corresponding info X,Y and Z for person B. Once we have a particular person's data up we would like to then drill down on a slice of the X,Y,Z pie and display the subcategories of information on a neighboring column chart. So, we have person A up, we then see their pie of X,Y and Z, now we click on the Z slice and we would like to see a chart with the detailed info for Z: Zsub1, Zsub2 and Zsub3.
    -Anil

  • Drill down charts using javascript:$s fails in IE

    Hello,
    I am working on a drill down chart for a dashboard, where the chart needs to be repainted without page reload and hence have used javascript:$s in the query for setting an attribute to be passed to the subsequent chart.
    Query is as follows:
    select 'javascript:$s("APPFAM","'||d.short_name||'")' LINK, short_name,
    sumapps from MVIEW_FYEAR_TODATE_TOTALS
    Drill down works fine and the attribute is set as required in Firefox. The same query fails in IE 9 in my machine with the error "Internet Explorer has stopped working - Close the program" error. This query works fine in another machine on IE 9. Are there some browser settings that is hindering the javascript execution, because if i replace the 'javascript:$s("APPFAM","'||d.short_name||'")' with javascript:alert("hello") it still fails. I have tried setting/ resetting the javascript Internet options but it still throws the same error.
    Thanks in advance for your help.

    Hi,
    You can't - that SP2 was for XI R2
    if you are on XI 3.1 , then you patching options today are SP3 FP3.7  or  SP4 FP4.1 i believe
    Regards,
    H

Maybe you are looking for

  • YouTube and embedding html

    OK..very new to Dreamweaver, but ok with the old go live.. here's my question...I need to embed a youtube movie. easy enough, just place the code in the code area. However, I need it to be in a specific place and it needs to go partially over a porti

  • Oracle database 32-bit or 64-bit

    Hi, I want to install Oracle server 9.2 on a Xeon EM64T processor based machine. Could anyone tell me which version of Oracle 9.2 I need : 32-bit or 64-bit ? Thanks a lot Christian Moungou

  • Synchronize Ipad & Mac Ical without Icloud

    How could I synchronize Ipad & Mac Ical without ICloud? Mac Ical duplicates in Ipad Ical while Ipad Ical is not updated in Mac Ical ...

  • Invalid export DLL or export format

    I have created a code to export the report to excel and it works.. but when i use the export property of the crystal report viewer, all file format works except for the excel format and I am receiving this kind of message whenever I tried using expor

  • Low level format for a HDD MK6026GAX

    Hello I'm searching the software to do a low level format on my HDD toshiba MK6026GAX of 60Go. Is there someone to help me and tell me where I can find it please? P.S:I'm not a good english speaker, so don't be too technical! thx