<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Flex Development with QUERY_VIEW_DATA in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022420#M714536</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi daniel, I', testing your great post. An issue I found is that Flex 3 Builder says "WidgetWebService not found during compilation".&lt;/P&gt;&lt;P&gt;Please could you check it?&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;&lt;P&gt;Luca&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Nov 2007 23:32:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-16T23:32:37Z</dc:date>
    <item>
      <title>Flex Development with QUERY_VIEW_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022413#M714529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, has anyone developed any applications with Flex using the QUERY_VIEW_DATA XML Output?  If so any chance you might pass it on so I can use for testing?  &lt;/P&gt;&lt;P&gt;Thanks, Ken Murray&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Nov 2007 16:06:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022413#M714529</guid>
      <dc:creator>sap_cohort</dc:creator>
      <dc:date>2007-11-07T16:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: Flex Development with QUERY_VIEW_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022414#M714530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yup, I've done this before the source is posted below.  There are no comments and the code is geared to a query that you don't have on your system but, it should give you a good idea of how to do it.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 
	layout="absolute" width="454" 
	creationComplete="onCreationComplete()" height="275"&amp;gt;
	&amp;lt;mx:Script&amp;gt;
		&amp;lt;![CDATA[
			import mx.rpc.soap.LoadEvent;
			import mx.rpc.AbstractOperation;
			import mx.controls.advancedDataGridClasses.AdvancedDataGridColumn;
			import mx.rpc.events.HeaderEvent;
			import mx.controls.dataGridClasses.DataGridColumn;
			import mx.utils.ArrayUtil;
			import mx.utils.XMLUtil;
			[Bindable]public var wsdlName:String = "http://localhost:8000/sap/bc/srt/rfc/sap/query_view_data?sap-client=001&amp;amp;wsdl"; 

			[Bindable]public var queryData:XMLList;
			import mx.rpc.events.FaultEvent;
			import mx.rpc.events.ResultEvent;
			private var queryViewDataService:WidgetWebService;
			public function onCreationComplete():void{
				queryViewDataService = new WidgetWebService();
				queryViewDataService.wsdl = wsdlName;
				queryViewDataService.addEventListener(LoadEvent.LOAD, loadListener);
				queryViewDataService.addEventListener(ResultEvent.RESULT, resultTrigger);
				queryViewDataService.addEventListener(FaultEvent.FAULT,fault);
				queryViewDataService.loadWSDL();
			}

			public function loadListener(event:LoadEvent):void{
				var op:AbstractOperation = queryViewDataService.getOperation("GetQueryViewData");
				var input:Object = new Object();
				input.ViewId = confXML.viewName;
				op.arguments = input;
				op.send();
			}
			public function resultTrigger(event:ResultEvent):void{
 				var output:XML;
 				var columnHeaders:Array;
 				var column:AdvancedDataGridColumn;
 				var response:XMLList;
 				var axisData:XMLList;
 				var axisInfo:XMLList;
 				var yAxis:XMLList;
 				var xAxis:XMLList;
				var _string:String;
				var item:XML;
				namespace soapenv = "http://schemas.xmlsoap.org/soap/envelope/";
				namespace n0 = "urn:sap-com:document:sap:soap:functions:mc-style";
 				_string = event.message.body.toString();
 				var regex:RegExp = new RegExp("soap-env", "g");
 				_string =_string.replace(regex, "soapenv");
 				output = new XML(_string);
 				use namespace soapenv;
 				response = output.Body;
 				use namespace n0;
 				response = response.GetQueryViewDataResponse;
 				var numHeaderRows:int;
 				var numRows:int;
 				var leadCols:int;
 				var numCols:int;
  				var row:XML;
  				var name:String;
  				var value:String;
  				var tempIndex:int;
  				
        		row = &amp;lt;row&amp;gt;&amp;lt;/row&amp;gt;;
  				axisData = response.AxisData.item;
 				axisInfo = response.AxisInfo.item; 				
 				numHeaderRows = axisInfo.(Axis == "000").Nchars;
 				numRows = axisInfo.(Axis == "001").Ncoords;
 				leadCols = axisInfo.(Axis == "001").Nchars;
 				numCols = axisInfo.(Axis == "000").Ncoords;
 				numCols = numCols + leadCols;
 				numRows = numRows + numHeaderRows;
  				columnHeaders = new Array();
  				queryData = new XMLList();
  				var rowNum:int;
  				var colNum:int;
 				for(rowNum = 0;rowNum &amp;lt; numRows; rowNum++){
	         		row = &amp;lt;row&amp;gt;&amp;lt;/row&amp;gt;;
	         		name = value = "";
 					for(colNum = 0; colNum &amp;lt; numCols; colNum++){
 						if (rowNum &amp;lt; numHeaderRows &amp;amp;&amp;amp; colNum &amp;lt; leadCols){
 							column = new AdvancedDataGridColumn();
 							column.headerText = axisInfo.(Axis == "001").Chars.item[colNum].Caption;
 							column.dataField =axisInfo.(Axis == "001").Chars.item[colNum].Chanm;
 							columnHeaders.push(column);
 						}
 						if (rowNum &amp;lt; numHeaderRows &amp;amp;&amp;amp; colNum &amp;gt;= leadCols){
 							column = new AdvancedDataGridColumn();
 							column.headerText = axisData.(Axis == "000").Set.item[colNum - leadCols].Caption;
 							column.dataField = axisData.(Axis == "000").Set.item[colNum - leadCols].Chavl; 							
 							columnHeaders.push(column);
 						}
 						if (rowNum &amp;gt;= numHeaderRows){
 							if (colNum &amp;lt; leadCols){
 								tempIndex = (( rowNum - numHeaderRows ) * (leadCols)) + (colNum);
 								value = axisData.(Axis == "001").Set.item[tempIndex].Caption;
 								name = axisData.(Axis == "001").Set.item[tempIndex].Chanm;
 							}
 							else{
 								tempIndex = (( rowNum - numHeaderRows ) * (numCols - leadCols)) + (colNum - leadCols);
 								value = response.CellData.item[tempIndex].FormattedValue;
 								name = AdvancedDataGridColumn(columnHeaders[colNum]).dataField; 									
 							}
 							row.appendChild(&amp;lt;{name}&amp;gt;{value}&amp;lt;/{name}&amp;gt;);
 						}
 					}
 					if (row != &amp;lt;row&amp;gt;&amp;lt;/row&amp;gt;)
 						queryData += row;
 				}
 						
				dataGrid.columns = columnHeaders;
			}

			public function fault(event:FaultEvent):void{
				var i:Number;
				i = 0;
			}
		
	
	&lt;STYLE&gt;
		.scrollBar{
			background-alpha: 1.0;
		}
	&lt;/STYLE&gt;
	&lt;XML source="/config/conf.xml" id="confXML"&gt;&lt;/XML&gt;
	&lt;XMLLISTCOLLECTION source="{queryData}" id="data"&gt;&lt;/XMLLISTCOLLECTION&gt;
&lt;CANVAS MX="http://www.adobe.com/2006/mxml" height="275" id="cvsWidget" backgroundalpha="0.0" borderstyle="none" left="0" right="0" verticalcenter="0"&gt;
&lt;ADVANCEDDATAGRID id="dataGrid" dataprovider="{data}" alpha="0.0" verticalscrollbarstylename="scrollBar" borderstyle="none" right="27" left="27" top="47" bottom="43" fontfamily="Arial" fontstyle="italic" fontsize="12" color="#FFD800"&gt;&lt;/ADVANCEDDATAGRID&gt;&lt;/CANVAS&gt;

]]&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 02:05:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022414#M714530</guid>
      <dc:creator>former_member10945</dc:creator>
      <dc:date>2007-11-08T02:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: Flex Development with QUERY_VIEW_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022415#M714531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Very Cool Stuff, I'm surprised you don't hear more about people doing this as I'm sure you can build some very professional looking applications and dashboards directly with the QUERY_VIEW_DATA Web Service and Flex.  I have tooled around and was able to get the xml results to appear, but I'm new to Flex and don't know how to handle the output so I couldn't take it further yet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you give some quick context behind building this like what the level of difficulty was for you and is the code fairly portable to a different query results?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, Ken Murray&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 12:48:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022415#M714531</guid>
      <dc:creator>sap_cohort</dc:creator>
      <dc:date>2007-11-08T12:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: Flex Development with QUERY_VIEW_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022416#M714532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; Can you give some quick context behind building this like what the level of difficulty was for &lt;/P&gt;&lt;P&gt;&amp;gt; you and is the code fairly portable to a different query results?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In wasn't terribly hard to write any of this.  The hardest thing to do was to parse the xml data and the only reason that was hard was due to the e4x stuff.  This wasn't just hard but there was a learning curve associated with it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In terms of portability between queries you can make the code highly portable but that is up to the developer.  The data comes back as a bunch of disparate tables but you can pull them back together again and represent it as a datagrid with some interesting slight of hand.  I've done this in ABAP using the same web services but have yet to port the code to AS3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-d&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Nov 2007 21:51:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022416#M714532</guid>
      <dc:creator>former_member10945</dc:creator>
      <dc:date>2007-11-13T21:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: Flex Development with QUERY_VIEW_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022417#M714533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the sample code. i am having a problem passing parameters table to query_view_data &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is the actionscript code which i had written, do you see a problem with this code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;op = queryViewDataService.getOperation("GetQueryViewData");
				var input:Object = new Object();
				input.Infoprovider = "CO_M01";
				input.Query = "CO_SA_STANDARD_COSTS";
			 input.Parameter = new Array(); 
			 input.Parameter[0] = new Array("VAR_NAME_1", "0H_CCTR");
			 input.Parameter[1] = new Array("VAR_VALUE_EXT_1","ABC_9999");
			 input.Parameter[2] = new Array("VAR_NAME_2","0P_FPER");
			 input.Parameter[3] = new Array("VAR_VALUE_EXT_2","2002001");
			 input.Parameter[4] = new Array("VAR_NAME_3","ZCOCFI");
			 input.Parameter[5] = new Array("VAR_VALUE_EXT_3","AB1");
			 input.Parameter[6] = new Array("VAR_NODE_IOBJNM_3","0HIER_NODE");
				op.arguments = input;
				op.send();
				&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Nov 2007 09:05:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022417#M714533</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2007-11-14T09:05:28Z</dc:date>
    </item>
    <item>
      <title>Re: Flex Development with QUERY_VIEW_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022418#M714534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Raja - &lt;/P&gt;&lt;P&gt;  Check out this other thread you guys are having similar problems, I've written a blog post that will hopefully clear all this up.  I will keep changing the blog around till we all get it right:&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="628509"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Nov 2007 20:00:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022418#M714534</guid>
      <dc:creator>former_member10945</dc:creator>
      <dc:date>2007-11-14T20:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: Flex Development with QUERY_VIEW_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022419#M714535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Dan, will try that and update&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Nov 2007 20:04:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022419#M714535</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2007-11-15T20:04:00Z</dc:date>
    </item>
    <item>
      <title>Re: Flex Development with QUERY_VIEW_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022420#M714536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi daniel, I', testing your great post. An issue I found is that Flex 3 Builder says "WidgetWebService not found during compilation".&lt;/P&gt;&lt;P&gt;Please could you check it?&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;&lt;P&gt;Luca&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2007 23:32:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022420#M714536</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-16T23:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: Flex Development with QUERY_VIEW_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022421#M714537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Luca,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had exactly the same issue with flex builder 3 and to over come that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;add the following&lt;/P&gt;&lt;P&gt;import mx.rpc.soap.WebService;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then cchange queryViewDataService to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;private var queryViewDataService:WebService;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Nov 2007 05:00:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022421#M714537</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2007-11-17T05:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: Flex Development with QUERY_VIEW_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022422#M714538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much Dan. Finally parameter passing is working fine. here is the code i have used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; op = queryViewDataService.getOperation("GetQueryViewData");
			    var input:Object = new Object();
				input.Infoprovider = "CO_M01";
				input.Query = "YCO_STANDARD_COSTS";

			var  ParameterRow:Object = new Object();
			     input.Parameter = new Array();
			    
			     ParameterRow.Name = "VAR_NAME_1";
			     ParameterRow.Value = "0H_CCTR";
			     input.Parameter.push(ParameterRow);

			     ParameterRow = null ;
			     ParameterRow = new Object(); 
			     ParameterRow.Name = "VAR_VALUE_EXT_1";
			     ParameterRow.Value = "ABC_9999";
			     input.Parameter.push(ParameterRow);

			     ParameterRow = null;
			     ParameterRow = new Object();
			     ParameterRow.Name = "VAR_NAME_2";
			     ParameterRow.Value = "0P_FPER";
			     input.Parameter.push(ParameterRow);

			     ParameterRow = null;
			     ParameterRow = new Object();
			     ParameterRow.Name = "VAR_VALUE_EXT_2";
			     ParameterRow.Value = "2002001";
			     input.Parameter.push(ParameterRow);

			     ParameterRow = null;
			     ParameterRow = new Object();
			     ParameterRow.Name = "VAR_NAME_3";
			     ParameterRow.Value = "ZCOGRP";
			     input.Parameter.push(ParameterRow);

			     ParameterRow = null;
			     ParameterRow = new Object();
			     ParameterRow.Name = "VAR_VALUE_EXT_3";
			     ParameterRow.Value = "ABC1";
			     input.Parameter.push(ParameterRow);

			     ParameterRow = null;
			     ParameterRow = new Object();
			     ParameterRow.Name = "VAR_NODE_IOBJNM_3";
			     ParameterRow.Value = "0HIER_NODE";
			     input.Parameter.push(ParameterRow);

			     ParameterRow = null;
  
				op.arguments = input;
				op.send();
				&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Nov 2007 06:19:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022422#M714538</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2007-11-17T06:19:18Z</dc:date>
    </item>
    <item>
      <title>Re: Flex Development with QUERY_VIEW_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022423#M714539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry all, didn't expunge all the random stuff from that code.  Raja is right in his response, simply use the regular WebService object and all is well.  Thanks for the pickup Raja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Nov 2007 22:47:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022423#M714539</guid>
      <dc:creator>former_member10945</dc:creator>
      <dc:date>2007-11-18T22:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: Flex Development with QUERY_VIEW_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022424#M714540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raja,&lt;/P&gt;&lt;P&gt;    many thanks for the suggestion. Now it works well.&lt;/P&gt;&lt;P&gt;thx&lt;/P&gt;&lt;P&gt;Luca&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Nov 2007 22:44:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022424#M714540</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-19T22:44:34Z</dc:date>
    </item>
    <item>
      <title>Re: Flex Development with QUERY_VIEW_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022425#M714541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you been able to get this code working??? is it possible to have a working sample???.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to "save" the returned XML from the Operation GetQueryViewData data into an Object which I can handdle in Charts, Grids Etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll appreciate any help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 22:57:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022425#M714541</guid>
      <dc:creator>former_member786380</dc:creator>
      <dc:date>2010-09-23T22:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: Flex Development with QUERY_VIEW_DATA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022426#M714542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you get any error message, if so whats the error message?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Oct 2010 07:42:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/flex-development-with-query-view-data/m-p/3022426#M714542</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2010-10-09T07:42:50Z</dc:date>
    </item>
  </channel>
</rss>

