Ecelsius data from QAAWS do not fit right format to project a bar chart.

Hello team,
Need some help in formating Xcelsius data from Qaaws link.
Here is what i have:
I imported data in to Xcelsius using QAAWS link.
What i need to do is to project a bar chart with filters. 'i.e' chart should be projected based on the filter output.
The problem is that when i pick the data through filters it selects just one row.
But i need multiple rows, 'i.e'  for every year.  (as i'm projecting Yearly data. Vs HeadCount)
Excel file has got 4 columns, Project name, Role Name, Year, Head Count.
Filters are based on project type and Role type.
'i.e'  when i select project name and role name using filters : i want the filters to pick the matching data in excel (Headcount) for every year, however it picks for just one single year.
Sample Excel data:
TeamName     RoleName     CalendarYear     HeadCount
engg                ModDel            2007                15
ProjOff             CV                  2007                 22
SCM                 CV                  2008                 42
site                   CV                  2008                 31
ProjOff             HP                   2008                 22  
PCM                  MM                  2009                 46
Sore                 ZP                   2009                 22
Engg                 CV                  2010                 19
ProjOff             CV                  2010                 26
Any Ideas to develop this formatting would be greatly appreciated.
Thank you.

Anil, 
Thank you for a quick reply.
After i tried the combo box instead a filter i got multiple rows picked up, but how will it work for more than one combo box.?
I actually need 2 to 3 filters or combo boxes here, which can pick the data from Xcelsisus and output multiple rows on those filtered conditions, (just like filters, matching rows of input but output multiple rows )
'i.e' Combo boxes are displaying output separately ('i.e' both combo boxes are not in sync) unlike filters 
Any ideas on this issue, Let me know if i do not make myself clear here.
Appreciate your help.
Regards
Ravi

Similar Messages

  • Need to convert  Date from calendar to String in the format dd-mom-yyyy

    Need to convert Date from calendar to String in the format dd-mom-yyyy+..
    This is absolutely necessary... any help plz..
    Rgds
    Arwinder

    Look up the SimpleDateFormat class: http://java.sun.com/j2se/1.4.2/docs/api/java/text/SimpleDateFormat.html
    Arwinder wrote:
    This is absolutely necessary... any help plz..For you maybe, not others. Please refrain from trying to urge others to answer your queries. They'll do it at their own pace ( if at all ).
    People on the forum help others voluntarily, it's not their job.
    Help them help you.
    Learn how to ask questions first: http://faq.javaranch.com/java/HowToAskQuestionsOnJavaRanch
    (Yes I know it's on JavaRanch but I think it applies everywhere)
    ----------------------------------------------------------------

  • Not the right format?

    I put a memory card from my Bushnell trail camera into my computer and some, but not all, the videos tell me it is not the right format. It worked fine for months before now. To day the first video and everything past number 6 give me this message, but videos 2-5 work fine. I upgraded quicktime and have no idea what else to do.

    When you scan them set it so that they are formatted jpeg which is for photos.
    PDF is for printed documents not photos.
    Allan

  • ABAP program to output data from SAP table to an XML format file?

    hello ABAP experts,
    Does anyone know how to output data from SAP table to an XML format file?  Would be appreciated if someone show the detailed sample codes and we will give you reward points!
    Thanks!

    Edited by: Jose Hugo De la cruz on Aug 19, 2009 8:23 PM

  • Error When creating Broadcastings "Portal theme does not fit output format"

    Hi All,
    When i create a Broadcasting Settings i am getting an Error saying "Portal theme does not fit output format", and below is the detailed that we are getting,
    "Diagnosis
    You used separate portal themes to generate PDF or print formats (PS or PCL). The output format that you selected is not appropriate for the portal theme currently set.
    System Response
    The broadcast setting is not consistent and you cannot save or execute it.
    Procedure
    Change the output format or the portal theme correspondingly. (The portal theme is set to the first valid value for the current output format when you display the corresponding tab page).
    Procedure for System Administration
      Notification Number RSRD 640"
    Can anyone help how to resolve this issue?
    Regards,
    Muruganand.K

    Would you have chance to provide me the sollution...
    We are facing the exactly the same error message
    Thanks a lot in advance
    Regards
    Ivan

  • XCelsius Missing Data from QaaWS

    Hi Guys,
    I created a dashboard to show four charts and in the top I added a Combobox, the data for these charts come from QaaWS and I am not using any calculation and excel function.
    The Combobox show Financial Years and if the user change the Financial Year the chart changed also.
    Four columns (Year, Month, Value1 and Value2) are returned from QaaWS for each chart and returning up to 12 rows.
    But when the user choose a Financial Year the charts  sometimes show and does not show the information, the problem does not happen always with the same Financial Year.
    In my test I exported the Current Excel Data (File -> Snapshot -> Current Excel Data) to see how looks like the data on spreadsheet and I saw the columns Year and Month filled with information and the columns Value1 and Value2 empty.
    To see if the problem was on QaaWS side and installed a HTTP Debugging Proxy (Fiddler) and I saw the data come correct from  QaaWS, but for some reason is not saving all the data on the spreadsheet.
    I am using XCELSIUS 2008 Enterprise 5.3.4.0 build number 12,3,4,1038
    Do you have any idea why this is happening?

    Hi Sergio,
    A couple of troubleshooting steps: add a loading status to a cell and have that display on the canvas with a text or grid component. For the instances where the query returns incorrect data, is the query taking the same amount of time or less?
    Also, how are you triggering the query to run? Do you have a connection button or are you triggering on a cell change?
    If you have a trigger cell, try turning that off and using a connection button instead. Does the issue still occur?
    If it seems that this is the problem, check that the property of the selector is to insert data on interaction only, not interaction or data change.
    DG

  • Loading Textual Data from HttpService Would Not Show Up on TextArea

    Hi,
      I have something fairly strange here that I have a little problem getting it to work. I am loading some data from XML and attempt to format it a little more on Actiosncript and print it out on the TextArea. For some reason, it would not show up, even though when I used Alert.show it does spit out the entire xml data set. Based on this, I know my data has been loaded correctly, but I am not sure why it is not showing up on my page.
    Here is the code,
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
        <mx:states>   
            <mx:State name="view">
              <mx:RemoveChild target="{intro}"/>
                <mx:AddChild relativeTo="{applicationcontrolbar1}" position="before">
                    <mx:TextArea editable="false" id="viewText" width="450" height="279" text="{messageInfo}"/>
                </mx:AddChild>
            </mx:State>
        </mx:states>
        <mx:Script>
            <![CDATA[
                import mx.events.ItemClickEvent;
                import mx.controls.Alert;
                import mx.rpc.events.ResultEvent;
                import mx.rpc.events.FaultEvent;
                [Bindable]private var message:XMLList;
                [Bindable]private var messageInfo:XMLList;
                private var savedIndex:int = 99999;
       private function clickHandler(event:ItemClickEvent):void {
                    if (event.index == savedIndex) {
                        //don't do a thing
                    else {
                        savedIndex = event.index;
                          navigateToURL(new URLRequest("../"+ event.item.data));
                private function toggleButtonBar_itemClick(evt:ItemClickEvent):void {
                    currentState = evt.item.data;
                    if(evt.item.data == "view") view();
               private function view():void{
                  currentState="view";
                  userView.send();          
               private function httpService_fault(evt:FaultEvent):void {
                    var title:String = evt.type + " (" + evt.fault.faultCode + ")";
                    var text:String = evt.fault.faultString;
                    Alert.show("There is an error! Type " + title + " " + text);
               private function httpService_result(evt:ResultEvent):void {
                    messageInfo = XML(evt.result).messages.message;
                    Alert.show(messageInfo);
                    message = XML(evt.result);
                    var message_name:String = "";
                    var message_phone:String = "";
        for each (var message:XML in messageInfo.messages.message) { 
              viewText.text += "Name " + messageInfo.name + "\n";
              viewText.text += "Phone " + messageInfo.phone + "\n";               
            ]]>
        </mx:Script>
    <mx:HTTPService id="userView" url="messages.xml" resultFormat="e4x"
      fault="httpService_fault(event);" result="httpService_result(event)" />
    <mx:PhoneNumberValidator id="pnVal" source="{your_phone}" property="text"/>
    <mx:EmailValidator id="emailVal" source="{your_email}" property="text"/>
        <mx:Array id="dp">
            <mx:Object data="view" label="View"/>
        </mx:Array>
        <mx:Panel id="panel" title="My Home" height="70%">            
        <mx:TextArea id="intro" width="77%" height="100" borderStyle="none" paddingLeft="10" color="black">
                <mx:htmlText><![CDATA[Welcome to my page.]]></mx:htmlText>
            </mx:TextArea>
             <mx:ApplicationControlBar id="applicationcontrolbar1">
            <mx:ToggleButtonBar id="toggleButtonBar" color="#FFFFCC"
                    dataProvider="{dp}"
                    itemClick="toggleButtonBar_itemClick(event);" />
        </mx:ApplicationControlBar>           
        </mx:Panel> 
    </mx:Application>
    Note, there are other items in the array, but those are not relevant to the question of the topic here, and therefore I am not posting the code for those sections.
    When I click on the View button, it does give me the correct state, but I get a blank box of textArea with no data when I know there is output from Alert.show in the view(). What have I missed?
    Thanks for your help.

    Thanks for the pointer. As a matter of fact, I found out that it is because of my xml nodes messing up, and that the text was displayed as white for someb reason. With a white background, of course I would not see a thing.
    Thanks again.

  • Get the data from a structure not a transparent table

    Hello masters, does anyone knows how to retrieve data from a structure?

    Structures do not contain data, they are mearly a way to describe it and are usually used in screen programming to collect data into which come from transparent tables.  For example, lets say you have data from two tables that need to be displayed on a screen, the data is related, so a good programming practice is to use a structure either described internally in the program, or in the ABAP dictionary.  Then in the program, you retrieve the data from the transpart tables and move the data to the structure fields, these structure fields are then defined within the screen. 
    Anyway, when you do F1 help on a field in a screen, and it is says that it is part of a structure, then this is becasue the structure is being used to group these fields into a common container when doing the screen programming, so it is a little trickier to find where the data is coming from, but not impossible.  One way is to use the ST05 to do a SQL trace on the program, this will tell you the tables being hit, and you can find the data that way.  Another way, is to debug the program, and see where the data is coming from.
    Regards,
    Rich Heilman

  • Export data from a table (not a bi query) to pdf

    Hi experts,
    I would like to know the way to export data in VC 7.0 from a table to a pdf. This table is generated NOT from a BI query but from an SQL using connection to Oracle DBMS.
    Thank you all
    Alessandro

    Hi,
    Use this link:[https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/47fe4fef-0d01-0010-6f87-ed8ecb479123]
    and Go through he below thread.
    [Re: Export data from visual composer to excel]
    Regards,
    Govindu
    If helpful reward points

  • SSIS XML Task: data from Variable Option NOT Working

    hi
    this is the scenario:
    n number of XML files get delivered everyday
    XML files need to be transformed using an XSLT transform
    XML files get stored in table ImportedFile under XMLFile column (XML Type)
    We then create a SSIS package that does the following:
    we grab the data from the SQL server ImportedFile Table
    dump the table in recordset destination
    create a for each uploaded file loop that puts the xml in variable XMLValue
    read the xml in the XMLValue with XML Source package
    package fails with following error
    "[XML Source [2]] Error: The XML Source was unable to read the XML data. Data at the root level is invalid. Line 1, position 1."
    below is a snapshot of SSI Job - any idea why this may be occurring ? is there a limit on the size of the xml ? is String the correct type ?
    eddy.a

    Hi sandeepppp,
    Currently, we can't repro this issue based on the information you posted above. What's your SSIS package structure?
    As SSISJoost suggested above, please try to configure logging for the package so that we can get more detail information to troubleshoot this issue.
    Note: SQL Server Integration Services includes log providers that you can use to implement logging in packages, containers, and tasks. With logging, you can capture run-time information about a package, helping you audit and troubleshoot a package
    every time it is run.
    For more information, please see:
    Integration Services (SSIS) Logging:
    http://technet.microsoft.com/en-us/library/ms140246.aspx
    If you have any feedback on our support, please click
    here.
    Elvis Long
    TechNet Community Support

  • Data from SOAP response not getting into Flex object

    I'm trying to get data from an ALM application we use(Collabnet TeamForge) using a SOAP webservice, and am running into a problem.  I should mention that I am new to both Flex, and webservices.
    I used the "Import Web Services" option in Flex Builder 3, and had it generate code for all operations in the WSDL.  Some of them work just fine.  However, there are several where the data from the SOAP response does not get into the Flex object. The senario that doesn't work is when the response contains a data type that extends another datatype.  In TeamForge, they have a type called TrackerSoapRow.  It extends FolderSoapRow, adding 3 fields.  The problem seems to be that in the response from TeamForge, the 3 fields defined in TrackerSoapRow are in the middle of the fields defined in FolderSoapRow.  I've debugged into it, and the problem occures in mx.rpc.xml.XMLDecoder.getApplicableValues( starting at line 2204 of XMLDecoded.as).  As I read the code, the only way a match can be found is if the fields in the response are in the exact same order as in the definintion.  When its processing the extended data type(  by a call to XMLDecoder.decodeComplexExtension ) at some point, one of the derived type's fields is encountered, and the process stops.
    I have called the service using soapui and verified that all the data I expect is in the response.
    As I mentioned, I'm new to web services.  So, I suppose its possible that the format of the data being returned from TeamForge is incorrect.  That they are not supposed to intermingle base and derived fields.  If thats the case, then I need to report this as a bug to Collabnet.
    All help is appreciated.
    Marc Robertson

    Not knowing any of the details about how you call a web service from OAF myself - I'd suggest you post on the proper forum for OA Framework questions: {forum:id=210}
    John

  • HT201269 I used Article: HT2109 to transfer everything from my iPod touch 3g, iOS 5.1.1, to my iPod touch 5g, iOS 6.1.3. Why did data from apps did NOT move to the new device? Games are starting over rather than picking up where they were on the old devic

    I used Article: HT2109 to transfer everything from my iPod touch 3g, iOS 5.1.1, to my iPod touch 5g, iOS 6.1.3. Why did data from apps NOT move to the new device? Games are starting over rather than picking up where they were on the old device?

    - If you restored the 5G frmm the iTunes backup of the 3G were th app in the iTunes library of the computer you used? They have to be.
    - If yes then try again. When I first restored my iPad 4 from the iTunes backup of my iPad 1 app data did not transfer. I tried again and it did.

  • Restoring data from previous device not working

    QUESTION:
    My question is, am I able to transfer data from my previous Blackberry 10 device and onto my new Blackberry 10 device if I do not have my old device anymore? (Keeping in mind that I have the previous device data backed up).
    Problem:
    Ok so:
    1. I purchased the Z10 and started adding contacts, apps etc.
    2. I purchased the Q10 and transfered data using the switch device system
    3. The Q10 I had purchased was faulty so before I handed it in to get a new Q10 I backed it up so I could restore its data on the new Q10.
    4. Once I received the new Q10 I handed the old one in and went home and attempted to do the same method of transferring my data across
    Turns out that you need your previous bbry for this action to be able to work so I thought I would just connect the new Q10 into Link and just click on restore data and using the backup on my previous Q10 (the faulty one).
    5. I get an error every time saying that the restore could not be completed because; did not recognise device, try unplugging and replugging etc etc.
    Attempted Resolution from reading the forums:
    > Restarted PC
    > Took bbry battery and sim card out
    > Restoring data via Applications > Media > Settings
    > Removed device from Link
    > Restarted bbry
    > Full security wipe and tried again

    When you use BlackBerry Link to transfer data from an old device to a new one the software should prompt you to connect your old device. That's when you connect the Z10 (as long as you didn't delete everything from the Z10). It copies and then it prompts you to connect the new device. 
    To make sure BB Link connects to the new device, go into that device's Settings > Storage and Access and make sure you have USB Connection set for "Connect to PC" and not to "Autodetect." You can try toggling to Mac and back to PC if it doesn't recoginize the connection.

  • Data from repeating group not showing in preview

    Hello experts,
    I would like to consult with you regarding a problem I have in BI publisher.
    I have tried creating a delivery receipt using BI publisher and when I preview it in word, everything is fine.
    The problem is that when I finally upload to BI publisher and try to view it there, the data that is supposed to show up within the repeating groups are missing.
    I have already validated the template before uploading and they look fine.
    I also am doubtful that the cause is because of a lack of data source because I have some fields that are outside the repeating group, but they have been retrieved without any problems.
    I have created a similar report using an older version of the XML Publisher and I didn't encounter a problem like this. I have also tried searching online but nothing really nails the problem that I am having. Do you have any insights regarding this?
    Appreciate your soonest response on this. Thank you!
    ~Jovee

    Hi sam thanks...I can see that data in extractor but not in PSA , that means it should not be in tra str /update rules/. the problem must be in extractor ...please help how to get this date in PSA as is...
    I have one more issue, when Iam loading the data from PSA to cube the data was half loaded and then the remaining half has yellow status in monitor...when I checked in simulation mode the following message is coming " Enter rate USD / rate type M for 30.03.2007 in the system settings" do you have any idea on how to fix this ?
    thanks
    Edited by: sam on Jan 25, 2008 9:17 PM

  • Field data from RSA3 is not showing in PSA

    Hi guys
    I can see the data field (custom) data populated in RSA3 for one of our data source...but which is not showing up in PSA table . we recently reinited and for some reason that particular field is not bringing the data .For all the records this paritcular field in PSa showing as 00.00.0000 . How come a field value  shows in RSA3 and not PSA ???? please advie what should I do
    regards

    Hi sam thanks...I can see that data in extractor but not in PSA , that means it should not be in tra str /update rules/. the problem must be in extractor ...please help how to get this date in PSA as is...
    I have one more issue, when Iam loading the data from PSA to cube the data was half loaded and then the remaining half has yellow status in monitor...when I checked in simulation mode the following message is coming " Enter rate USD / rate type M for 30.03.2007 in the system settings" do you have any idea on how to fix this ?
    thanks
    Edited by: sam on Jan 25, 2008 9:17 PM

Maybe you are looking for

  • My imac wont start up the wheel just spins

    my screen went high contrast. i could not force quit so i powered off.  when i powered on the wheel just spins. this has been going on for an hour.

  • Issues with AirPlay button since iOS 8 update

    Since I updated my iPad to iOS 8, the AirPlay button has been misshaped. is this happening to anyone? Is there a fix? I've attached a few pictures

  • Report on image column

    hiiiiii version-Application Express 4.0.2.00.06 Os-microsoft window server 2003 Browser-Mozilla firebox 3.6.17 Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64 bit production i want to create classic report on custmer_image on the basis of

  • CS5 Extended:Importing 3D Models queries

    Hi, I just spent some time having fun  playing with 3d in CS5 for the last 4 weeks.  The 3D does offer a new exciting aspect to PS however I have come across some issues while experimenting with importing models. I'm a experienced PS user  but new to

  • Customizing OIM request or approval task pages

    Hi, I need help in changing the layout of a particular screen in OIM 11g R1.  Below is the scenario: User submit request. Request is assigned to corresponding manager(s). If request is assigned to multiple managers, one of the managers will 'Claim' t