Relational access to XML Content: can not display line level details

Hi folks,
there is one record at the header level and two records at the line level in the xml data file. I created the following view and when i see the results, I see two records as expected but the value for the line level coloumns is null but there are some values for the containerid in the xml data file
Here is the view and bellow that is my schema that i registered and the inserted the xml datafile into the default table specified in the schema .
Can you please tell me whats wrong with this view.
Thanks,
Pradeep
create or replace view myrcv_reccontainer_view as
select m.header_id,a.*
from RECEIVINGUPLOAD mr,
XMLTABLE('/'
PASSING object_value
COLUMNS
header_id varchar2(20) PATH '/WMWROOT/WMWDATA/WMFWUpload/Id',
rec XMLType PATH '/WMWROOT/WMWDATA/WMFWUpload/Receipts/Receipt/ParentContainers/Parent/ReceiptContainers/ReceiptContainer'
) m,
XMLTABLE( '/ReceiptContainer'
PASSING m.rec
COLUMNS
cid varchar2(40) PATH 'ContainerId'
) a;
<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="ReceivingUpload" targetNamespace="http://www.manh.com/ILSNET/Interface" elementFormDefault="qualified"
     xmlns="http://www.manh.com/ILSNET/Interface" xmlns:xs="http://www.w3.org/2001/XMLSchema" version ="2007"
     xmlns:xdb="http://xmlns.oracle.com/xdb"
     xdb:storeVarrayAsTable="true"
>
     <xs:include schemaLocation="Item.xsd"/>
     <xs:include schemaLocation="InterfaceEntity.xsd"/>
     <xs:include schemaLocation="UploadGroup.xsd"/>
     <xs:include schemaLocation="SerialNumber.xsd"/>
     <xs:include schemaLocation="Address.xsd"/>
<xs:include schemaLocation="ContainerType.xsd" />
     <xs:element name="WMWROOT" nillable="true" type="WMWROOT" xdb:defaultTable="RECEIVINGUPLOAD" xdb:SQLName="WMWROOT"/>
     <xs:complexType name="WMWROOT">
          <xs:sequence>
               <xs:element minOccurs="0" maxOccurs="1" name="WMWDATA" type="WMWDATA" />
          </xs:sequence>
     </xs:complexType>
     <xs:element name="WMWDATA" nillable="true" type="WMWDATA" xdb:SQLName="WMWDATA"/>
     <xs:complexType name="WMWDATA">
          <xs:sequence>
               <xs:element minOccurs="0" maxOccurs="1" name="WMFWUpload" type="WMFWUpload" xdb:SQLName="WMFWUpload" />
          </xs:sequence>
     </xs:complexType>
     <xs:element name="WMFWUpload" nillable="true" type="WMFWUpload" />
<xs:complexType name="WMFWUpload">
<xs:complexContent mixed="false">
<xs:extension base="UploadGroup">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="1" name="Receipts" type="ReceiptList" xdb:SQLName="Receipts"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="ReceiptList">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="Receipt" nillable="true" type="Receipt" xdb:SQLName="Receipt"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Receipt">
<xs:complexContent mixed="false">
<xs:extension base="InterfaceEntity">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="1" name="Appointment" type="AppointmentSchedule" />
<xs:element minOccurs="0" maxOccurs="1" name="ArrivedDate" type="xs:dateTime" />
<xs:element minOccurs="0" maxOccurs="1" name="BolNumAlpha" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="Carrier" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="CarrierService" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ClosedDate" type="xs:dateTime" />
<xs:element minOccurs="0" maxOccurs="1" name="Company" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="EndUnitizeDate" type="xs:dateTime" />
<xs:element minOccurs="0" maxOccurs="1" name="ErpOrderNum" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ErpOrderType" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="InternalRecNum" type="xs:int" />
<xs:element minOccurs="0" maxOccurs="1" name="LaunchNum" type="xs:int" />
<xs:element minOccurs="0" maxOccurs="1" name="LeadingSts" type="xs:int" />
<xs:element minOccurs="0" maxOccurs="1" name="LeadingStsDate" type="xs:dateTime" />
<xs:element minOccurs="0" maxOccurs="1" name="LeadingStsFailed" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="LicensePlateId" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ManuallyEntered" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="PackingListId" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="Priority" type="xs:int" />
<xs:element minOccurs="0" maxOccurs="1" name="ProNumAlpha" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ReceiptDate" type="xs:dateTime" />
<xs:element minOccurs="0" maxOccurs="1" name="ReceiptId" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ReceiptIdType" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ReceiptType" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ScheduledDate" type="xs:dateTime" />
<xs:element minOccurs="0" maxOccurs="1" name="SealId" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="StartUnitizeDate" type="xs:dateTime" />
<xs:element minOccurs="0" maxOccurs="1" name="TotalContainers" type="xs:int" />
<xs:element minOccurs="0" maxOccurs="1" name="TotalCost" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="TotalGreatPlainsQty" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="TotalLines" type="xs:int" />
<xs:element minOccurs="0" maxOccurs="1" name="TotalListPrice" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="TotalQty" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="TotalValue" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="TotalVolume" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="TotalWeight" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="TrailerId" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="TrailingSts" type="xs:int" />
<xs:element minOccurs="0" maxOccurs="1" name="TrailingStsDate" type="xs:dateTime" />
<xs:element minOccurs="0" maxOccurs="1" name="TrailingStsFailed" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="Vendor" type="Vendor" />
<xs:element minOccurs="0" maxOccurs="1" name="VolumeUm" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="Warehouse" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="WeightUm" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="Details" type="ReceiptDetailList" />
<xs:element minOccurs="0" maxOccurs="1" name="ParentContainers" type="ParentList" xdb:SQLName="ParentContainers" />
<xs:element minOccurs="0" maxOccurs="1" name="ReceiptContainers" type="ReceiptContainerList" xdb:SQLName="ReceiptContainers"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="Vendor">
<xs:complexContent mixed="false">
<xs:extension base="InterfaceEntity">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="1" name="Company" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ShipFrom" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ShipFromAddress" type="Address" />
<xs:element minOccurs="0" maxOccurs="1" name="Source" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="SourceAddress" type="Address" />
<xs:element minOccurs="0" maxOccurs="1" name="VerifyUm" type="xs:string" />
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="ReceiptContainer">
<xs:complexContent mixed="false">
<xs:extension base="InterfaceEntity">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="1" name="ContainerId" type="xs:string" xdb:SQLName="ContainerId"/>
<xs:element minOccurs="0" maxOccurs="1" name="ContainerClass" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ContainerType" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ConvQty" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="ConvUm" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="DimensionUm" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="DispCode" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="EPC" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ExpDate" type="xs:dateTime" />
<xs:element minOccurs="0" maxOccurs="1" name="FromLoc" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="FromWhs" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="Height" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="IncomingPd" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="InterfaceRecId" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="InternalLocContNum" type="xs:int" />
<xs:element minOccurs="0" maxOccurs="1" name="InternalRecContNum" type="xs:int" />
<xs:element minOccurs="0" maxOccurs="1" name="InventorySts" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="LaunchNum" type="xs:int" />
<xs:element minOccurs="0" maxOccurs="1" name="Length" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="LocatingRule" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="Lot" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ManufacturedDate" type="xs:dateTime" />
          <xs:element minOccurs="0" maxOccurs="1" name="OutPd" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="QcInspection" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="Qty" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="QtyUm" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ReasonCode" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ReceiptDetail" type="ReceiptDetail" />
<xs:element minOccurs="0" maxOccurs="1" name="SerialNumbers" type="SerialNumberList" />
<xs:element minOccurs="0" maxOccurs="1" name="Status" type="xs:int" />
<xs:element minOccurs="0" maxOccurs="1" name="StatusFailed" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ToLoc" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ToWhs" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="UploadInterfaceBatch" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="URI" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="UsedByImmNeed" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="Weight" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="Width" type="xs:decimal" />
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="ReceiptDetail">
<xs:complexContent mixed="false">
<xs:extension base="InterfaceEntity">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="1" name="ConvHeight" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="ConvLength" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="ConvQty" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="ConvUm" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ConvWeight" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="ConvWidth" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="Cost" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="CustomerOrderNum" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ErpOrderLineNum" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="ErpOrderNum" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ErpOrderType" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ExpectedInvSts" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ExpDate" type="xs:dateTime" />
<xs:element minOccurs="0" maxOccurs="1" name="HazCode" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="InterfaceRecId" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="InternalRecLineNum" type="xs:int" />
<xs:element minOccurs="0" maxOccurs="1" name="InvSts" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="GreatPlainsQty" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="ManufacturedDate" type="xs:dateTime" />
<xs:element minOccurs="0" maxOccurs="1" name="OpenQty" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="OriginalQty" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="Priority" type="xs:int" />
<xs:element minOccurs="0" maxOccurs="1" name="PurchaseOrderDetailId" type="xs:int" />
<xs:element minOccurs="0" maxOccurs="1" name="PurchaseOrderLineNumber" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="PurchaseOrderId" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="PutListNum" type="xs:int" />
<xs:element minOccurs="0" maxOccurs="1" name="PutLoc" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="PutZone" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="SerialNumReqd" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="SKU" type="SKU" />
<xs:element minOccurs="0" maxOccurs="1" name="StatusFlowName" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="TotalCost" type="xs:decimal" />
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="Parent">
<xs:complexContent mixed="false">
<xs:extension base="InterfaceEntity">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="1" name="ContainerId" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ContainerType" type="ContainerType" />
<xs:element minOccurs="0" maxOccurs="1" name="EPC" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="FromLoc" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="FromWhs" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="InternalRecContNum" type="xs:int" />
<xs:element minOccurs="0" maxOccurs="1" name="InventorySts" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="LocatingRule" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="QcInspection" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="Status" type="xs:int" />
<xs:element minOccurs="0" maxOccurs="1" name="TotalQty" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="TotalWeight" type="xs:decimal" />
<xs:element minOccurs="0" maxOccurs="1" name="ReceiptContainers" type="ReceiptContainerList" />
<xs:element minOccurs="0" maxOccurs="1" name="StatusFailed" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ToLoc" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="ToWhs" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="URI" type="xs:string" />
<xs:element minOccurs="0" maxOccurs="1" name="WeightUm" type="xs:string" />
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="ReceiptContainerList">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="ReceiptContainer" nillable="true" type="ReceiptContainer" xdb:SQLName="ReceiptContainer"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="AppointmentSchedule">
<xs:complexContent mixed="false">
<xs:extension base="InterfaceEntity">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="1" name="ApptDateTime" type="xs:dateTime" />
<xs:element minOccurs="0" maxOccurs="1" name="Dock" type="xs:string" />
          <xs:element minOccurs="0" maxOccurs="1" name="EndDateTime" type="xs:dateTime" />
          <xs:element minOccurs="0" maxOccurs="1" name="ObjectId" type="xs:int" />
          </xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="ReceiptDetailList">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="ReceiptDetail" nillable="true" type="ReceiptDetail" />
</xs:sequence>
</xs:complexType>
<xs:complexType name="ParentList">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="Parent" nillable="true" type="Parent" xdb:SQLName="Parent" />
</xs:sequence>
</xs:complexType>
</xs:schema>

Thanks for your response.
Glad to hear that you are getting the data.
Here is the output iam getting; Note: CID is null
=========================
HEADER_ID,CID
81b1d486-f5ec-461d-a,
81b1d486-f5ec-461d-a,
======================
here is the sample data.
============================
<?xml version="1.0" encoding="utf-8" ?>
- <WMWROOT xmlns="http://www.manh.com/ILSNET/Interface">
- <WMWDATA>
- <WMFWUpload xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Date>2010-01-27T09:32:29.35096-05:00</Date>
<GroupIndex>1</GroupIndex>
<Id>81b1d486-f5ec-461d-a204-c8a4543ed888</Id>
<NumGroups>1</NumGroups>
<NumRecs>1</NumRecs>
- <Receipts>
- <Receipt>
<CreationDateTimeStamp>2010-01-27T09:23:58</CreationDateTimeStamp>
<CreationProcessStamp>lmenghani</CreationProcessStamp>
<DateTimeStamp>2010-01-27T09:32:09.633</DateTimeStamp>
<InterfaceRecordId />
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ArrivedDate>2010-01-27T09:25:39</ArrivedDate>
<ClosedDate>2010-01-27T09:32:09.633</ClosedDate>
<InternalRecNum>38</InternalRecNum>
<LaunchNum>0</LaunchNum>
<LeadingSts>900</LeadingSts>
<LeadingStsDate>2010-01-27T00:00:00</LeadingStsDate>
<LeadingStsFailed>N</LeadingStsFailed>
<ManuallyEntered>Y</ManuallyEntered>
<Priority>0</Priority>
<ReceiptDate>2010-01-27T00:00:00</ReceiptDate>
<ReceiptId>TESTRECPTUPLOAD</ReceiptId>
<ReceiptIdType>Packing List ID</ReceiptIdType>
<StartUnitizeDate>2010-01-27T09:25:39</StartUnitizeDate>
<TotalContainers>1</TotalContainers>
<TotalCost>0.00000</TotalCost>
<TotalGreatPlainsQty>0.00000</TotalGreatPlainsQty>
<TotalLines>1</TotalLines>
<TotalListPrice>0.00000</TotalListPrice>
<TotalQty>10.00000</TotalQty>
<TotalValue>0.00000</TotalValue>
<TotalVolume>10.00000</TotalVolume>
<TotalWeight>10.00000</TotalWeight>
<TrailingSts>900</TrailingSts>
<TrailingStsDate>2010-01-27T00:00:00</TrailingStsDate>
<TrailingStsFailed>N</TrailingStsFailed>
- <Vendor>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<ShipFrom>1234</ShipFrom>
- <ShipFromAddress>
<Address1>Australia Business Unit</Address1>
<City>Sydney</City>
<Country>US</Country>
<Name>Australia Business Unit</Name>
<PostalCode>30339</PostalCode>
<State>GA</State>
</ShipFromAddress>
<Source>1234</Source>
- <SourceAddress>
<Address1>Australia Business Unit</Address1>
<City>Sydney</City>
<Country>US</Country>
<Name>Australia Business Unit</Name>
<PostalCode>30339</PostalCode>
<State>GA</State>
</SourceAddress>
</Vendor>
<VolumeUm>IN3</VolumeUm>
<Warehouse>Moreno Valley</Warehouse>
<WeightUm>LB</WeightUm>
+ <Details>
- <ReceiptDetail>
<DateTimeStamp>2010-01-27T09:27:08</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ConvHeight>0.00000</ConvHeight>
<ConvLength>0.00000</ConvLength>
<ConvQty>0.00000</ConvQty>
<ConvWeight>0.00000</ConvWeight>
<ConvWidth>0.00000</ConvWidth>
<ErpOrderLineNum>1.00000</ErpOrderLineNum>
<InternalRecLineNum>46</InternalRecLineNum>
<GreatPlainsQty>0.00000</GreatPlainsQty>
<OpenQty>0.00000</OpenQty>
<OriginalQty>10.00000</OriginalQty>
<Priority>0</Priority>
<PurchaseOrderLineNumber>0.00000</PurchaseOrderLineNumber>
<PutListNum>0</PutListNum>
<SerialNumReqd>Y</SerialNumReqd>
- <SKU>
<DateTimeStamp>2010-01-27T09:27:08</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<Active>Y</Active>
<AvailableOnWeb>N</AvailableOnWeb>
<BomAction>N</BomAction>
<CatchWeightReqd>N</CatchWeightReqd>
<Cost>0.00000</Cost>
<DaysToExpire>0</DaysToExpire>
<Desc>ITEMA</Desc>
<GtinEnabled>N</GtinEnabled>
- <HarmCode>
<RecordType>HARMONIZED</RecordType>
</HarmCode>
<Item>ITEMA</Item>
<ItemCategories />
- <ItemClass>
<StorageTemplate />
</ItemClass>
<ImmediateNeedsEligible>N</ImmediateNeedsEligible>
<InboundQcAmount>0.00000</InboundQcAmount>
<InboundQcEligible>N</InboundQcEligible>
- <ItemTemplate>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
</ItemTemplate>
<InternalItemNum>22</InternalItemNum>
<InventoryTracking>Y</InventoryTracking>
<ListPrice>0.00000</ListPrice>
<LotControlled>N</LotControlled>
<NetPrice>0.00000</NetPrice>
- <Nmfc>
<RecordType>NMFC</RecordType>
</Nmfc>
<Producer>N</Producer>
<SerialNumTrackInbound>Y</SerialNumTrackInbound>
<SerialNumTrackInventory>Y</SerialNumTrackInventory>
<SerialNumTrackOutbound>Y</SerialNumTrackOutbound>
- <StorageTemplate>
<DateTimeStamp>2001-06-12T17:07:39</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>System</UserStamp>
<Active>Y</Active>
<Desc>Default Storage Template</Desc>
- <Details>
- <StorageTemplateDetail>
<DateTimeStamp>2010-01-06T09:47:29</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<Active>Y</Active>
<GroupDuringUnitize>Y</GroupDuringUnitize>
<Sequence>1</Sequence>
<TreatFullPct>100</TreatFullPct>
<Um>EA</Um>
</StorageTemplateDetail>
- <StorageTemplateDetail>
<DateTimeStamp>2010-01-03T17:25:16</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<Active>N</Active>
<GroupDuringUnitize>N</GroupDuringUnitize>
<Sequence>2</Sequence>
<TreatFullPct>100</TreatFullPct>
<Um>CS</Um>
</StorageTemplateDetail>
- <StorageTemplateDetail>
<DateTimeStamp>2001-06-12T17:26:35</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>System</UserStamp>
<Active>N</Active>
<GroupDuringUnitize>N</GroupDuringUnitize>
<Sequence>3</Sequence>
<TreatFullPct>100</TreatFullPct>
<Um>PL</Um>
</StorageTemplateDetail>
</Details>
<Template>*Default</Template>
</StorageTemplate>
- <UOMS>
- <UOM>
<DateTimeStamp>2010-01-13T10:54:26</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ConvQty>1.00000</ConvQty>
<DimensionUm>IN</DimensionUm>
<EPCPackageID>0</EPCPackageID>
<Height>1.00000</Height>
<InternalItemUm>13</InternalItemUm>
<Length>1.00000</Length>
<QtyUm>EA</QtyUm>
<Sequence>1</Sequence>
<TreatAsLoose>Y</TreatAsLoose>
<TreatFullPct>100</TreatFullPct>
<Weight>1.00000</Weight>
<WeightUm>LB</WeightUm>
<Width>1.00000</Width>
<SlottingID />
<SlottingPalletTI>0</SlottingPalletTI>
<SlottingPalletHI>0</SlottingPalletHI>
</UOM>
- <UOM>
<DateTimeStamp>2010-01-13T10:54:37</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ConvQty>5.00000</ConvQty>
<DimensionUm>IN</DimensionUm>
<EPCPackageID>0</EPCPackageID>
<Height>5.00000</Height>
<InternalItemUm>14</InternalItemUm>
<Length>5.00000</Length>
<QtyUm>CS</QtyUm>
<Sequence>2</Sequence>
<TreatAsLoose>N</TreatAsLoose>
<TreatFullPct>100</TreatFullPct>
<Weight>5.00000</Weight>
<WeightUm>LB</WeightUm>
<Width>5.00000</Width>
<SlottingID />
<SlottingPalletTI>0</SlottingPalletTI>
<SlottingPalletHI>0</SlottingPalletHI>
</UOM>
- <UOM>
<DateTimeStamp>2010-01-13T10:54:50</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ConvQty>10.00000</ConvQty>
<DimensionUm>IN</DimensionUm>
<EPCPackageID>0</EPCPackageID>
<Height>10.00000</Height>
<InternalItemUm>15</InternalItemUm>
<Length>10.00000</Length>
<QtyUm>PL</QtyUm>
<Sequence>3</Sequence>
<TreatAsLoose>N</TreatAsLoose>
<TreatFullPct>100</TreatFullPct>
<Weight>10.00000</Weight>
<WeightUm>LB</WeightUm>
<Width>10.00000</Width>
<SlottingID />
<SlottingPalletTI>0</SlottingPalletTI>
<SlottingPalletHI>0</SlottingPalletHI>
</UOM>
</UOMS>
<BaseQty>10.00000</BaseQty>
<BaseQtyUm>EA</BaseQtyUm>
<ConvertedQty>1</ConvertedQty>
<ConvertedQtyUm>PL</ConvertedQtyUm>
<DimensionUm>IN</DimensionUm>
<Height>1.00000</Height>
<Length>1.00000</Length>
<Quantity>10.00000</Quantity>
<QuantityUm>EA</QuantityUm>
<TotalListPrice>0.00000</TotalListPrice>
<TotalValue>0.00000</TotalValue>
<TotalVolume>10.00000</TotalVolume>
<TotalWeight>10.00000</TotalWeight>
<Value>0.00000</Value>
<Volume>1.00000</Volume>
<VolumeUm>IN3</VolumeUm>
<Weight>1.00000</Weight>
<WeightUm>LB</WeightUm>
<Width>1.00000</Width>
</SKU>
<TotalCost>0</TotalCost>
</ReceiptDetail>
</Details>
- <ParentContainers>
- <Parent>
<DateTimeStamp>2010-01-27T09:32:09.757</DateTimeStamp>
<InterfaceRecordId />
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ContainerId>PLTEST</ContainerId>
- <ContainerType>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<Desc>Pallet</Desc>
<Height>0.00000</Height>
<Length>0.00000</Length>
<MaxWeight>0.00000</MaxWeight>
<Type>PL</Type>
<UseAsDefault>N</UseAsDefault>
<Volume>0.00000</Volume>
<Weight>0.00000</Weight>
<WeightTolerance>0.00000</WeightTolerance>
<Width>0.00000</Width>
</ContainerType>
<EPC />
<FromLoc>RECV-01</FromLoc>
<FromWhs>Moreno Valley</FromWhs>
<InternalRecContNum>120</InternalRecContNum>
<QcInspection>N</QcInspection>
<Status>900</Status>
<TotalQty>10.00000</TotalQty>
<TotalWeight>10.00000</TotalWeight>
- <ReceiptContainers>
- <ReceiptContainer>
<DateTimeStamp>2010-01-27T09:32:09.54</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ContainerId>LPNTEST2</ContainerId>
<ConvQty>1.00000</ConvQty>
<ConvUm>CS</ConvUm>
<DimensionUm>IN</DimensionUm>
<FromLoc>RECV-01</FromLoc>
<FromWhs>Moreno Valley</FromWhs>
<Height>5.00000</Height>
<InternalLocContNum>0</InternalLocContNum>
<InternalRecContNum>121</InternalRecContNum>
<InventorySts>Available</InventorySts>
<LaunchNum>190</LaunchNum>
<Length>5.00000</Length>
<QcInspection>N</QcInspection>
<Qty>5.00000</Qty>
<QtyUm>EA</QtyUm>
<ReasonCode />
+ <ReceiptDetail>
<DateTimeStamp>2010-01-27T09:27:08</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ConvHeight>0.00000</ConvHeight>
<ConvLength>0.00000</ConvLength>
<ConvQty>0.00000</ConvQty>
<ConvWeight>0.00000</ConvWeight>
<ConvWidth>0.00000</ConvWidth>
<ErpOrderLineNum>1.00000</ErpOrderLineNum>
<InternalRecLineNum>46</InternalRecLineNum>
<GreatPlainsQty>0.00000</GreatPlainsQty>
<OpenQty>0.00000</OpenQty>
<OriginalQty>10.00000</OriginalQty>
<Priority>0</Priority>
<PurchaseOrderLineNumber>0.00000</PurchaseOrderLineNumber>
<PutListNum>0</PutListNum>
<SerialNumReqd>Y</SerialNumReqd>
- <SKU>
<DateTimeStamp>2010-01-27T09:27:08</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<Active>Y</Active>
<AvailableOnWeb>N</AvailableOnWeb>
<BomAction>N</BomAction>
<CatchWeightReqd>N</CatchWeightReqd>
<Cost>0.00000</Cost>
<DaysToExpire>0</DaysToExpire>
<Desc>ITEMA</Desc>
<GtinEnabled>N</GtinEnabled>
- <HarmCode>
<RecordType>HARMONIZED</RecordType>
</HarmCode>
<Item>ITEMA</Item>
<ItemCategories />
- <ItemClass>
<StorageTemplate />
</ItemClass>
<ImmediateNeedsEligible>N</ImmediateNeedsEligible>
<InboundQcAmount>0.00000</InboundQcAmount>
<InboundQcEligible>N</InboundQcEligible>
- <ItemTemplate>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
</ItemTemplate>
<InternalItemNum>22</InternalItemNum>
<InventoryTracking>Y</InventoryTracking>
<ListPrice>0.00000</ListPrice>
<LotControlled>N</LotControlled>
<NetPrice>0.00000</NetPrice>
- <Nmfc>
<RecordType>NMFC</RecordType>
</Nmfc>
<Producer>N</Producer>
<SerialNumTrackInbound>Y</SerialNumTrackInbound>
<SerialNumTrackInventory>Y</SerialNumTrackInventory>
<SerialNumTrackOutbound>Y</SerialNumTrackOutbound>
- <StorageTemplate>
<DateTimeStamp>2001-06-12T17:07:39</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>System</UserStamp>
<Active>Y</Active>
<Desc>Default Storage Template</Desc>
- <Details>
- <StorageTemplateDetail>
<DateTimeStamp>2010-01-06T09:47:29</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<Active>Y</Active>
<GroupDuringUnitize>Y</GroupDuringUnitize>
<Sequence>1</Sequence>
<TreatFullPct>100</TreatFullPct>
<Um>EA</Um>
</StorageTemplateDetail>
- <StorageTemplateDetail>
<DateTimeStamp>2010-01-03T17:25:16</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<Active>N</Active>
<GroupDuringUnitize>N</GroupDuringUnitize>
<Sequence>2</Sequence>
<TreatFullPct>100</TreatFullPct>
<Um>CS</Um>
</StorageTemplateDetail>
+ <StorageTemplateDetail>
<DateTimeStamp>2001-06-12T17:26:35</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>System</UserStamp>
<Active>N</Active>
<GroupDuringUnitize>N</GroupDuringUnitize>
<Sequence>3</Sequence>
<TreatFullPct>100</TreatFullPct>
<Um>PL</Um>
</StorageTemplateDetail>
</Details>
<Template>*Default</Template>
</StorageTemplate>
- <UOMS>
- <UOM>
<DateTimeStamp>2010-01-13T10:54:26</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ConvQty>1.00000</ConvQty>
<DimensionUm>IN</DimensionUm>
<EPCPackageID>0</EPCPackageID>
<Height>1.00000</Height>
<InternalItemUm>13</InternalItemUm>
<Length>1.00000</Length>
<QtyUm>EA</QtyUm>
<Sequence>1</Sequence>
<TreatAsLoose>Y</TreatAsLoose>
<TreatFullPct>100</TreatFullPct>
<Weight>1.00000</Weight>
<WeightUm>LB</WeightUm>
<Width>1.00000</Width>
<SlottingID />
<SlottingPalletTI>0</SlottingPalletTI>
<SlottingPalletHI>0</SlottingPalletHI>
</UOM>
- <UOM>
<DateTimeStamp>2010-01-13T10:54:37</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ConvQty>5.00000</ConvQty>
<DimensionUm>IN</DimensionUm>
<EPCPackageID>0</EPCPackageID>
<Height>5.00000</Height>
<InternalItemUm>14</InternalItemUm>
<Length>5.00000</Length>
<QtyUm>CS</QtyUm>
<Sequence>2</Sequence>
<TreatAsLoose>N</TreatAsLoose>
<TreatFullPct>100</TreatFullPct>
<Weight>5.00000</Weight>
<WeightUm>LB</WeightUm>
<Width>5.00000</Width>
<SlottingID />
<SlottingPalletTI>0</SlottingPalletTI>
<SlottingPalletHI>0</SlottingPalletHI>
</UOM>
- <UOM>
<DateTimeStamp>2010-01-13T10:54:50</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ConvQty>10.00000</ConvQty>
<DimensionUm>IN</DimensionUm>
<EPCPackageID>0</EPCPackageID>
<Height>10.00000</Height>
<InternalItemUm>15</InternalItemUm>
<Length>10.00000</Length>
<QtyUm>PL</QtyUm>
<Sequence>3</Sequence>
<TreatAsLoose>N</TreatAsLoose>
<TreatFullPct>100</TreatFullPct>
<Weight>10.00000</Weight>
<WeightUm>LB</WeightUm>
<Width>10.00000</Width>
<SlottingID />
<SlottingPalletTI>0</SlottingPalletTI>
<SlottingPalletHI>0</SlottingPalletHI>
</UOM>
</UOMS>
<BaseQty>10.00000</BaseQty>
<BaseQtyUm>EA</BaseQtyUm>
<ConvertedQty>1</ConvertedQty>
<ConvertedQtyUm>PL</ConvertedQtyUm>
<DimensionUm>IN</DimensionUm>
<Height>1.00000</Height>
<Length>1.00000</Length>
<Quantity>10.00000</Quantity>
<QuantityUm>EA</QuantityUm>
<TotalListPrice>0.00000</TotalListPrice>
<TotalValue>0.00000</TotalValue>
<TotalVolume>10.00000</TotalVolume>
<TotalWeight>10.00000</TotalWeight>
<Value>0.00000</Value>
<Volume>1.00000</Volume>
<VolumeUm>IN3</VolumeUm>
<Weight>1.00000</Weight>
<WeightUm>LB</WeightUm>
<Width>1.00000</Width>
</SKU>
<TotalCost>0</TotalCost>
</ReceiptDetail>
+ <SerialNumbers>
- <SerialNumber>
<DateTimeStamp>2010-01-27T09:27:06.757</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ObjectId>445</ObjectId>
<SerialNumber>TEST6</SerialNumber>
- <SerialNumTemplate>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<ObjectId>0</ObjectId>
</SerialNumTemplate>
</SerialNumber>
- <SerialNumber>
<DateTimeStamp>2010-01-27T09:27:06.757</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ObjectId>446</ObjectId>
<SerialNumber>TEST7</SerialNumber>
- <SerialNumTemplate>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<ObjectId>0</ObjectId>
</SerialNumTemplate>
</SerialNumber>
- <SerialNumber>
<DateTimeStamp>2010-01-27T09:27:06.757</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ObjectId>447</ObjectId>
<SerialNumber>TEST8</SerialNumber>
- <SerialNumTemplate>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<ObjectId>0</ObjectId>
</SerialNumTemplate>
</SerialNumber>
- <SerialNumber>
<DateTimeStamp>2010-01-27T09:27:06.757</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ObjectId>448</ObjectId>
<SerialNumber>TEST9</SerialNumber>
- <SerialNumTemplate>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<ObjectId>0</ObjectId>
</SerialNumTemplate>
</SerialNumber>
- <SerialNumber>
<DateTimeStamp>2010-01-27T09:27:06.757</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ObjectId>449</ObjectId>
<SerialNumber>TEST10</SerialNumber>
- <SerialNumTemplate>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<ObjectId>0</ObjectId>
</SerialNumTemplate>
</SerialNumber>
</SerialNumbers>
<Status>900</Status>
<StatusFailed>N</StatusFailed>
<ToLoc>PRIM-06</ToLoc>
<ToWhs>Moreno Valley</ToWhs>
<UploadInterfaceBatch>5f00ef65-262c-43e4-8dca-6a803424ed00</UploadInterfaceBatch>
<Weight>5.00000</Weight>
<Width>5.00000</Width>
</ReceiptContainer>
- <ReceiptContainer>
<DateTimeStamp>2010-01-27T09:32:09.6</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ContainerId>LPNTEST1</ContainerId>
<ConvQty>1.00000</ConvQty>
<ConvUm>CS</ConvUm>
<DimensionUm>IN</DimensionUm>
<FromLoc>RECV-01</FromLoc>
<FromWhs>Moreno Valley</FromWhs>
<Height>5.00000</Height>
<InternalLocContNum>0</InternalLocContNum>
<InternalRecContNum>122</InternalRecContNum>
<InventorySts>Available</InventorySts>
<LaunchNum>190</LaunchNum>
<Length>5.00000</Length>
<QcInspection>N</QcInspection>
<Qty>5.00000</Qty>
<QtyUm>EA</QtyUm>
<ReasonCode />
+ <ReceiptDetail>
<DateTimeStamp>2010-01-27T09:27:08</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ConvHeight>0.00000</ConvHeight>
<ConvLength>0.00000</ConvLength>
<ConvQty>0.00000</ConvQty>
<ConvWeight>0.00000</ConvWeight>
<ConvWidth>0.00000</ConvWidth>
<ErpOrderLineNum>1.00000</ErpOrderLineNum>
<InternalRecLineNum>46</InternalRecLineNum>
<GreatPlainsQty>0.00000</GreatPlainsQty>
<OpenQty>0.00000</OpenQty>
<OriginalQty>10.00000</OriginalQty>
<Priority>0</Priority>
<PurchaseOrderLineNumber>0.00000</PurchaseOrderLineNumber>
<PutListNum>0</PutListNum>
<SerialNumReqd>Y</SerialNumReqd>
- <SKU>
<DateTimeStamp>2010-01-27T09:27:08</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<Active>Y</Active>
<AvailableOnWeb>N</AvailableOnWeb>
<BomAction>N</BomAction>
<CatchWeightReqd>N</CatchWeightReqd>
<Cost>0.00000</Cost>
<DaysToExpire>0</DaysToExpire>
<Desc>ITEMA</Desc>
<GtinEnabled>N</GtinEnabled>
- <HarmCode>
<RecordType>HARMONIZED</RecordType>
</HarmCode>
<Item>ITEMA</Item>
<ItemCategories />
- <ItemClass>
<StorageTemplate />
</ItemClass>
<ImmediateNeedsEligible>N</ImmediateNeedsEligible>
<InboundQcAmount>0.00000</InboundQcAmount>
<InboundQcEligible>N</InboundQcEligible>
- <ItemTemplate>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
</ItemTemplate>
<InternalItemNum>22</InternalItemNum>
<InventoryTracking>Y</InventoryTracking>
<ListPrice>0.00000</ListPrice>
<LotControlled>N</LotControlled>
<NetPrice>0.00000</NetPrice>
- <Nmfc>
<RecordType>NMFC</RecordType>
</Nmfc>
<Producer>N</Producer>
<SerialNumTrackInbound>Y</SerialNumTrackInbound>
<SerialNumTrackInventory>Y</SerialNumTrackInventory>
<SerialNumTrackOutbound>Y</SerialNumTrackOutbound>
- <StorageTemplate>
<DateTimeStamp>2001-06-12T17:07:39</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>System</UserStamp>
<Active>Y</Active>
<Desc>Default Storage Template</Desc>
- <Details>
- <StorageTemplateDetail>
<DateTimeStamp>2010-01-06T09:47:29</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<Active>Y</Active>
<GroupDuringUnitize>Y</GroupDuringUnitize>
<Sequence>1</Sequence>
<TreatFullPct>100</TreatFullPct>
<Um>EA</Um>
</StorageTemplateDetail>
- <StorageTemplateDetail>
<DateTimeStamp>2010-01-03T17:25:16</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<Active>N</Active>
<GroupDuringUnitize>N</GroupDuringUnitize>
<Sequence>2</Sequence>
<TreatFullPct>100</TreatFullPct>
<Um>CS</Um>
</StorageTemplateDetail>
- <StorageTemplateDetail>
<DateTimeStamp>2001-06-12T17:26:35</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>System</UserStamp>
<Active>N</Active>
<GroupDuringUnitize>N</GroupDuringUnitize>
<Sequence>3</Sequence>
<TreatFullPct>100</TreatFullPct>
<Um>PL</Um>
</StorageTemplateDetail>
</Details>
<Template>*Default</Template>
</StorageTemplate>
- <UOMS>
- <UOM>
<DateTimeStamp>2010-01-13T10:54:26</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ConvQty>1.00000</ConvQty>
<DimensionUm>IN</DimensionUm>
<EPCPackageID>0</EPCPackageID>
<Height>1.00000</Height>
<InternalItemUm>13</InternalItemUm>
<Length>1.00000</Length>
<QtyUm>EA</QtyUm>
<Sequence>1</Sequence>
<TreatAsLoose>Y</TreatAsLoose>
<TreatFullPct>100</TreatFullPct>
<Weight>1.00000</Weight>
<WeightUm>LB</WeightUm>
<Width>1.00000</Width>
<SlottingID />
<SlottingPalletTI>0</SlottingPalletTI>
<SlottingPalletHI>0</SlottingPalletHI>
</UOM>
- <UOM>
<DateTimeStamp>2010-01-13T10:54:37</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ConvQty>5.00000</ConvQty>
<DimensionUm>IN</DimensionUm>
<EPCPackageID>0</EPCPackageID>
<Height>5.00000</Height>
<InternalItemUm>14</InternalItemUm>
<Length>5.00000</Length>
<QtyUm>CS</QtyUm>
<Sequence>2</Sequence>
<TreatAsLoose>N</TreatAsLoose>
<TreatFullPct>100</TreatFullPct>
<Weight>5.00000</Weight>
<WeightUm>LB</WeightUm>
<Width>5.00000</Width>
<SlottingID />
<SlottingPalletTI>0</SlottingPalletTI>
<SlottingPalletHI>0</SlottingPalletHI>
</UOM>
- <UOM>
<DateTimeStamp>2010-01-13T10:54:50</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ConvQty>10.00000</ConvQty>
<DimensionUm>IN</DimensionUm>
<EPCPackageID>0</EPCPackageID>
<Height>10.00000</Height>
<InternalItemUm>15</InternalItemUm>
<Length>10.00000</Length>
<QtyUm>PL</QtyUm>
<Sequence>3</Sequence>
<TreatAsLoose>N</TreatAsLoose>
<TreatFullPct>100</TreatFullPct>
<Weight>10.00000</Weight>
<WeightUm>LB</WeightUm>
<Width>10.00000</Width>
<SlottingID />
<SlottingPalletTI>0</SlottingPalletTI>
<SlottingPalletHI>0</SlottingPalletHI>
</UOM>
</UOMS>
<BaseQty>10.00000</BaseQty>
<BaseQtyUm>EA</BaseQtyUm>
<ConvertedQty>1</ConvertedQty>
<ConvertedQtyUm>PL</ConvertedQtyUm>
<DimensionUm>IN</DimensionUm>
<Height>1.00000</Height>
<Length>1.00000</Length>
<Quantity>10.00000</Quantity>
<QuantityUm>EA</QuantityUm>
<TotalListPrice>0.00000</TotalListPrice>
<TotalValue>0.00000</TotalValue>
<TotalVolume>10.00000</TotalVolume>
<TotalWeight>10.00000</TotalWeight>
<Value>0.00000</Value>
<Volume>1.00000</Volume>
<VolumeUm>IN3</VolumeUm>
<Weight>1.00000</Weight>
<WeightUm>LB</WeightUm>
<Width>1.00000</Width>
</SKU>
<TotalCost>0</TotalCost>
</ReceiptDetail>
+ <SerialNumbers>
- <SerialNumber>
<DateTimeStamp>2010-01-27T09:27:08.867</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ObjectId>440</ObjectId>
<SerialNumber>TEST1</SerialNumber>
- <SerialNumTemplate>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<ObjectId>0</ObjectId>
</SerialNumTemplate>
</SerialNumber>
- <SerialNumber>
<DateTimeStamp>2010-01-27T09:27:08.867</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ObjectId>441</ObjectId>
<SerialNumber>TEST2</SerialNumber>
- <SerialNumTemplate>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<ObjectId>0</ObjectId>
</SerialNumTemplate>
</SerialNumber>
- <SerialNumber>
<DateTimeStamp>2010-01-27T09:27:08.867</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ObjectId>442</ObjectId>
<SerialNumber>TEST3</SerialNumber>
- <SerialNumTemplate>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<ObjectId>0</ObjectId>
</SerialNumTemplate>
</SerialNumber>
- <SerialNumber>
<DateTimeStamp>2010-01-27T09:27:08.867</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ObjectId>443</ObjectId>
<SerialNumber>TEST4</SerialNumber>
- <SerialNumTemplate>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<ObjectId>0</ObjectId>
</SerialNumTemplate>
</SerialNumber>
- <SerialNumber>
<DateTimeStamp>2010-01-27T09:27:08.867</DateTimeStamp>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<UserStamp>lmenghani</UserStamp>
<ObjectId>444</ObjectId>
<SerialNumber>TEST5</SerialNumber>
- <SerialNumTemplate>
<ProcessStamp>cb4b572f-2b2c-46b9-81b7-b585aea08f93</ProcessStamp>
<ObjectId>0</ObjectId>
</SerialNumTemplate>
</SerialNumber>
</SerialNumbers>
<Status>900</Status>
<StatusFailed>N</StatusFailed>
<ToLoc>PRIM-06</ToLoc>
<ToWhs>Moreno Valley</ToWhs>
<UploadInterfaceBatch>5f00ef65-262c-43e4-8dca-6a803424ed00</UploadInterfaceBatch>
<Weight>5.00000</Weight>
<Width>5.00000</Width>
</ReceiptContainer>
</ReceiptContainers>
<StatusFailed>N</StatusFailed>
<ToLoc>PRIM-06</ToLoc>
<ToWhs>Moreno Valley</ToWhs>
</Parent>
</ParentContainers>
<ReceiptContainers />
</Receipt>
</Receipts>
</WMFWUpload>
</WMWDATA>
</WMWROOT>

Similar Messages

  • Xml page can't display in the first time

    Hi everyone:
    I want to read data from MySQL to web page using JDOM.I read the data from database successful and insert them into a xml file.But I can't open the xml page property.It will display after I refresh the page more than ten times!
    I find that it become easy if I use JDOM to do this work.I write the logic in a servlet:
    /////////////////////////the servlet code is:////////////////////////////////////////////
         public void displayXml(){
              SAXBuilder build=new SAXBuilder();
              try{
              Document doc=build.build(new FileInputStream("C:\\tomcat\\webapps\\ROOT\\xmlbook\\mysql.xml"));
              Element root=doc.getRootElement();
              List books=root.getChildren();
              out.println("debug... ...");
              while(rs.next()){
              Element id=root.getChild("id");
              id.setText(rs.getString("id"));
              Element name=root.getChild("name");
              name.setText(rs.getString("name"));
              Element title=root.getChild("title");
              title.setText(rs.getString("title"));
              Element content=root.getChild("content");
              content.setText(rs.getString("content"));
              Element time=root.getChild("time");
              time.setText(rs.getString("time"));
              XMLOutputter xmlout=new XMLOutputter("",true,"GBK");
              xmlout.output(doc,new FileOutputStream("C:\\tomcat\\webapps\\ROOT\\xmlbook\\mysqlnew.xml"));
         }catch(Exception e){
              out.println(e.toString());
              System.out.println(e.toString());
    //////////////////////////////index.html/////////////////////////////////////////////////////
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
         <head>
              <title>Enter the title of your XHTML document here</title>
              <link style="html/css" href="style.css" rel="stylesheet"/>
         </head>
         <body>
              <h2>welcome to here</h2>
              <form action="mainpageurl" method="post">          
              <p><input type="submit" value="CliCk To EnTEr" /></p>
              </form>
         </body>
    </html>
    //////////////////////////mysql.xml////////////////////////////////////////////////////
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <?xml-stylesheet href='mysqlxsl.xsl' type='text/xsl'?>
    <rootpro>
         <id/>
         <name/>
         <title/>
         <content/>
         <time/>
    </rootpro>
    /////////////////////////////End code///////////////////////////////////////////////////
    I add a hyperlink to the xml in a web page.It will go to the xml page when user click the button.
    But there is a problem puzzle me.The xml page will not display when the user first to come this page.The browser report error:"Can't display this page.The xml file must have a top element".It can display after I refresh this xml page more than ten times.Why?But the xml page already have a top element!~.I means the client must refresh the xml page more than ten times for display it.someone know why? :(

    sorry,My xsl file is:
    ////////////////////////////mysqlxsl.xsl//////////////////////////////////////
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
    <xsl:output method="html"/>
    <xsl:template match="/">
    <html>
         <head>
              <title>WelcomE To thE MainPagE</title>
         </head>
         <body>
         <table border="1" bgcolor="#eecc00">
                   <tr>
                   <td>User Information</td>
                        <td><xsl:apply-templates select="result/entry"/></td>
                   </tr>
         </table>     
         </body>
    </html>
    </xsl:template>
    <xsl:template match="entry">
    <li><xsl:value-of select="ID"/></li>
    <li><xsl:value-of select="Name"/></li>
    <li><xsl:value-of select="Title"/></li>
    <li><xsl:value-of select="Content"/></li>
    <li><xsl:value-of select="Time"/></li>
    </xsl:template>
    </xsl:stylesheet>
    I want to transform the xml file using the xsl.

  • Accessing the xml content

    can any one help me to access the xml contents using a servlet or a java code.
    eg: there are some tags in xml and i want to access those contents from those tags and display it..
    if u can please mail me to:
    [email protected]

    Hi Suresh
    I need the same one for my requirement if u have please post to this site or send me an email .
    [email protected]
    I can able to parsed one structured XML file using SAX
    Sample code :
    // ===========================================================
         // SAX DocumentHandler methods
         // ===========================================================
         public void startDocument() throws SAXException {
              logger.info("Start of document");
         public void endDocument() throws SAXException {
              logger.info("End of document");
         public void startElement(String namespaceURI, String localName, // local
                   // name
                   String qualName, // qualified name
                   Attributes attrs) throws SAXException {
              elemName = new String(localName); // element name
              if (elemName.equals(""))
                   elemName = new String(qualName); // namespaceAware = false
              tagPosition = TAG_START;
              // Set the string for accumulating the text in a tag to empty
              elemChars = "";
              // If the element name is "row", create a new row instance
              // If the element is "indexxid", "ModelPrice", or "ModelSpread",
              // the value will be read in the method "characters" and stored.
              if (elemName.equals("row")) {
                   row = new IndexRow();
                   numRows++;
              // logger.info("Number of numRow:"+numRows);
         } // end method startElement
         public void endElement(String namespaceURI, String simpleName, // simple
                   // name
                   String qualName // qualified name
         ) throws SAXException {
              elemName = new String(simpleName);
              if (elemName.equals(""))
                   elemName = new String(qualName); // namespaceAware = false
              tagPosition = TAG_END;
              String indexId = new String();
              Double dblVal = new Double(0);
              // If element name is "row", put the current row in the map for row
              // instances
              if (elemName.equals("row")) {
                   if (numRows <= 5) { logger.info("Row is: " + row.toString()); }
                   //ABX
                   //indexRows.put(row.getIndexxId(), row);
                   if (family.equals("ABX.HE")){
                   indexRows.put(row.getIndexREDId(), row);
                   else {
                        //CDX ITRXX
                             indexRows.put(row.getIndexxId(), row);
              } else if (elemName.equals("IndexID")) {
                   row.setIndexxId(elemChars);
              else if (elemName.equals("ModelPrice")) {
                   // Leave double value at default of zero if there are no chars
                   if (elemChars.trim().length() != 0) {
                        dblVal = new Double(elemChars);
                        row.setModelPrice(dblVal);
                        indexId = row.getIndexxId();
              } else if (elemName.equals("ModelSpread")) {
                   // Leave double value at default of zero if there are no chars
                   if (elemChars.trim().length() != 0) {
                        dblVal = new Double(elemChars);
                        row.setModelSpread(dblVal);
                        indexId = row.getIndexxId();
              } else if (elemName.equals("CompositePrice")) {
                   // Leave double value at default of zero if there are no chars
                   if (elemChars.trim().length() != 0) {
                        dblVal = new Double(elemChars);
                        row.setCompositePrice(dblVal);
                        indexId = row.getIndexxId();
              } else if (elemName.equals("CompositeSpread")) {
                   // Leave double value at default of zero if there are no chars
                   if (elemChars.trim().length() != 0) {
                        dblVal = new Double(elemChars);
                        row.setCompositeSpread(dblVal);
                        indexId = row.getIndexxId();
              } else if (elemName.equals("REDCode")) {
                   row.setRedCode(elemChars);
              else if (elemName.equals("Name")) {
                   row.setRowName(elemChars);
              } else if (elemName.equals("Series")) {
                   row.setSeries(elemChars);
              } else if (elemName.equals("Version")) {
                   row.setVersion(elemChars);
              } else if (elemName.equals("Term")) {
                   row.setTerm(elemChars);
              } else if (elemName.equals("Maturity")) {
                   row.setMaturity(elemChars);
              } else if (elemName.equals("OnTheRun")) {
                   row.setOnTheRun(elemChars);
              } else if (elemName.equals("Date")) {
                   row.setRowDate(elemChars);
              } else if (elemName.equals("Depth")) {
                   row.setDepth(elemChars);
              else if (elemName.equals("Heat")) {
                   // logger.info("Chars for element " + elemName + " are '" +
                   // elemChars + "'");
                   // Leave double value at default of zero if there are no chars
                   if (elemChars.trim().length() != 0) {
                        dblVal = new Double(elemChars);
                        row.setHeat(dblVal);
                        indexId = row.getIndexxId();
    //          ABX.HE
              else if (elemName.equals("IndexREDId")){
                   row.setIndexREDId(elemChars);
              else if (elemName.equals("Coupon")){
                   row.setCoupon(elemChars);
              if (elemName.equals("Ontherun")) {
                   row.setOnTheRun(elemChars);
         } // end method endElement
         public void characters(char buf[], int offset, int len) throws SAXException {
              // If at end of element, there will be no characters
              if (tagPosition == TAG_END) {
                   return;
              // The characteres method may be called more than once
              // for an element if the internal buffer fills up.
              // Append the characters until the end of the element.
              String strVal = new String(buf, offset, len);
              elemChars = elemChars + strVal;
         } // end method characters
    } // end class MarkItIndexLoader
    but the problem is i want to parse any XML file means any Elemets would be change any time using SAX .In the above example
    else if (elemName.equals("Heat")) {
    else if (elemName.equals("IndexREDId")){
    } else if (elemName.equals("Maturity")) {
    like above I am doing hard code so i don't want hard coding the elements names I want to read any element name and value dynamically.
    Dynamically i want to read the root and child elements
    EX: I can give any XML file like
    Student.XML: <root>..</StName>..</StAge>...</root>
    Employee.XML: <root>..</EmpName>..</EmpAge>...</root>
    CdCatalog.XML: <root>..</Cdtitle>...</CdNumber>...</root>
    I need one java program can ready any type of XML file elements and send to the Database table.
    Please any one done like this task please suggest some reference links or books or sample snippet which can help me to develop program in my requirement.

  • Strange scenario,Oracle can not display the data in mysql correctly

    I use Heterogeneous Service+ODBC to achieve "oracle access mysql"(any other method?),and now i find Oracle can not display the data in mysql correctly:
    -------mysql------------
    mysql> create table tst(id int,name varchar(10));
    Query OK, 0 rows affected (0.00 sec)
    mysql> insert into tst values(1,'a');
    Query OK, 1 row affected (0.00 sec)
    mysql> select * from tst;
    ------------+
    | id | name |
    ------------+
    | 1 | a |
    ------------+
    1 row in set (0.00 sec)
    mysql> show create table tst\G
    *************************** 1. row ***************************
    Table: tst
    Create Table: CREATE TABLE `tst` (
    `id` int(11) DEFAULT NULL,
    `name` varchar(10) DEFAULT NULL
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8
    1 row in set (0.00 sec)
    -------------oracle ------------------
    SQL> select count(*) from "tst"@mysql;
    COUNT(*)
    49
    SQL> select * from "tst"@mysql;
    id
    1
    SQL> desc "tst"@mysql;
    Name Null? Type
    id NUMBER(10)

    You can make the following query on the result page:
    "select * from the_table where movietitle = ? and cinema = ?"
    then you set movietitle and cinema to those which the user selected. If the resultset contains more than 0 rows, that means the movie is available.
    Below is the sample code, it assumes you have a connection to the database:
    PreparedStatement stat = myConnection.prepareStatement("select * from the_table where movietitle = ? and cinema = ?");
    stat.setString(1, usersMovieTitleSelection);
    stat.setString(2, usersCinemaSelection);
    ResultSet res = stat.executeQuery();
    if (res.next()) {
    out.print("The movie is available");
    } else {
    out.print("The movie is not available");
    }Now just add that to your JSP page. Enjoy ! =)

  • Skygo content will not display on TV when mirror function enabled

    my skygo content will not display on my TV when I stream from my iPad and have mirror function enabled. It will stream other video content. I get a message that HDMI out is not supported by the application and a black screen. I do hear the sound of the program being streamed. Can the block be overcome?

    I Believe the sky app blocks Airplay.

  • MenuBar can not display all menuitem

    Hello,everyone!
    There is a Menubar.
    The Menubar has 100 menuitems.
    Problem:Can not display all menuitems.
    Do MenuBar's SubMenu has Scroller?
    Sample:
    <mx:MenuBar id="myMenuBar" width="450" height="50" >
    <mx:dataProvider>
    <mx:XML>
    <menuitem label="menuitem 1"/>
    <menuitem label="menuitem 1"/>
    </mx:XML>
    </mx:dataProvider>
    </mx:MenuBar>
    <menuitem label="menuitem 1"/>
    Can not display all menuitems.

    you might want to use some flexlib components lib
    take a look at this :
    http://code.google.com/p/flexlib/wiki/ComponentList
    and specifically at this component :
    http://flexlib.googlecode.com/svn/trunk/examples/ScrollableMenus/ScrollableMenu_Sample.swf

  • The admin page can not displayed completely

    Dear all,
    i have install OracleXEUniv,
    the www login page displayed OK, i can login
    after that i run . for update in rel 3.0 .. ..
    @apexins myadminpassword SYSAUX SYSAUX TEMP /i/
    .. the sql ran finish ok
    but when i try access the address
    the login page displayed not OK, image can not displayed, when i enter username and password, and click login, there is massage 'Error in page'
    how to repair that ? is wrong in my step ?
    i used :
    IE Ver 7
    Os XP
    thanks for anwer

    Hi,
    Make sure you followed the post-installation tasks mentioned in the Installation Guide.
    On a Windows system, you can copy the apex\images directory using Windows Explorer or execute a command such as the following from a command prompt:
    xcopy /E /I htmldb\images ORACLE_BASE\ORACLE_HOME\Apache\Apache\images
    On UNIX or Linux based systems, you can copy the apex/images directory by executing a command such as the following:
    cp -rf htmldb/images ORACLE_BASE/ORACLE_HOME/Apache/Apache
    Make sure that you have /i/ defined in one file (httpd.conf, marvel.conf OR dads.conf)
    -Priyanka

  • My ipod touch 4G got problem after update to iOS 6, it can not access the Apps store ,can not access safari,map, weather and so on, could someone help me to solve the problem, thanks in advance~~~

    My ipod touch 4G got problem after update to iOS 6, it can not access the Apps store ,can not access safari,map, weather and so on, could someone help me to solve the problem, thanks in advance~~~

    Force close the App Store app and reset the iPad. No data will be lost when you reset the device.
    In order to close apps, you have to drag the app up from the multitasking display. Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to the app that you want to close and then swipe "up" on the app preview thumbnail to close it.
    Next, reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • While Installing this error is coming This Program can not display the pag

    When I Try to Install SAP B1 8.8 on Win server 2008.
    I am receiving this message.
    This Program can not display the page
    The website is encountering Problem
    There might be a typing error in the address
    At the time of Installation which site we need to access.
    My Internet is working.
    Still i am facing this Problem please suggest me what should I do.

    HI Ram ,
    Internet is not required while Installation .
    Go through :
    Re: SAP Business Installation
    Thanks
    Ashish

  • Problem with Loader Components, can not display my forms properly

    Here is the problem (my God, my customer waiting for his web
    site:( ... ) I have a form made in CoffeeCup Flash Form Builder
    (Nice one...).Now this form with fields like name, sec name age,
    etc I want it to apear into my main screen when I press the button
    "Reservation" and then the customer could fill the fields and sent
    it to my mail. I tryed with the Loader Component, I mean when I
    press the button then starts "playing" the form.swf. BUT the Loader
    can not display the form properly specialy thinks like drop down
    menus in the form, or check boxes....It just show me the
    form....The Flash Form Builder gives me 4 files like: form.swf,
    form.html, form.php and form.xml. Any solution on how my customers
    complete this form with no problems?
    THANK YOU A LOT!

    Dear,
    You have to following these step to run form on firefox,
    Run the following file,
    1) C:\DevSuiteHome_1\jinit\jinit.exe
    2) jvm.dll copy this file to the following path,
    C:\Program Files\Oracle\JInitiator 1.3.1.22\bin\hotspot
    3) And firefox connection settiong with 'No-Proxy'
    The above setting it will help full you to run your form on firefox.
    Thank you,

  • Date can not display correctly in excel from .jsp

    Hi,
    I create a .jsp report to export the data to excel. the report run OK, except the date field can not display correctly.
    for example in database :start date ='01-oct-2003'
    in the except it displays to 02/06/02.
    It seem all the date field can not be control in the report, and control by somthing else
    Doese anyone come accross this problem?
    Thanks

    Hi Rong,
    Are you using the following demonstration to build your JSP?
    http://otn.oracle.com/products/reports/htdocs/getstart/demonstrations/index.html
    (Output to Excel with Oracle9i Report)
    I tried to do the same, and inserted a database date field in the JSP using Reports. I found the following:
    While making the template inside Excel, if I make sure that the format of the date cells is "Date" - some particular date format, the date field values from Reports does not get exported correctly.
    However, if you make sure that inside the template, the format of the date cells is not date, but "General", then the date field values are correctly exported to Excel.
    Pl try it and let us know.
    Navneet.

  • SuperFrench is found but this font can not display any text

    "SuperFrench" font comes from Autodesk. this fonts's real file name is supef__.ttf
    If it is placed in C:\Windows\Fonts folder then it is available for Windows native apps such as MS Excel.
    Java GraphicsEnvironment finds "SuperFrench" font
    but this font can not display any text.
    This happens in both Java6(1.6.0_34) and Java7(1.7.0_06)
    try this
    import javax.swing.*;
    import java.awt.*;
    import java.util.*;
    public class FontTest01 {
      public static void main( String[] args ){
        FontTest01 app = new FontTest01();
        app.run();
      void run() {
        String fontName = "SuperFrench"; //** SuperFrench font
        GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
        String[] existFontNames = ge.getAvailableFontFamilyNames(Locale.ENGLISH);
        boolean fontExists = false;
        for( int i=0 ; i<existFontNames.length ; i++ ){
          if( existFontNames.equals( fontName ) ){
    fontExists = true; break;
    if( fontExists==false ){
    System.out.println( fontName +" does not exist" );
    System.exit(-1);
    JLabel label = new JLabel( "ABCDEFG" );
    Font font = new Font( fontName, Font.PLAIN, 20 );
    System.out.println( font.getFontName() );
    label.setFont( font );
    JFrame f = new JFrame();
    f.add( label );
    f.setSize( 180, 120 );
    f.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    f.setVisible(true);
    Edited by: TadashiOhmura on 2012/06/17 23:04
    Edited by: TadashiOhmura on 2012/06/18 7:50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Thank you for your replay.
    I face the same trouble with JavaFX
    I report this problem into Jira and filed as RT-22641
    Some members of Oracle developer team write comments for this issue.
    http://javafx-jira.kenai.com/browse/RT-22641
    This font has some irreguler structure.
    I hope Java font system will deal with it.

  • Footer content is not displayed in SAPscript.

    hello friends,
    The main window content that has to be diaplayed is more than the size of the main window. Hence the contents that fit the main window size are displayed. Eventually my footer content is not displaying. What cud be the possible reason?
    Please guide me.
    Thanks.
    Message was edited by:
            Alchemi

    Hmm.....  Do you have an element in your FOOTER Window?
    /E   ELEMENT_NAME
    If so, are you doing a WRITE_FORM against this in your print program?
    CALL FUNCTION 'WRITE_FORM'
        exporting
              element = 'ELEMENT_NAME'.
    Regards,
    Rich Heilman

  • Urgent: Graph can not display

    Hi,
    My report can not display graph correctly if I view the report from report server in html format, because the graph url use report server's hostname, not IP. If I use IP view the graph, there are no problem.
    So my problem is how to config the report server for the graph display correctly?
    I tried to modify the IMAGEURL in rwservlet.properties, it doesn't work.
    I tried to modify the hosts file in local maching to mapping the report server hostname and IP, the praph can display, but it's not a good idea for all user to config their client maching .
    Thanks in advance.
    report url:
    http://172.20.137.205:7777/reports/rwservlet?htportalconn&destype=cache&desformat=HTMLCSS&report=usage_report.rdf&p_conn_string=htportalconn&P_Bill_Period=200806&p_report_id=41
    graph url in report (can not display):
    http://hk8sp202:7777/reports/rwservlet/getfile/HW/YX+J7DBjNFKgUnojRyFXmKwm2qqSnwR277aMm/561014461.jpg
    if replace the hostname with IP in graph url, graph can display:
    http://172.20.137.205:7777/reports/rwservlet/getfile/HW/YX+J7DBjNFKgUnojRyFXmKwm2qqSnwR277aMm/561014461.jpg
    Sammy
    Edited by: Sammy Song on Sep 8, 2008 12:54 AM

    Hello Anek,
    Refer to SAP Note 704604 and 454042.
    Also,
    http://help.sap.com/saphelp_nw04/helpdata/en/76/41d43ab8029b66e10000000a114084/frameset.htm
    and
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/4846ac90-0201-0010-099d-d3b4e271849c
    regards
    Atul Shrivastava
    PS:Award points for helpful answer.

  • It can not displayed sap script

    i have to post invoice in vendor a/c,then run to APP successfully,then execute  spool,actually hear it can displayed ABAP list file, SAP script(otf) file,and SAP script file(otf) but hear only displayed ABAP list file, SAP script(otf) file it can not displayed vendor payment advice list why. pls give me answer

    Hi Shirley,
    I assume the hardware is less on the target than on the source or they are different at least in terms of hardware specs
    If the system is not starting, check the dev_disp.log, the stderr* files, and the dev_w0 log from the work directory to find the exact error. Does the system start if you increase or decrease this value?
    Regards,
    Paul

Maybe you are looking for