Drill Down Relation in Select Statement...

Hi Team,
I Have a two select statement, based on selection in first select statement the second statement should be filled up. ( I dont want My page to hit database again to fill my second select statement which is on same page)
some how i could populate it by using div tag and innerHTML.... but at the end of page i want to alert user on their selection.... bu here i am not able get those two selected values....
any help would be greatful.....
Regards,
Jagadeesh

instead of using the div tag try to use xml, and build the next query by parsing the xml....

Similar Messages

  • Drill Down for Map reports

    Hi All,
    I have a requirement in which i need a create a sales map report across all the states in NA.
    i have created a main map report using the default map gallery and displayed all the sales figures across all the states in NA. Now i want to show the City level sales when i click on a particular state.  The state on which i am going to click
    should enlarge (or) it should redirect to other report having the particular statemap with city related values on it.
    How can i do it please help..!
    Do i need to download all the local statemaps and how do i store those maps in SQL server DB. Please explain in detail.
    Thnaks in Advance..!
    Regards,
    Balaji Prasad B
    Balaji - BI Developer

    Hi Balaji Prasad,
    According to your description, you create a state level map. When clicking on a particular state on the map, you want to display corresponding city level map.
    In this scenario, we should import state and city level shapefiles into the database, then create maps with these spatial data. After that, we should click on the state map and select Polygon Properties to create a drill down report and specify state as
    parameter to run the city map. For detail information, please refer to this article:
    Drill down in SSRS Map Reports.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • Why report is always select statement...

    hi guys,
    when we are dragging the columns from Business Area or in any reporting tool, and when we see the SQL, why it gives always select query.
    this question is raised by one of my manager having 15+ years of experience in Oracle Apps.
    Any suggestions?

    Ok, if I understand it, he wants to know why any query tool uses SQL (ie: select) to display the data.
    And the answer is actually really simple - it's the only way to get data from an Oracle database.
    That's it ... there's absolutely, positively no other way of getting data back from an Oracle (ie: relational) database.
    It doesn't matter if you use Discoverer, Cognos, Brio, Business Objects, Microsoft products via ODBC, etc., everything boils down to a SELECT statement eventually.
    So in Discoverer, the workbook / worksheets that you create keep information about the 'presentation' of that data - ie: colors, fonts, titles, graphs, etc. but the retrieval of data will always be in SQL - and as it sounds like you noticed - you can view the SQL in Discoverer if you desire.
    Look at it this way - in Discoverer you're saying "go get me AP_Invoice information, where I want the invoice number, the invoice date, the invoice amount, the vendor name, the vendor number, etc. ... and I want the total of the invoice amount when I enter a date range".
    That's the coding in Discoverer. The minute you invoke that code - ie: run the worksheet - badda' bing ... badda' boom ... it initiates a SQL command to the Discoverer database tables (via a folder in the EUL) probably something like: select invoice_number, invoice_date, invoice_amount, vendor_name, vendor_number from ap_invoices where invoice_date between '01-JAN-2008' and '03-JAN-2008'.
    The Oracle database comes back with the data, dumps it into Discoverer and Discoverer does all the fancy layouts, colors and totals ... and everyone's happy.
    So again, the only way to communicate with an Oracle database using ANY TOOL is via SQL (and the SELECT statement is the fundamental way of retrieving data). And for the Oracle Apps guy you mentioned, that includes all the Oracle Apps Forms (screens), Oracle Apps reports, changing user passwords, the concurrent manager ... etc.
    It's a SQL Select world when it comes to Oracle!
    Russ

  • URGENT!! Drill Down Error with Character Set non-ascii on Discoverer Viewer

    Hi,
    We have an error in a Drill down. It comes up when the Discoverer Viewer tries to process data that contains special character (non-ascii) in a query's filter. The same report that does not perform well with special characters, does perform well if the data don’t contains special characters, so it seems to be an issue processing non-ascii chars in this Discoverer Viewer instance.
    Ex. FIELD_NAME = 'öÜæäé (This filter is contained in a query that this getting an error msg="We're sorry, the server encountered an unexpected condition" ).
    It might be possible that there are some problems with the Discoverer charset ?
    We will appreciate any suggestion about this respect.
    Regrads,
    Seba.

    Sure,
    This is the hole sql command that get an error in a drill down action process
    SELECT NVL (sf_dw_people_skills.major_name, 'No Major'),
    sf_dw_people_skills.minor_name, sf_dw_people_skills.skill_name,
    sf_dw_people_skills.skill_level,
    sf_dw_people_all_rel_v.supervisor_name,
    sf_dw_people_all_rel_v.person_name, sf_dw_people_all_rel_v.LOCATION,
    sf_dw_people_all_rel_v.supervisor_dir_name, COUNT (1)
    FROM olnreport2.sf_dw_people_all_rel sf_dw_people_all_rel,
    olnreport2.sf_dw_people_skills sf_dw_people_skills,
    olnreport2.sf_dw_people_all_rel_v sf_dw_people_all_rel_v,
    olnreport2.sf_dw_competences_rel sf_dw_competences_rel
    WHERE ( (sf_dw_people_all_rel.person_id = sf_dw_people_skills.person_id
    AND (sf_dw_people_all_rel_v.person_id =
    sf_dw_people_skills.person_id
    AND (sf_dw_competences_rel.skill_id = sf_dw_people_skills.skill_id
    AND (sf_dw_people_all_rel_v.supervisor_id =
    sf_dw_people_all_rel.supervisor_id
    AND (sf_dw_people_all_rel_v.supervisor_name = 'Kunz, Jürgen Mr') /*When I replace the charset 'ü' by u, it´s work ok*/
    AND (sf_dw_people_skills.minor_name = 'HRMS')
    AND (sf_dw_people_skills.skill_name = 'HR Intelligence')
    AND ( sf_dw_competences_rel.competence_type = :"competence_type"
    AND sf_dw_competences_rel.competence_id IN ((:"competence_id"))
    AND (sf_dw_people_all_rel.supervisor_id IN ((:"Manager")))
    AND ((( :"resource_manager" <> -1
    AND olnreport2.do_val_person_job_prod
    ('RESOURCE_MANAGER_VIEW',
    sf_dw_people_skills.person_id,
    sf_dw_people_skills.job_code,
    sf_dw_people_skills.product_code,
    :"resource_manager"
    ) = 'Y'
    OR :"resource_manager" = -1
    GROUP BY NVL (sf_dw_people_skills.major_name, 'No Major'),
    sf_dw_people_skills.minor_name,
    sf_dw_people_skills.skill_name,
    sf_dw_people_skills.skill_level,
    sf_dw_people_all_rel_v.supervisor_name,
    sf_dw_people_all_rel_v.person_name,
    sf_dw_people_all_rel_v.LOCATION,
    sf_dw_people_all_rel_v.supervisor_dir_name;
    Regards,
    Seba.

  • Total Label in Drill down reports

    This is a simple case scenario. I created one drill down report by Country --> State --> City and set this object as section. It has revenue Column in it. Now I did Summation on the Revenue column and it shows like this
    USA  -- (Section)
    Column1, Column2
    XXX, 3  
    Sum, 3
    Now instead of Sum, I would like the label to replace it with country name and when I drill down to second level, it should replace it with the State name and again on level 3 replace it with City name.
    Could anyone help me on achieving this. Is it doable? I have been trying to achieve this but had no success.
    Thanks for your help in advance.
    Rids

    Yes, It can be achieved with the help of the DrillFilters() function.
    You can build the logic using if-else condition. Here is the one for you:
    =If(Drillfilters([City])<>"") Then [City] Else If(Drillfilters([State])<>"") Then [State] Else If(Drillfilters([Country])<>"")
    Then [Country]
    Regards,
    Rohit

  • Drill down mapping in Combo chart in BAM 11g

    Is it possible to enable drill down for both the report in combo chart?That means i have a combo chart of zone wise distribution of total price as bar chart and zone wise distribution of total quote as line chart.If i click on bar chart and line chart it will open another report.

    Hi Anish,
    There is "Series Names Destination:" parameter on Drill-Down (Insertion) Tab of Bubble chart component. By using that parameter you can retrieve selected serie. Via that value you can extract selected serie's selected value and drill down to required selection via some excel formulas like index-match or vlookup-hlookup. I hope that solves your issue.
    Regards,
    Ahmet

  • Macro for same level of Drill down - Data in different grids

    Dear Team
    We have two characateristics of product - Product Line & Parent product Line.
    I have created a planning book with two girds -
    What I want is, in the first grid -
    The Revised plan for the PL (Product Line) = Forecast Share of PL  * Planned Production of the PPL (Parent product pine).
    The Planned Production production of all PPLs together (Sum) is available in second gird. But how do I write a macro to fetch Planned production of each PPL (From second grid) and write a macro to calculate the logic in first grid?
    E.g. in Above screen, the Planned Production of 60 is total Planned production of two PPLs (Indica =10 & Indigo = 50).
    So If I want to achieve to calculate revised plan for Indica V2 & Indica Vista which has share of 40 & 60 % resp, in order to calculate the revised plan as 40% of 10 & 60% of 10 , how do I write a Macro to drill down second grid and fetch value of 10 for PPL = Indica?

    Hi Anish,
    There is "Series Names Destination:" parameter on Drill-Down (Insertion) Tab of Bubble chart component. By using that parameter you can retrieve selected serie. Via that value you can extract selected serie's selected value and drill down to required selection via some excel formulas like index-match or vlookup-hlookup. I hope that solves your issue.
    Regards,
    Ahmet

  • Drill down in Column Chart Xcelsius 2008 FP2

    I've tried every which way I know to get the drill down on a column chart to insert "row" values (I've tried all types of Insertion Types) and it is not working as expected.  Can somebody try this in 2008 FP2 and see if they can get it to work?
    Thanks,
    Deb

    Hi,
    it is working for me too, Please follow the following Steps hope will work for you too.
    --> Place a Column Chart and Select The Range of Values in the General Tab.
    --> Now Click on the Very Next Right Side tab Drill Down.
    --> Check Enable Drill Down Check Box
    --> Select the Insertion Type from the Drop Down Menu Like you Need the Value or Position.
    --> Select Series and in the Destination Please Select your Cell where you want to Past the That Value.
    --> Now to Display your Value Place a Control "Value" or any other where you want to See the Value.
    --> and Set the Data Cell of that Control to the Above select Cell.
    --> Take a Preview and click on the Column it will show you value in that Control.
    Hope will solve out your problem,
    Please Replay if any Issue,
    Kind Regards,
    Faisal

  • Unable to utilize Drill-Down for all Filtered Dates in Xcelsius Engage 2008

    Iu2019m very new to the Xcelsius Engage 2008 product and donu2019t understand what is needed to correct the drill-down problem encountered in a newly created dashboard. 
    The issue is with Drill-Down from a filtered chart.  For some reason, I am unable to correctly pick any data item from the chart located top of workspace to drill-down to the lower chart when selecting a month beyond Jan u201911.  
    Iu2019ve unhidden the Label Based Menu, List Box 1 and List Box 2 during attempt to find out why I am unable to drill-down when I select a month other than Jan u201911.  As youu2019ll see, when you u2018manuallyu2019 click in the unhidden List Box 2, the bottom chart is displaying the correct data.
    Also - new to post for this forum - is there a way to attached the XLF to help with visual support to the problem?
    Thank you,
    Deborah

    Hi there and welcome.
    First troubleshooting step is to add a spreadsheet component to your canvas so you can watch what's happening. Second, have a look at this step-by-step to make sure you're not missing any steps. http://blog.davidg.com.au/2011/04/xcelsius-interactivity-chart-drill-down.html
    Can you select only Jan '11? Or only up to Jan '11? Are you selecting whole months or days?
    Assuming that your second chart is filtering for this date, I would check that the formatting is correct. Try, for example, removing all formatting so that you're seeing 40668 instead of a date. Does that work?
    Also, it can be helpful to post your version number. This can be found under Help > About Xcelsius and will something like 5.3.5.0

  • Drill Down - Total is editable

    Hi,
    In the DP, I am using the DET_LEVEL() to check if there is a drill down for particular infoobjects, e.g., 'Customer' and 'Product' then only the Key figure should be editable. The macro is set under 'Default' option (best I could find)
    It works fine when
    start the SDP94 (the KF is uneditable)
    (a) Drill down down  with 'Total' option, 'Total' is uneditable
    (b) Drill down level changed to Detail(All), 'Total' is uneditable and for Individual Infoobjects it is editable.
    (c) Then, Drill down changed to select one 'Infoobject' say 'Pepsi' and for that 'Infoobject' the KF fields are editable (As expected)
    (d) But when changed the drill down back to Details as in (b) , the 'Total' is editabel along with all individual details (Not desired).
    ====
    ROW: KF(Attribute) = ROW_INPUT(0)
    IF
    DET_LEVEL(infoobject) =1
    ROW: KF(Attribute) = ROW_INPUT(&)
    ====
    Issue is whether KF is for individuals infoobjects or 'Total'.
    so I cannot put a check;
    How can I get a control on 'Total' as well as individuals ?
    Couldn't fix the problem. Anyone have any idea from their experience ?
    TIA,
    Arunesh
    Edited by: Arunesh Chakrapani on Feb 7, 2008 12:21 PM
    Edited by: Arunesh Chakrapani on Feb 7, 2008 3:43 PM

    No, I am not using the parameter 'X'. To my understanding this is not the case of implicitly strong characteristic.
    The problem is visible when I switch between different view during drilling, namely,
    Total>Details(All)>Individuals(say 'Customer') level --> Details(All) again.
    While in all cases the Total is uneditable, once I drill down to detailed level and come back, the Total becomes editable along with individual.
    Now, to rephrase my question more precisely,
    how to control/differentiate the Key Figure values at ‘Total’ and Individual Info object (Charc or Attribute) during drill down. Total is not a key figure so it does not allow to control its value while writing the macro.
    Please do let me know if there is any doubt.
    Thanks,
    Arunesh
    Edited by: Arunesh Chakrapani on Feb 7, 2008 9:47 PM

  • Issues with multilevel pie chart drill down with push button

    I am new to Xcelsius. I am trying to build a multilevel pie chart drill down (one pie chart drilling down to another etc) and I am able to achieve that. Now I want to add a Back Button using Push Button so that I can go up.  When I preview, the Push Button goes into two state and I have to double click to go back.  Can anyone tell me what I am doing wrong. I am using the latest Xcelsius. [The source code is here|http://www.woofiles.com/dl-195360-3lTyVM8Z-piechartdrilldownwithpushbutton.xlf]
    Thankyou.

    Hi Murali
    This is exactly the same what i tried to do,
    Drill down to 4 levels State -> City-> store etc with 4 pie charts and similar push button to close each level to
    go back to previous chart, first run from 1 to 4 works fine, then after closing all the levels and when i am at the pie chart 1
    if i click any pie slice it will jump to Pie chart 4 straight,
    I tried tracking the issue, all i could find is some how the previous dynamic visibility values are back even after erasing
    the data with the PUSH button (Destination cell insertion with blank or 0).
    did you find a solution for this issue ?
    Thanks
    Chandra

  • Drill down issue in bubble chart

    Hi all,
    I have 2 series, which showing project wise value . I want to see details info about that particular project. Problem is that when i map source and destination in drill down for 2 different series.It will not allow to map source data to same destination for 2 series .Because of that drill down not working properly.
    Pls suggest me how to solve that problem.
    Regards,
    Anish

    Hi Anish,
    There is "Series Names Destination:" parameter on Drill-Down (Insertion) Tab of Bubble chart component. By using that parameter you can retrieve selected serie. Via that value you can extract selected serie's selected value and drill down to required selection via some excel formulas like index-match or vlookup-hlookup. I hope that solves your issue.
    Regards,
    Ahmet

  • Report Painter - cannot hide an element selected for the drill-down report

    Dear Experts
    I am using report painter to modify a report by trying to hide a row but getting the following error.
    You cannot hide an element that you selected for the drill-down list
    Message no. K7186
    Diagnosis
    You cannot hide elements that have already been selected for the drill-d
    System Response
    The function was canceled.
    Procedure
    Deselect the relevant row or column from the drill-down list.
    It says to deselect the relevant row from the drill-down list, but not able to find out how do i do it.
    kindly please help me to solve it
    thanks in advance
    Suresh

    Hi,
    If you are asking me whether i am trying to hide the row in the report painter form or in the output of the report, then, yes i am trying it in the report painter.
    I copied this standard form  '0SAPRATIO-01' for Cash Flow statements-Indirect method(tcode FSI5) and trying to modify the copied one. I tried to hide an existing row but it gave me the above message.
    any help?
    Suresh
    Edited by: rasuresh on Aug 10, 2010 12:44 PM

  • Drill-Down Report Printing Problem for Selection Parameters

    Dear Experts,
    Have tried to configure Drill-Down Report for Vendor Balances,
    Am having trouble when printing this drill-down report, Printing is coming OK but it comes with ALL selection parameters, for e.g, have entered 20 vendor codes for the balance display, system first prints all selection parameters and then it prints the output of vendor balances,
    User does not want selection Parameters to be printed with the Report Output. Please find below screenshot for the problem.
    Input Parameter Screen
    Report Output Screen
    Print Preview Screen (First Page - Selection Parameters)
    Your help is much appreciated, if anyone can guide me, how to switch off selection parameters from Print Output of Drill-Down Report
    Thanks
    Regards
    P

    Hello Ms. Preeti,
    Thanks for your reply, Have designed the report through FKI0 (FKI*)
    Have already looked these setting, but these are not helping really, PFB screenshot for settings am having in my system, if you have any idea which can avoid User Input Parameters from printing then it will be really great help
    Thanks for your help
    Kind Regards
    P

  • KSB1 - Incorrect line item selected on drill down

    Dear Guru's
    To set the scene we have been using KSB1 for a long time.  Now something odd is occuring - but what appears to be quite randomly.
    When we run a standard KSB1 report and drill down to line item detail we are getting the wrong (and completely unassociated) detail.
    We have not seen this happen before and wondered what could be causing it.
    We are running KSB1 using parameters for Cost Centre, Cost Element (range) and Posting Date (range)
    We are also using a plain layout variant.
    If anyone else has seen this before advice would be appreciated.
    Regards
    Steve
    points will be assigned

    Nitish,
    We run KSB1 to show us how much has been spent by a certain cost centre during the financial period.  We would then usually double click on a certain line that appears high or overspent to see the detailed transaction.  In almost all circumstances you see the accounting document (eg: SA, KR etc)
    But for some reason (and for a small percentage of items) when you double click you do not get shown the correct accounting document.
    On these items when you double click to see more detail you get presented with an accounting document that does not match the original screen.  In some instances you get an accounting document that is several years old and for a completely different GL account and cost centre -eg: bearing no relation to you original query.
    It's almost like the link to the correct accounting document is broken?
    I could screen dump what it happening but as a newbie I don't know if this is allowed or would work on here.
    Regards.
    Steve

Maybe you are looking for