No Data listed on dashboard from QAAWS

I create in QAAWS in BO XI3.1 a Web service where i use for fiscal year two prompt "from year " - "to year": By testing the web service, entering the prompt values of fiscal year and publishing the web service, data are normally listed.
In the dashboard, i have
- on the left side of data manager for entering values: login, password, enter_value_fiscal_period1,  enter_value_fiscal_period2
- on the right side of data manager for listing values: fiscal year, month, state, city, lines, quantity_sold, sales_revenue, MESSAGE, CREATORNAME,....
-> I match  enter_value_fiscal_period1,  enter_value_fiscal_period2 with two excel cells, and also fiscal year, month, state, city, lines, quantity_sold, sales_revenue with once 10 excel cells,
-> And connect those fields state and  sales_revenue in a chart diagramm,
-> But when i start the preview button, no data is listed in the chart diagram, although in the QAAWS in BO XI3.1, data are listed when the web service is published.
Many thnak for helping
Arnaud

Hello Karthik,
I can i debug here. Is there a step by step from QAAWS adding to PREVIEW execution.
Is it a must to use prompt in the web service?
New informations: I customize the xcelsius server service in CMC, but still be not able to get data in the dashboard, although, in the data manager i can every time see the meta data from (table titles, login and password) the QAAWS.
My second question is to know, if i have to do sthing for the password, where i change the security role for "ALL" in qaaws.
I would appreciate your help.
Kind regards.
Arnaud
Edited by: Arnaud on Jul 27, 2011 12:16 PM
Edited by: Arnaud on Jul 27, 2011 12:43 PM

Similar Messages

  • Changing Date Format in Dashboard prompt drop down list

    Hi friends, my dashboard shows a drop down list for dates , which are in format "7/1/2008 12:00:00 AM".
    This is defined datetime datatype in sql server. Is there any way to change the date format in dashboard prompt to just "7/1/2008" without doing it in database side.
    Appreciate your help.
    Thanks and regards

    Hi... Toony
    In Dashboard Prompt, you have option to select i.e. show SQL,
    there you write the Logical SQL or Advanced SQL: <em>select cast("timestampCOLUMN" as date) from "PresentationLayerName"</em>
    this is simple way without changing anything in rpd side...
    And if you want the timestamp column somewhere in some reports you can use that column directly.
    If you don't want you need to cast it as DATE.
    If your question was answered then put it as answered and mark it as correct... ;)
    Edited by: Kishore Guggilla on Oct 20, 2008 11:44 PM

  • 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

  • Issue with list saving data after sites upgrade from sharepoint 2010 to sharepoint 2013

    Issue with list saving data after sites upgrade from sharepoint 2010 to sharepoint 2013 
    Newform.aspx of list:-
    Custom List is not saving data sometimes in the new form after 15 minutes and only blank entry record got created without saving data, even though some columns are mandatory fields?

    Hello dcakumar,
    Sounds like a strang issue. If you can reproduce this can you see some errors in the ULS logs?
    - Dennis | Netherlands | Blog |
    Twitter

  • Apps missing from use cellular data list in iphone 6

    So I got the new iPhone 6...and half of my apps are missing from the "use cellular data" list...those that are missing won't load when I try to open them...they just flash and shut down.  I've tried turning off wifi...I've tried resetting the phone...nothing works.  What's the point of the phone if you can't use the freaking apps when you aren't connected to wifi??  Anyone else having this problem?? Anyone know how to fix it??

    Hi there Kalypsokel,
    You may find the troubleshooting steps in the article below helpful.
    iOS: An app you installed unexpectedly quits, stops responding, or won’t open
    -Griff W.  

  • How Do i create a list that will show in a dropdown box with the list being pulled from another tab and not the cell data format junk?

    How Do i create a list that will show in a dropdown box with the list being pulled from another tab and not the cell data format junk?
    I currently run OS X 10.10.1
    Now i have been trying to work on this for a while now and what i want to do should be simple but its apparently not.
    Here is an example of what i want to happen.
    I will have 2 tabs: Contact | Sales
    Now Contacts will have the list of names and various information about a customer, While Sales will have one drop-down box for each Cell Row that will show the names of the person in tab contacts
    for what i am wanting to do i cant use the data format pop-up menu because the list is edited everyday several times a day.
    Now how do i do this, Excel can do this so how can numbers do it?

    Hi Shegra,
    Paste this into a applescript editor window and run it from there. In the script you may need to adjust the four properties to agree with your spreadsheet. Let me know if you have any questions.
    quinn
    Script starts:
    -- This script converts column A in one table into an alphabetized list of popups. It copies the last cell in that column. Then reverts the column to text. It then refreshes popups in column A of a data table starting with a user defined row.
    property DataEntrySheet : "Sheet 1" --name of sheet with popups to be refreshed
    property DataEntryTable : "Sales" --name of table with popups to be refreshed
    set copyRange to {}
    property PopValueSheet : "Sheet 1" --name of sheet with popup values table
    property PopValueTable : "Contacts" --name of table with popup values
    set PopStartRow to {}
    tell application "Numbers"
      set d to front document
      set ps to d's sheet PopValueSheet
      set pt to ps's table PopValueTable
      set s to d's sheet DataEntrySheet
      set t to s's table DataEntryTable
      set tf to t's filtered --this records filter setting on data Entry Table
      display dialog "Start from row #..." default answer "" with icon 1 -- with icon file "Path:to:my.icon.icns" --a Week # row
      set PopStartRow to {text returned of result}
      tell pt --convert list to alphabetized popups
      set ptRows to count rows
      set copyRange to ("A2:" & name of cell ptRows of column "A")
      set selection range to range copyRange
      set selection range's format to text
      sort by column 1 direction ascending
      set selection range's format to pop up menu
      -- popupsmade
      set selection range to cell ptRows of column 1 of pt
      set v to value of cell ptRows of pt
      end tell
      activate application "Numbers"
      tell application "System Events" to keystroke "c" using command down
      tell pt
      set selection range to range copyRange
      set selection range's format to text
      end tell
      tell t
      set filtered to false
      set tRows to count rows
      set pasteRange to ((name of cell PopStartRow of column "A") & ":" & (name of cell tRows of column "A"))
      set selection range to range pasteRange
      tell application "System Events" to keystroke "v" using command down
      set filtered to tf
      end tell
    end tell

  • 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

  • Creating right/left click scroll with a data list and being able to click indiv.item from data list?

    I've created a data list that contains a photo with text. I'd like to be able to right click the horizontal list instead of a scrolling bar. Could you please direct me on this?
    I'd also like to select each individual box from the scrolling data list and click to their website or to a menu... not sure on how to do that either??
    I've attached an ai file of what i'm trying to achieve.
    Thanks for your help!

    Funny, I was in the middle of writing an article on how to do this. The simple answer is you create a standard scrollbar with all four parts: track, thumb, increment button, and decrement button. Attach it to your data list, then make the opacity of the track and thumb = 0.
    To make each item in your data list do something different, use the interactions panel and add a On Click interaction. You should notice there is an option toward the bottom of that panel to change from "When any item is selected" to "When a specific item is selected". Remember, programmers like to start counting from 0, so your first item in your data list i 0.
    Note: In the attached example on the first two items are selectable.
    Hope this helps,
    Chris Griffith

  • Data target '0BBP_PO' removed from list of loadable targets; not loadable

    We have implemented the Business Content for Logistics and when we run the InfoPackage (IP) we have this message : Data target '0BBP_PO' removed from list of loadable targets; not loadable. We have Support Package 19 of BI 7.04 . The Data Target 0BBP_PO is not among the Data Targets of the IP, of course and none in the BW but why the IP takes it into account.
    Many Thanks
    Best Regards
    Amadeus

    Hi,
    This should solve your problem
    https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=925304
    Also check this thread
    'ODS' removed from list of loadable targets
    Thanks and regards,
    Srinath.

  • Data target 'ZGPPCAOD' removed from list of loadable targets; not loadable

    Hi Friends,
    I deleted some info providers and now I'm receiving messages when I try to start an info package´that had deleted info providers as data targets.
    RSM033:
    Data target 'ZGPPCAOD' removed from list of loadable targets; not loadable
    RSM036:
    Data taget 'ZGPPCAOD' is not active or incorrect; No loading allowed
    How to get rid of these messages?
    The problem is, that when I try to add those info packages to
    process cnains no default processes like deleting and generating indices are provided.
    Any ideas?
    Thanks in advance
    Joe

    Hi,
    this should solve your issue: https://websmp103.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=925304&_NLANG=EN
    regards
    Siggi

  • Data target 'XYZ' removed from list of loadable targets; not loadable

    Hi Guys,
    I am trying to run one of the infopakcage. When i open the IP i get this error (red) message "Data target 'XYZ' removed from list of loadable targets; not loadable".
    I tired deleting and re-creating the IP but still get the same message. I checked the data target "XYZ" but could not find in the system. It does not exists.
    This is not just a warning but an error which does not allow me to schedule the IP. I checked many forumns on this topic but did not get solution for this. I saw some of the OSS notes on other similar foroums but those not applicable.
    I would appreciate if anyone could provide me the right solution for this.
    Thanks,
    Manmit

    Manmit90
    The XYZ data target has not been part of initilization but this is connected to the datasource. since the data target has been deleted now, system is throwing you an error that "Data target 'XYZ' removed from list of loadable targets; not loadable."
    Old init is corrupted now. you will have to try a fresh one.
    Before running the re-init, run the delta's and make sure that no the RSA7 is emptied for this datasource.
    There will not be any problem with the re-init, it's just that you are trying to modify the data target selections.
    The re-init will load delta data to only those targets that you choose now.
    Regards,
    Sudheer.

  • Filing date of judgement is different from date listed on credit report.

    So first, let me say that my judgement is due to fall off in April of next year.  If it weren't for reading so many success stories and having many of my own (including an early deletion of the last paid collection account on Experian just yesterday) I might be willing to leave well enough alone. The problem is, the paid judgement is the last bad item on my report.  I just called the circuit court where my judgement was filed because the dates seemed off. I have copies of the money orders that I sent to pay the judgement and all of them were AFTER the judgement file date listed on my credit reports.  According to the clerk, my judgement was actually filed on January 12, 2009 not April 16, 2009. My question is, aren't civil judgements supposed to fall of 7 years from the filing date or is this the case of the 7 years 180 days I've heard about?  Did my payments somehow reage the judgement? If the date is indeed wrong, what is my next course of action? If the judgement rightfully is due to fall of January of 2016 I am within the 6 month range for requesting good will early deletion from at least two of the CRA's, correct?   I'd really like to buy a house next year at the best rate possible and my Fico scores are EX 709, TU 719, and EQ 721. I’m hoping this removal will help me get the best rate possible.  Thanks in advance for any insights/ opinions given.  

    Thanks for the docketing info! I'll start the ball rolling on that Monday. Regardless, if I can get the dates changed or no,t it's good to know that I have a possiblity of getting early exclusion on judgements as well. From what I read on this forum you can get a judgement vacated if he was improperly served. You can request the service info from the court where the Judgement  was placed. I, like Rebuilding, didn't show up for my court date because I assumed that being in contact and negotaiting payment was all I needed to do and judgement would be thrown out the window. Yeah I know, stupid.  Wow, if my judgement  falling off netted me 66 points I would keel over. It's my last baddie and the only bad thing on all three reports so my fingers are crossed.  Experian is an interesting one. In my case, they seem to hang on to anything and everything. The other CA's dropped most of my stuff a few months early without me even having to request it.  The only thing I had left was the judgement and one collection on Experian.  I called them mid june to ask for early deletion of the collection( 2 months ealy) because I heard they would remove it 3 months early. They turned me down, but I was very polite and thanked them  for their  time when they told me to call back April 1. I called them July 1 and after being transfered once my collection was removd. The phone call took less than 5 minutes.  It was due to fall of August 16 of this year.  The number I called was 1-800-360-7580. Note this account was not my oldest account and it was shown as being in collections so I wasn't in danger of having my Aaofa taking a hit.  Oh, one last thing. I don't think it's odd that one report had collections info that another doesn't. They not only differ in how long they keep stuff( my point about Experian having a collection nobody else had) I also think it depends on who the collector reports the info to I'll update if I get my judgement updated and EE. Otherwise Kaylavaand I will have our judgement removal day party April 16th of next year!

  • Hide Dashboard from the Drop Down list - OBIEE 11.1.1.6.2 BP1

    Hi,
    We have got an Index page, which contains links to all Dashboard the user is allowed to see and it is the home page for every user. Apart from that user's can select Dashboard from the drop down list. Is it possible to hide some of the dashboards from the drop down list but still users should continue accessing them from Index page?
    Thanks in advance.

    Hi,
    For showing the Dashboards as a drop down list I believe you are using HTML code. If so edit the HTML to remove the dashboards you do not want to see in the drop down.
    If the drop down is because of excessive pages shown on the dashboard then under the dashboard properties you can select the hide option for the dashboard. So by default the dashboard page would not show up and the index links would show.
    Let me know if this helped.
    Regards,
    Jay

  • Sharepoint List to Telerik Grid, Where data is not coming from database into List.

    SharePoint List to Telerik Grid, Where data is not coming from database into List.
    Here, i have a SharePoint list , where configurable text are stored, using some utility.
    I want to convert that SharePoint list into Telerik grid, with all Editable Option which i have in SharePoint.

    I know little about Telerik Grid, only find following article about Telerik integrate with SharePoint:
    http://www.telerik.com/help/aspnet-ajax/moss-spradlistview_designer_general.html
    a similar question:
    http://www.telerik.com/forums/how-to-bind-to-a-sharepoint-list-using-radgrid
    Thanks,
    Qiao Wei

  • Min date for each month from list

    Hi all,
    I need to select only minimal date for each month from this sample query:
    select date '2011-01-04' as adate from dual union all
    select date '2011-01-05' as adate from dual union all
    select date '2011-01-06' as adate from dual union all
    select date '2011-02-01' as adate from dual union all
    select date '2011-02-02' as adate from dual union all
    select date '2011-02-03' as adate from dual union all
    select date '2011-10-03' as adate from dual union all
    select date '2011-10-04' as adate from dual union all
    select date '2011-10-05' as adate from dual So the result should be:
    04.01.2011
    01.02.2011
    03.10.2011How do I perform it?

    WITH dates
         AS (SELECT DATE '2011-01-04' AS adate FROM DUAL
             UNION ALL
             SELECT DATE '2011-01-05' AS adate FROM DUAL
             UNION ALL
             SELECT DATE '2011-01-06' AS adate FROM DUAL
             UNION ALL
             SELECT DATE '2011-02-01' AS adate FROM DUAL
             UNION ALL
             SELECT DATE '2011-02-02' AS adate FROM DUAL
             UNION ALL
             SELECT DATE '2011-02-03' AS adate FROM DUAL
             UNION ALL
             SELECT DATE '2011-10-03' AS adate FROM DUAL
             UNION ALL
             SELECT DATE '2011-10-04' AS adate FROM DUAL
             UNION ALL
             SELECT DATE '2011-10-05' AS adate FROM DUAL)
    SELECT TO_CHAR (MIN (adate), 'DD.MM.YYYY') adate
      FROM dates
      GROUP BY to_char(adate, 'YYYY.MM')
    ADATE
    03.10.2011
    01.02.2011
    04.01.2011

Maybe you are looking for

  • Photoshop CC crashes on open, but all other CC apps seem to be working fine.

    I just installed CC last night, so I haven't had a lot of time to work with the CC apps yet... Bridge has been working fine since the start for LOTS of sorting and tagging images in the last day and a half, and I've opened CameraRAW a handful of time

  • Where have I gone wrong? (PS3 + 23" Cinema Display)

    Here I was thinking I was so clever buying an HDMI to female DVI adaptor so I could watch glorious blu-ray movies on my 23" Alu Display. However, after changing the video output on the PS3 to HDMI using my normal RCA TV and connecting the display up,

  • 6200 not recognized by wndows 8.1 as scanner

    I have been using my trusty 6200 all in one with no problem with a Win XP machine and a new windows 8.1 laptop (both HP).  Everything has been working fine... until today. I can print and scan from the XP machine and I can print from the Win8 machine

  • Has anyone found a real solution to low call volume on the 4s?

    Has anyone actually solved this issue? I'm really not sure if it's a hardware issue or a software issue, and I'm nowhere near an apple store. It started out of the blue about a month ago. Speaker phone works fine, but the earpiece is pretty much usel

  • Opendocument to open in a specific window

    Hi. I have a requirement to design one "opendocument" than will open in a new window but always in the new same window. If i have one master report and it has one opendocument to open a second report, the second report must be opened in one new windo