Flex request not finding php data member

hi-
i get this error ReferenceError: Error #1069: Property mydata
not found on Number and there is no default value.
at
weatherInput/weatherInput::weatherJSON()[C:\a1\flexForecast\weatherInput.mxml:15]
at
weatherInput/__weatherRequest_result()[C:\a1\flexForecast\weatherInput.mxml:25]
when i click on the button after selecting a zip code it acts
like the request goes through to php and somehow
it is not seeing the object or data it contains.
i am going to post my php code which compiles below and my
flex code with action script embeded in the next post.
if someone would glance at it and if it jumped off the page
give me a hint or heads up as to what i did wrong i'd really
appreciate it. i am taking data from the government weather
server and i want it to end up in a grid on my flex form.
i dont know if has anything to do with it but i put the .swf
file in my php web servers "public" directory and that error msg
is referring to the flex project directory which is different
from the servers public directory.
<?php
class weather
public $mydata;
try {
$shared=false;
ini_set('include_path',ini_get('include_path').':/home/third/public_html/includes/');
if ($shared) {
include("/home/third/public_html/includes/dbMyLimitInclude.php");
} else {
include "dbMyLimitInclude.php";
$ws = "
http://www.weather.gov/forecasts/xml/DWMLgen/wsdl/ndfdXML.wsdl";
$client = new SoapClient($ws,array('trace'=>1));
//var_dump($client->__getProperties());
$zip = $_GET['zip'];
echo $zip + " zipppppp";
$format = "24 hourly";
$numDays = 5;
//$product = "time-series";
//$startTime = "2007-09-23T00:00";
//$endTime = "2007-09-23T04:00";
//$weatherParameters=
array("maxt"=>false,"mint"=>false,"temp"=>true,
//"qpf"=>false,"pop12"=>false,"snow"=>false,"dew"=>false,"wspd"=>false,
//"wdir"=>false,"sky"=>false,"wx"=>false,"waveh"=>false,"icons"=>false,
//"rh"=>false,"appt"=>false,"incw34"=>false,"incw50"=>false,
//"incw64"=>false,"cumw34"=>false,"cumw50"=>false,"cumw64"=>false,
//"conhazo"=>false,"ptornado"=>false,"phail"=>false,"ptstmwinds"=>false,
//"pxtornado"=>false,"pxhail"=>false,"pxtstmwinds"=>false,"ptotsvrtstm"=>false,
//"pxtotsvrtstm"=>false,"wgust"=>false);
switch($zip){
case '13617':
$latitude = 44.58;
$longitude = -75.19;
break;
case '85044':
$latitude = 33.53;
$longitude = -112.08;
break;
case '05401':
$latitude = 44.47;
$longitude = -73.20;
break;
case '76180':
$latitude = 32.77;
$longitude = -97.31;
break;
case '90810':
$latitude = 33.80;
$longitude = -118.19;
break;
case '59403':
$latitude = 47.50;
$longitude = -111.31;
break;
case '80210':
$latitude = 39.74;
$longitude = -104.98;
break;
case '02139':
$latitude = 42.37;
$longitude = -71.1;
break;
case '18080':
$latitude = 40.75;
$longitude = -75.61;
break;
case '25313':
$latitude = 36.83;
$longitude = -76.30;
break;
case '04105':
$latitude = 43.66;
$longitude = -70.24;
break;
default:
$latitude = 0.00;
$longitude = 0.00;
} // switch
$link1ID = @mysql_connect("$host","$user","$paswd","$db")or
die("could not connect1");
@mysql_select_db("kb")or die("could not select the
database");
$sel_date = "SELECT NOW() AS d1";
$sel_result = mysql_query($sel_date);
list($startDate)=mysql_fetch_row($sel_result);
//echo
$client->NDFDgen($latitude,$longitude,$product,$startTime,$endTime,$weatherParameters);
//$fp = fopen("c:\\php\includes\junk.xml", "w+") or
die("Couldn't open file");
$xml2 =
$client->NDFDgenByDay($latitude,$longitude,$startDate,$numDays,$format);
//give me any tag that is value with a string in the middle
$a1=eregi("<value>(.*)</value>",$xml2,$regs);
//put the xml header on and fix up the format of the file so
it is simplexml
$r = '<'.'?'.'x'.'m'.'l vers'.'ion="1'.'.'.'0'.'"
standalone'.'='.'"yes"'.'?'.'>'."\n";
$r =
$r.'<'."go".'>'."\n".'<'."temperature".'>'."\n".$regs[0]."\n".'<'.'/weather-conditions'.' >'
//echo $regs[1];
// this next section kills the attributes so that just the
tag is left
$r = str_replace("type='minimum'","",$r);
$r = str_replace("units=\"Fahrenheit\"","",$r);
$r = str_replace("time-layout=\"k-p24h-n5-1\"","",$r);
$r = str_replace("<temperature
>","<temperature>",$r);
$r = str_replace("<probability-of-precipitation type='12
hour' units=\"percent\" time-layout=\"k-p12h-n10-2\">",
"</go>",$r);
$i = strrpos($r,"</go>"); //get start position
$r = substr_replace($r,"",$i+5); // truncate end of file
after </go>
//fwrite($fp,$r);
//fclose($fp);
//$xml3 = simplexml_load_file("c:\php\includes\junk.xml");
$xml3 = simplexml_load_string($r);
$temp = array();
$num=0;
for($i = 0;$i<2;$i++){
foreach($xml3->temperature[$i]->children() as $v)
$temp[$num] = $v;
$num++;
$tFld =
array("max1","max2","max3","max4","max5","min1","min2","min3","min4","min5");
for($i = 0; $i<10;$i++){
$tFld[$i]=$temp[$i];
echo "$tFld[$i]";
// date
// max1, max2
// zip
//connect to the server and select the database
$link1ID = @mysql_connect("$host","$user","$paswd","$db")or
die("could not connect1");
@mysql_select_db("kb")or die("could not select the
database");
$sel_date = "SELECT NOW() AS d1";
$sel_result = mysql_query($sel_query);
$startDate = mysql_num_rows($sel_result,0,"d1");
$sel_query = "SELECT * FROM w_max where w_max.zip = '$zip'
AND w_max.startDate = '$startDate'";
$sel_result = mysql_query($sel_query);
//data for that forecast is in DB - display it
if(mysql_num_rows($sel_result)>0){
while(list($tFld[0],$tFld[1],$tFld[2],$tFld[3],$tFld[4],$tFld[5],$tFld[6],$tFld[7],$tFld[ 8],$tFld[9])=mysql_fetch_row($sel_result)){
echo "'data found '.'max1 is'.$max1";
if(isset($_GET['getWeather']))
$w = new weather();
$w->mydata = $tFld;
echo json_encode($w);
} // while
//data not found in the DB - insert it
}else {
//connect to the server and select the database
$linkID2 = @mysql_connect("$host","$user","$paswd","$db")or
die("could not connect2");
@mysql_select_db("kb")or die("could not select the
database");
$query = "INSERT INTO w_max set zip = '$zip', startDate =
'$startDate', max1 = '$tFld[0]',
max2 = '$tFld[1]', max3 = '$tFld[2]', max4 = '$tFld[3]',
max5 ='$tFld[4]',
min1 = '$tFld[5]', min2 = '$tFld[6]', min3 = '$tFld[7]',
min4 = '$tFld[8]', min5 ='$tFld[9]'";
$result = mysql_query($query);
if($result) echo "";
else{
echo "<p>weather data not inserted</p>";
// delete data for all zips prior to todays date
$linkID3 = @mysql_connect("$host","$user","$paswd","$db")or
die("could not connect3");
@mysql_select_db("kb")or die("could not select the
database");
$del_qry = "delete from w_max where
TO_DAYS(NOW())-TO_DAYS(startDate)>1";
$del_result = mysql_query($del_qry);
mysql_close();
}catch(Exception $e){
echo $e->getMessage();
?>

:PART 2 of source code from other post in this thread:
<?xml version="1.0" ?>
<mx:Application xmlns:mx="
http://www.adobe.com/2006/mxml"
viewSourceURL="/localhost/flexForecast.swf">
<mx:Script>
<![CDATA[
import mx.collections.ArrayCollection;
import mx.rpc.events.ResultEvent;
import com.adobe.serialization.json.JSON;
private function weatherJSON(event:ResultEvent):void
//get the raw JSON data and cast to String
var rawData:String = String(event.result);
var weather:Object = JSON.decode(rawData);
var temperatures:Array = weather.mydata as Array;
//Data Grid Code
var weatherCollection:ArrayCollection = new
ArrayCollection(temperatures);
dgWeather.dataProvider = weatherCollection;
]]>
</mx:Script>
<mx:HTTPService id="weatherRequest" url="/t1.php"
useProxy="false" method="GET" resultFormat="text"
result="weatherJSON(event)">
<mx:request xmlns="">
<zip>{zip.value}</zip>
<getWeather>"true"</getWeather>
</mx:request>
</mx:HTTPService>
<mx:Panel x="10" y="10" width="350" height="200"
title="Rate Customer
Service">
<mx:ComboBox id="zip" x="20" y="20" width="100">
<mx:dataProvider>
<mx:Array>
<mx:String>13617</mx:String>
<mx:String>85044</mx:String>
<mx:String>05401</mx:String>
<mx:String>76180</mx:String>
<mx:String>90810</mx:String>
<mx:String>59403</mx:String>
<mx:String>80210</mx:String>
<mx:String>02139</mx:String>
<mx:String>18080</mx:String>
<mx:String>25313</mx:String>
<mx:String>04105</mx:String>
</mx:Array>
</mx:dataProvider>
</mx:ComboBox>
<mx:Button x="140" y="20" label="Send"
click="weatherRequest.send();"/>
<mx:Label x="20" y="120" text="{zip.value}"/>
<mx:DataGrid x="10" y="174" width="460" enabled="true"
editable="false" id="dgWeather">
<mx:columns>
<mx:DataGridColumn headerText="maxTemp1"
dataField="max1"/>
<mx:DataGridColumn headerText="maxTemp2"
dataField="max2"/>
<mx:DataGridColumn headerText="maxTemp3"
dataField="max3"/>
<mx:DataGridColumn headerText="maxTemp4"
dataField="max4"/>
<mx:DataGridColumn headerText="maxTemp5"
dataField="max5"/>
<mx:DataGridColumn headerText="minTemp1"
dataField="min1"/>
<mx:DataGridColumn headerText="minTemp2"
dataField="min2"/>
<mx:DataGridColumn headerText="minTemp3"
dataField="min3"/>
<mx:DataGridColumn headerText="minTemp4"
dataField="min4"/>
<mx:DataGridColumn headerText="minTemp5"
dataField="min5"/>
</mx:columns>
</mx:DataGrid>
</mx:Panel>
</mx:Application>

Similar Messages

  • Debuging mapping - error : Could not find test data for target operators ?

    Hello, Please help me.
    I use Oracle Warehouse Builder 10gR2.
    I created a cube with two dimensions.
    I debugged the mappings of these two dimensions then viewed their data after deployment.
    I tried to debug the mapping of the cube, and got the error: Could not find test data for all source and target operators.
    For source objects exist test data but for the target operator (cube_out) logically we do not need test data !!!! .
    But the error is here: Could not find test data for target operators. Why ??
    How to configure or explain to owb that the target operator do not have test data ????
    I need your help.
    thank you in advance.

    Sorry, I can not understand your approach ?
    I explain you in detail : I work in ROLAP.
    I have two dimensions : DIM_1 and DIM_2 linked with the cube (Fact_table).
    I have three mappings : MAP_DIM1, MAP_DIM2, MAP_CUBE.
    For the MAP_CUBE, I have source operator : VIEW_IN and Target operator : CUBE_OUT.
    I could see the data dimensions : DIM_1 and DIM_2 after debugging and Deployment in the OLAP schema.
    I tried debugged the mapping: MAP_CUBE so I got the error: Could not find test data for all source and target operators.*
    thank you for help.

  • Data selection procedure 400 could not find any data

    Hi ,
    I am getting the Information message "Data selection procedure 400 could not find any data " while doing the Result recording of a inspection lot
    Inspection lot status :- REL  CALC
    Inspection lot Origin :- 04 GR from production order
    No user status active
    This message i am getting in some inspection lot only
    Kindly help me to understand the possible resaon for this message
    Thanks,
    Ishwar

    hi,
    u r using any copy inspection result like of thing, if not than please provide the Mssg number. and possible than check ur plan properly.
    F9 i have checked, this prblm occurs when u using the Copy inspecttion result during RR in QA32, ma suggesstion is to checck ur config "Copy inspection results" in SPRO properly against inspection type "04", and than check ur qaulity plan, than execute it will resolve.
    For more information:
    SPRO Settings: COPY INSPECTION RESULTS DURING RESULTS RECORDING
    Regards
    Edited by: D GURU on Dec 5, 2011 8:35 AM

  • If the data network is not available for some time, to get it again we need to restart the phone instead it is not finding the data network instantly. why cant the iphone searches data net work offten if not available. i am totally disappointed with this!

    If the data network is not available for some time, to get it again we need to restart the phone instead it is not finding the data network instantly. why cant the iphone searches data net work offten if not available. i am totally disappointed with this!

    Still it could not find the data network.it searches for voice network instantly and works too. but even full voice network available, there is no data network.when i restart the phone it could find data network.
    Already i reset network settings for two times.

  • Could not find any data to display - how to modify system message

    Hi,
    We created an exception report in the Web Application Designer.
    If there are no exceptions (so there is no data to display) the following standard system message is shown:
    Could not find any data to display. This might be due to the current selection of variable or filter values
    We would however like to modify/remove this message.
    How can this be done?
    Thanks
    Dave

    Hi,
    Please check the link:
    /people/marc.bernard/blog/2008/10/10/how-to-filter-messages-created-by-bi-ip-planning-functions-and-sequences
    Please check the Q&A section of above weblog which mentions about
    function module RRMS_MESSAGE_HANDLING which could be helpful.
    Please also refer to SDN thread:
    Re: WAD - messages - message type
    Regards,
    Amit

  • Could not find "ADF Data Controls" in ADF tutorial 10.1.3.1.0 chapter 2

    Hi
    I am currently learning Oracle ADF followed by 10.1.3.1.0 tutorial. ( September 2006 Revision ), I installed Oracle Jdeveloper 10.1.3.2.0 on my pc with remote 10.2.0.2 database connection.
    In the manual page 2-17, the final step of that chapter, it requests to create ADF data controls associated with SRPublicFacadeBean.java . It says, right-click the SRPublicFacadeBean.java node and choose "Create Data Control" from the context menu. However, I could not find such option in the context menu. Does anyone know why that happened.
    Thanks ahead
    Sean
    Edited by: ma_sean on Oct 8, 2008 4:14 PM

    Did you install the J2EE edition of JDeveloper or the Studio edition?
    You need the studio edition to be able to create data controls.

  • Self-service request not finding suitable fitting

    Hi,
    When I have a user request an assembly from the library via the self service portal, I get the following error:
    Error while checkig placement feasibility: null
    Anyone an idea of what I am doing wrong? :-(
    here the full log:
    Placement is not feasible with reason:Placement's feasibility is false
    The available Supply is [
    Referenced=>Target Type: oracle_vm_zone Target Name:SelfServiceZone, Placeable=>false
    Associations=>[]
    Numerosities=>[]
    Score=>0.0
    Children=>[
    Referenced=>Target Type: oracle_vm_server_pool Target Name:MyGarageServer
    Numerosities=>[
    {Cpu=>0.98/1.0 Flex=>true Discrete=>false},
    {Memory=>22423.0/32686.0 Flex=>true Discrete=>true},
    {DiskStorage=>22010.0/22010.0 Flex=>true Discrete=>true},
    {Nic=>0.0/8.0 Flex=>false Discrete=>false},
    {Server=>2.0/2.0 Flex=>false Discrete=>false}]
    Overall Resource Starvation caused no placement to be feasible
    Cannot find suitable placements to satisfy all affinity and antiaffinity requirements
    Placement computation logs :
    ==== Starting to Compute for Placement
    ---> Available Supplies are
    Referenced=>Target Type: oracle_vm_zone Target Name:SelfServiceZone, Placeable=>false
    Associations=>[]
    Numerosities=>[]
    Score=>0.0
    Children=>[
    Referenced=>Target Type: oracle_vm_server_pool Target Name:MyGarageServer
    Numerosities=>[
    {Cpu=>0.98/1.0 Flex=>true Discrete=>false},
    {Memory=>22423.0/32686.0 Flex=>true Discrete=>true},
    {DiskStorage=>22010.0/22010.0 Flex=>true Discrete=>true},
    {Nic=>0.0/8.0 Flex=>false Discrete=>false},
    {Server=>2.0/2.0 Flex=>false Discrete=>false}]
    ---> Demands to be placed are
    Referenced=>oracle.sysman.vt.service.provisioning.assembly.impl.elements.VirtualSystemImpl@3b3c0fb, Placeable=>false
    Associations=>[]
    Characteristics=>[{"Class"=oracle.sysman.vt.service.placement.impl.RequestInterpreter$SingleComparibleValueCharacteristic,"Name"=SUPPORT_DESTINATION,"canBeInherited"=false,"shouldBeOverwrite"=true     [1]}]
    IsUniform=>false
    Numerosities=>[]
    Children=>[
    Referenced=>oracle.sysman.vt.service.provisioning.deployment.assembly.impl.VirtualSystemConfigImpl@e42a0a3
    Numerosities=>[
    {Memory=>4096.0/0.0 Flex=>true Discrete=>false}]
    ---> Demands that are placeable are
    oracle.sysman.vt.service.provisioning.deployment.assembly.impl.VirtualSystemConfigImpl@e42a0a3
    #### Starting to match demand the supply based on Characteristics and Associations
    #### Start Working on a demand to be placed:
    Referenced=>oracle.sysman.vt.service.provisioning.deployment.assembly.impl.VirtualSystemConfigImpl@e42a0a3, Placeable=>true
    Associations=>[]
    Characteristics=>[]
    IsUniform=>false
    Numerosities=>[
    {Memory=>4096.0/0.0 Flex=>true Discrete=>false}]
    #### Found the Following Supply that can fit the demand based on characteristics and associations
    Target Type: oracle_vm_zone Target Name:SelfServiceZone
    #### Sort the eligible supplies based on scoring
    Referenced=>Target Type: oracle_vm_zone Target Name:SelfServiceZone, Placeable=>false
    Associations=>[]
    Numerosities=>[]
    Score=>0.0
    #### End computing fitting placement based on characteristics and associations
    #### Start to organize the demand with list of eligible supplies
    #### Shuffle the demand nodes for non-ordered fitting
    #### The order of the Demand nodes are
    oracle.sysman.vt.service.provisioning.deployment.assembly.impl.VirtualSystemConfigImpl@e42a0a3
    #### Starting to Compute placement based on Resource Fitting and Affinity relationships
    #### Working on demand:
    Referenced=>oracle.sysman.vt.service.provisioning.deployment.assembly.impl.VirtualSystemConfigImpl@e42a0a3, Placeable=>true
    Associations=>[]
    Characteristics=>[]
    IsUniform=>false
    Numerosities=>[
    {Memory=>4096.0/0.0 Flex=>true Discrete=>false}]
    #### This supply does not have sufficient resource:
    Referenced=>Target Type: oracle_vm_zone Target Name:SelfServiceZone, Placeable=>false
    Associations=>[]
    Numerosities=>[]
    Score=>0.0
    #### Cloud not Find any Placement for: oracle.sysman.vt.service.provisioning.deployment.assembly.impl.VirtualSystemConfigImpl@e42a0a3 in current iteration.
    #### The algorithm has traversed through all possible paths, and could not find a feasible match that would satisfy all demands
    ==== Placement Computation Did not Find Suitable Fitting
    Output Log
    Error while checkig placement feasibility: null
    Error while checkig placement feasibility: null

    how to solution this problem????
    thanks !!!!!!
    输出日志
    Error while checkig placement feasibility: null
    Error while checkig placement feasibility: null
    错误日志
    Placement is not feasible with reason:Placement's feasibility is false
    The available Supply is [
    Referenced=>Target Type: oracle_vm_zone Target Name:cloud_zone_1, Placeable=>false
    Associations=>[]
    Numerosities=>[]
    Score=>0.0
    Children=>[
    Referenced=>Target Type: oracle_vm_server_pool Target Name:Mypools
    Numerosities=>[
    {Cpu=>0.99/1.0 Flex=>true Discrete=>false},
    {Memory=>5488.0/6131.0 Flex=>true Discrete=>true},
    {DiskStorage=>7006.0/7006.0 Flex=>true Discrete=>true},
    {Nic=>0.0/4.0 Flex=>false Discrete=>false},
    {Server=>1.0/1.0 Flex=>false Discrete=>false}]
    Overall Resource Starvation caused no placement to be feasible
    Cannot find suitable placements to satisfy all affinity and antiaffinity requirements
    Placement computation logs :
    ==== Starting to Compute for Placement
    ---> Available Supplies are
    Referenced=>Target Type: oracle_vm_zone Target Name:cloud_zone_1, Placeable=>false
    Associations=>[]
    Numerosities=>[]
    Score=>0.0
    Children=>[
    Referenced=>Target Type: oracle_vm_server_pool Target Name:Mypools
    Numerosities=>[
    {Cpu=>0.99/1.0 Flex=>true Discrete=>false},
    {Memory=>5488.0/6131.0 Flex=>true Discrete=>true},
    {DiskStorage=>7006.0/7006.0 Flex=>true Discrete=>true},
    {Nic=>0.0/4.0 Flex=>false Discrete=>false},
    {Server=>1.0/1.0 Flex=>false Discrete=>false}]
    ---> Demands to be placed are
    Referenced=>oracle.sysman.vt.service.provisioning.assembly.impl.elements.VirtualSystemImpl@6833d129, Placeable=>false
    Associations=>[]
    Characteristics=>[{"Class"=oracle.sysman.vt.service.placement.impl.RequestInterpreter$SingleComparibleValueCharacteristic,"Name"=SUPPORT_DESTINATION,"canBeInherited"=false,"shouldBeOverwrite"=true     [1]}]
    IsUniform=>false
    Numerosities=>[]
    Children=>[
    Referenced=>oracle.sysman.vt.service.provisioning.deployment.assembly.impl.VirtualSystemConfigImpl@21e91031
    Numerosities=>[
    {Memory=>1024.0/0.0 Flex=>true Discrete=>false}]
    ---> Demands that are placeable are
    oracle.sysman.vt.service.provisioning.deployment.assembly.impl.VirtualSystemConfigImpl@21e91031
    #### Starting to match demand the supply based on Characteristics and Associations
    #### Start Working on a demand to be placed:
    Referenced=>oracle.sysman.vt.service.provisioning.deployment.assembly.impl.VirtualSystemConfigImpl@21e91031, Placeable=>true
    Associations=>[]
    Characteristics=>[]
    IsUniform=>false
    Numerosities=>[
    {Memory=>1024.0/0.0 Flex=>true Discrete=>false}]
    #### Found the Following Supply that can fit the demand based on characteristics and associations
    Target Type: oracle_vm_zone Target Name:cloud_zone_1
    #### Sort the eligible supplies based on scoring
    Referenced=>Target Type: oracle_vm_zone Target Name:cloud_zone_1, Placeable=>false
    Associations=>[]
    Numerosities=>[]
    Score=>0.0
    #### End computing fitting placement based on characteristics and associations
    #### Start to organize the demand with list of eligible supplies
    #### Shuffle the demand nodes for non-ordered fitting
    #### The order of the Demand nodes are
    oracle.sysman.vt.service.provisioning.deployment.assembly.impl.VirtualSystemConfigImpl@21e91031
    #### Starting to Compute placement based on Resource Fitting and Affinity relationships
    #### Working on demand:
    Referenced=>oracle.sysman.vt.service.provisioning.deployment.assembly.impl.VirtualSystemConfigImpl@21e91031, Placeable=>true
    Associations=>[]
    Characteristics=>[]
    IsUniform=>false
    Numerosities=>[
    {Memory=>1024.0/0.0 Flex=>true Discrete=>false}]
    #### This supply does not have sufficient resource:
    Referenced=>Target Type: oracle_vm_zone Target Name:cloud_zone_1, Placeable=>false
    Associations=>[]
    Numerosities=>[]
    Score=>0.0
    #### Cloud not Find any Placement for: oracle.sysman.vt.service.provisioning.deployment.assembly.impl.VirtualSystemConfigImpl@21e91031 in current iteration.
    #### The algorithm has traversed through all possible paths, and could not find a feasible match that would satisfy all demands
    ==== Placement Computation Did not Find Suitable Fitting

  • Can not find master data in the cube

    ItemNo is an navigation attribute of 0Material. We are using 0material in a cube. When I display the cube data include ItemNo, I don't find the data I am looking for. For example:
    In 0Material:
    0Material      ItemNo    Description
    AAA                001           Test
    BBB                002           Test
    In the cube I expect to see:
    0Material             ItemNo            On Hand Qty
    AAA                      001                      1000
    BBB                      002                       2000
    Instead I saw:
    0Material             ItemNo            On Hand Qty
    AAA                                                1000
    BBB                                                2000
    0Material got refreshed after cube data got loaded. Is that why I don't find the refreshed Master data?
    Thank you!

    Hi,
    When you laod the cube, the Values for Master are automatically get created in the master data (If they are not present earlier and with "Data Update Type in the Data Tragets" setting in InfoPackage).
    Now when you are loading your cube with 0Material and Item Number, the values for Item Number seems blank. Thats the reason why you are not able to see the Item Number in Cube though it is present in Master. Because now these are two different keys, one with Item Number value and other without Item Number value.
    Regards,
    Yogesh.

  • CAN NOT FIND DESCRIPTION DATA for ACLs in ACL VIEWS

    Hi,
    anyone knows where acl description data stored? (fixed_table, view, sys table)
    (I know XDB.XDB$ACL and xdb.xs$securityclass objects, but I do not want to parse those xmls)
    BEGIN
    DBMS_NETWORK_ACL_ADMIN.CREATE_ACL(acl => '/sys/acls/my.xml',
    description => 'ACL_DESC',

    See XDS_ACL view, it does the parsing for you :
    SQL> SELECT description FROM sys.xds_acl;
    DESCRIPTION
    Read-only privileges to anonymous
    Protected:Readable by PUBLIC and all privileges to OWNER
    Protected:Readable by PUBLIC and all privileges to OWNER
    Public:All privileges to PUBLIC
    Private:All privileges to OWNER only and not accessible to others
    Read-Only:Readable by all and writeable by none
    6 rows selected
    And it was not that hard to do it "manually" BTW :
    SQL> SELECT x.description
      2  FROM XDB.XDB$ACL
      3     , XMLTable(
      4         XMLNamespaces(default 'http://xmlns.oracle.com/xdb/acl.xsd')
      5       , '/acl'
      6         passing object_value
      7         columns description varchar2(4000) path '@description'
      8       ) x
      9  ;
    DESCRIPTION
    Read-only privileges to anonymous
    Protected:Readable by PUBLIC and all privileges to OWNER
    Protected:Readable by PUBLIC and all privileges to OWNER
    Public:All privileges to PUBLIC
    Private:All privileges to OWNER only and not accessible to others
    Read-Only:Readable by all and writeable by none
    6 rows selected

  • BB Link not finding Outlook data for Sync

    On my old computer the Contacts/Calendar sync between Outlook and the BB Q5 worked very well via BB Link.
    On the new computer when I try to configure the Contacts/Calendar in BB Link the only account offerred is "Windows Contacts".  There is no reference to Outlook, even though it is installed and working.
    I have tried deleting and reinstalling BB Link on the new computer, and rebooting.  I have clicked "Remove Device" on BB Link on the old computer.
    The Outlook *.pst file is located in the same directory on the new computer as it is on the old computer.
    How can I get BB Link on the new computer to find Outlook so I can configure it?
    Blackberry Q5
    Software Release 10.2.1.2012
    OS Version 10.2.1.2141
    (identical numbers on both BB Link and the Q5)
    New Computer
    Windows 7 Professional Service Pack 1 64 bit
    Blackberry Link 1.2.3.23
    MS Office Outlook 2013 32 bit
    part of Microsoft Office Home And Business 2013
    Old Computer
    Windows XP Professional Version 2002 Service Pack 3 32 bit
    Blackberry Link 1.2.3.23
    MS Office Outlook 2007 SP3
    Thank you for any help you can provide.

    Just wanted to give an update. After a completely unsuccessful attempt with Creative's customer service telephone help, I decided to completely uninstall the software and reinstall it. I carefully double checked the options when reinstalling and noticed mine defaulted to Outlook Express, which I have on my machine but don't use. I changed the default to Outlook and made sure all the proper boxes were marked and it does work now. That would be my recommendation to the others for whom it is not working. Beyond that, you could have other issues.

  • Panel not maximized when data member activate=true.

    The panel activates on startup as expected (activate =true), but it is not maximized.  The panel spans almost top to bottom and about half of the width.  The panel can be maximized or minimized by clicking in the upper r.h. corner, but it cannot be stretched.  Is there something I can do to make this panel maximize at startup?
    Thanks,
    Joe C.

    Sounds like you might have tried adding the ‘true’ to the maximize writable member and found that the pushbuttons no longer work.  Most people would attempt this with something like ‘maximize= pb1 or true’.  The reason this will not work is the value of the expression (pb1 or true) never changes – its forever true.  If you embed a oneshot around the true keyword, the pushbutton functionality will still work.  This would look like ‘maximize= pb1 or oneshot (true, 00:01)’.  If you’re looking for a way to maximize at startup and also use the pushbutton, this will do the trick.

  • I upgraded to OS7 and am having trouble with the reminder app. can not find the dates that use to be at the bottom

    tips on using Reminders with OS7

    iOS 5: Understanding Location Services
    http://support.apple.com/kb/ht4995
     Cheers, Tom

  • There is more data storage on the hard drive and I can not find it (should be deleted)

    Hi I need some help, i recently bought a Macbook Pro, so good with that but when storing my files I realized I had sent more files, I deleted my files and it took me hours! and when checking the status of storage I realized I had more 20GB hard drive and I can not find that data stored anywhere! and i made the securely empty.
    P.S. I had a small problem when cleaned the trash, I stopped for lack of time but when i stop it, I realized I had nothing inside then... (should leave something at least, because it was an incomplete process.)
    (here says that i have 40.54 GB from other stuff, and i'm just using like 13Gb of my data) its in spanish by the way... sorry for that.
    Thanks for your patience!

    Other (Otros) is everything but Applications according to your chart. That includes operating system and files.

  • Flash Builder 4.5 Auto-Gen Code For PHP Data Service Produces Errors

    Hello
    I'm currently running a fresh install of MAMP on my Mac and when I start a new flex project, add a php data service that pulls from a mysql database I have. Everything works fine until I try to compile. The error I'm getting is 'uid' being the primary key which is a bigint(20). The file _Super_Users.as (auto-gen based on the user table below) reports 2 errors: [Managed] requires uid to be of type 'String'. (same error on 2 lines of code) Now the MySQL table wants it to be a int, the auto gen code seems to want it to be an int as well but for some reason its putting in these requires for String on the getter and setters for 'uid'. The is before I even add any of my own code, just auto-gen then compile.
         * data/source property getters
    [Bindable(event="propertyChange")]
        public function get uid() : int /*error line*/
            return _internal_uid;
         * data/source property setters
        public function set uid(value:int) : void /*error line*/
            var oldValue:int = _internal_uid;
            if (oldValue !== value)
                _internal_uid = value;
    This is what my database looks when I export it:
    CREATE TABLE `users` (
      `uid` bigint(20) unsigned NOT NULL,
      `name` varchar(150) NOT NULL,
      `first_name` varchar(50) NOT NULL,
      `middle_name` varchar(50) NOT NULL,
      `last_name` varchar(50) NOT NULL,
      `gender` tinyint(1) NOT NULL,
      `locale` varchar(5) NOT NULL,
      `link` varchar(255) NOT NULL,
      `username` varchar(50) NOT NULL,
      `email` varchar(255) NOT NULL,
      `picture` varchar(255) NOT NULL,
      `friends` text NOT NULL,
      `created` datetime NOT NULL,
      `updated` datetime NOT NULL,
      PRIMARY KEY (`uid`)
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
    It's empty right now...
    Apache 2.0.64
    MySQL 5.5.9
    PHP 5.2.17 & 5.3.5
    APC 3.1.7
    eAccelerator 0.9.6.1
    XCache 1.2.2 & 1.3.1
    phpMyAdmin 3.3.9.2
    Zend Optimizer 3.3.9
    SQLiteManager 1.2.4
    Freetype 2.4.4
    t1lib 5.1.2
    curl 7.21.3
    jpeg 8c
    libpng-1.5.0
    gd 2.0.34
    libxml 2.7.6
    libxslt 1.1.26
    gettext 0.18.1.1
    libidn 1.17
    iconv 1.13
    mcrypt 2.5.8
    YAZ 4.0.1 & PHP/YAZ 1.0.14
    I tried to give as much info as possible, if you need more let me know...

    I discovered my problem was uid seems to be a built in global or something and was filling in that data field with a bunch of letters and number, like the device id. Because of the letters flex was throwing a fit. So if you're using Facebook API in flex be sure to not go with uid for the user id, which is was facebook api calls it.

  • IPhoto can not find several photos, shows icon, but not pic itself and I did not move anything

    I have more then 12'000 photos on iPhoto. After the last update it shows me all pics in the small icons, but when I click on them, severals are not whown - a black background with a grey triangle opens and a "!" in the mid. I suppose this means that iPhoto can not find the data. I already looked into the database and the files are really not there. But I did NOT move them! What happened? What can I do? (I would highly appreciate if I would not have to check every single photo and reimport it again!!!) Thank you in advance for your help!

    Restore from your back up.
    Regards
    TD

Maybe you are looking for

  • Create Action that delete input file after OCR

    I've created an Acrobat X Pro action that OCR's all files in a given INPUT directory and then save the OCR file in an OUTPUT directory.  Is there a way to delete the file from the INPUT directory once it's processed?

  • Controlling the BBC iPlayer with the Apple Remote

    I watch programmes on the BBc iPlayer on my TV sreen by connecting my MacBook to the television. I'd dearly love to control the MacBook using my Apple remote. but it's only applicable to iTunes,iPhoto and the DVD player. Anyone out there with ideas a

  • FOTY0001error when trying pass file path variable to ora:readBinaryFromFile

    I want to read a file from a location,I take that file location as input and assign it to variable filePath and use ora:readBinaryFromFile(bpws:getVariableData('filePath','payload','/tns:value')),I get FOTY0001 type error. Any light on the issue woul

  • I am having trouble downloading itunes on windows 8 computer

    attempting to download iTunes and i get popups from attempting why isnt it working on my computer

  • Filter for Safari

    I teach web design at the high school level and I'm have a little trouble keeping a small group of students focused on their work when myspace, e-mail and youtube are just a click away. I'm looking for a mac application that will allow my students to