Relational access to aw

Hello,
I am evaluating, how one can access a cube via SQL. I generated Views for any dimension and cubes with the procedures in package DBMS_AWM (CREATE_AWDIMENSION_ACCESS_FULL, CREATE_AWCUBE_ACCESS_FULL)
I don't understand, what I can do with the views. I thought I could query them like it was a normal star-schema, but didn't succeed for now.
Is there an example? Is my intention possible?
regards,
Tobias

ok, the problem has cleared. I was not sure about the use of et and gid and accordingly the combination of both.

Similar Messages

  • Error while building cube using Relational Access Manager - URGENT

    When we try to build the Express Hybrid database using Relational Access Manager, We got the following error in the Windows NT Event log.
    "[159] XCA Interface - Exception C0000005 occurred in the XTLLISTN:ClientThread() function in the XWCXCA.DLL module"
    We are using Oracle Express 6.3.2 and Windows NT 4.0 Enterprise and Oracle 8.1.7
    Kindly Help
    Thanks & Regards
    ashish

    We are using Oracle Express 6.3.2 and Windows NT 4.0 Enterprise and Oracle 8.1.7
    -------------------------------------------------------------------------------- Unfortunately your configuration is not officially certified. You will want to upgrade to Express 6.3.2.1 in order to run against Oracle 8.1.7.
    Server Certifications for Windows NT 4.0:
    Express 6.3.2 with Oracle EE 8.1.6
    Express 6.3.2.1 with Oracle EE 8.1.7 & 9.0.1
    Express 6.3.4 with Oracle EE 8.1.7 & 9.0.1

  • How to use Relational Access Administrator from Express Administrator

    I added the following [Relational Access Administrator] group to my xadmin.ini file:
    [Relational Access Administrator]
    InUse=-1
    ExePath=f:\OraExpClnt\olap\Ead630\xadmin.exe
    The Relational Access Administrator under Tools in the Express Administrator is still greyed out and I cannot access it.
    Did I missed any step ? Any suggestions on how to make the Relation Access Administrator show ?
    Thanks
    Lee
    null

    Hi
    When yr SAP is running at time u need to connect yr  add-on Copyexpress. (CE)
    then go in tool > open copy express
    onces yr CE is open i other windows select source & target company.
    Take a backup
    select BP and upload (it wil take som time)
    I hope this r basic step
    Thanks
    Kevin

  • Express and Relational Access Admin

    I'm testing the sample db that comes with Oracle Express 6.1.3 but after I build the actuall express database (using RAA build maintance routine). I can't seem to access the data using express web agent commands. I'm able to use Sales Analyzer and other programs to open the database but not the web agent.
    Here's the error message that I get (it appears in a java dialog box):
    In stored procedure XWD_DCUR.UPDATE: The following Express Server error occurred: (MXMSERR) SQ.FETCH.DRV does not exist in any attached database.
    In stored procedure XWDCUBE.UPDATE: The following Express Server error occurred: (MXMSERR) SQ.FETCH.DRV does not exist in any attached database.
    In stored procedure XWDCUBE.EVAL:
    In stored procedure XWDJEXEC:
    any ideas?
    thanks

    My vague memory was that the SDK was missing some files that Messaging expected.
    you might explore the log files, and see what it is that it's missing.

  • Z-index related / access layer below

    Hi there,
    I'm building off of an image map coded by someone else. I
    have a large image with the maps marked. Over the maps are layer
    divs with a z-index that are to act as rollovers, showing full
    alpha on rollover and 0 visibility on mouseout. Great - works fine.
    The image maps are under the layer above. When I click the mouse,
    the faux-rollover no longer should appear and I need to access the
    image change of the large image below. As of now when I click the
    dispaly changes to none, though the image map onMouseDown does not
    work. — Is there a way I can work with the pre-exsting code
    to make this work. (I could go into slicing, though the simpler the
    better.
    thank you!

    Can you show us the code, please? Or better yet, post a link
    to the page?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "JenMQui" <[email protected]> wrote in
    message
    news:f4car2$m7e$[email protected]..
    > Hi there,
    >
    > I'm building off of an image map coded by someone else.
    I have a large
    > image
    > with the maps marked. Over the maps are layer divs with
    a z-index that are
    > to
    > act as rollovers, showing full alpha on rollover and 0
    visibility on
    > mouseout.
    > Great - works fine. The image maps are under the layer
    above. When I click
    > the
    > mouse, the faux-rollover no longer should appear and I
    need to access the
    > image
    > change of the large image below. As of now when I click
    the dispaly
    > changes to
    > none, though the image map onMouseDown does not work. ?
    Is there a way I
    > can
    > work with the pre-exsting code to make this work. (I
    could go into
    > slicing,
    > though the simpler the better.
    >
    > thank you!
    >

  • 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>

  • Crystal relort access in R/3

    Below error occured while accessing tables in crystal reports. Quite sure its not an SAP related access issue. Can anyone help to resolve this. Thanks!
    Data object can not be opened/accessed
    Details: Table level security check failed

    Hi,
    It depends on your requirements...as far as i know,we really don't need edit/create access in r/3 production for a BW developer...You can provide access later if necessary...
    hope this helps
    pl don't forget to reward if it helps
    Message was edited by: Murali

  • How to use access keys in 10g

    hi,
    i have migrated my form from 4.5 to 10g
    but i am not able to use access keys
    Please help...
    thanks in advance
    smdedp

    Do you mean system-related access keys or custom-related...????
    Sim

  • Crystal Reports and Universe Connection (Access DB)

    Hi,
    I am trying to use a universe as a data source for Crystal Reports 2008. The universe is defined on a simple relational Access DB table (.mdb file which resides on the server). After selecting the universe as data source, I can select measures and attributes from it, but after clicking "ok" I am getting the error "Fehler bei Anmeldung." ("Logon failed.").
    Please note that although I am connecting to a relational (not OLAP!) DB, SAP-Note
    " 1363326 - Error: Logon failed on Crystal Report conecting to OLAP Universe."
    describes exactly the error I am facing (except that this note is for OLAP universes).
    The universe works fine if I use it in WebI as data soruce.
    Which universes can Crystal Reports 2008 actually use in general?
    Are there any special restrictions for the data model?
    Thanks for your help!

    Make sure that the Access DB is accessible also from the local workstation the CR Designer is installed on.
    In fact I would recommend to setup your universe connection to you the generic ODBC driver and setup a system DSN for accessing the DB once on your BO server and once on your client. Make sure to use the same DSN name in both cases.
    Regards,
    Stratos

  • Tutorial Request: How to use / access HTML in FC?

    http://livedocs.adobe.com/flex/3/html/help.html?content=FlexApolloComponents_09.html
    Looking for a step by step to place HTML in a container, iframe, or whatever will work, to access HTML code.
    this is what I'm looknig for: 
    "while it is possible to use a subset of HTML with Flash "
    I have a Website that  is HTML
    Several pages of that HTML site need to be accessed from the Flash site built using FC.
    What is the procedure to make the HTML site Linked, or look like it's part of the FC website?
    Can FC use iframes or the equivelent of?
    I can build a site using HTML that can have Flash Placeholders.
    "What is Flash Catalyst? Adobe® Flash® Catalyst™ CS5 software is an approachable new interaction design tool. Transform Adobe Photoshop®, Illustrator®, and Fireworks® artwork into expressive, fully interactive projects without writing code, and leverage the reach and consistency of the Adobe Flash Platform."
    Flash catalyst, unlike XDP6 web generation, is all about generating Flash not HTML, so while it is possible to use a subset of HTML with Flash you should really not be trying to use a Flash generation tool as though it were generating HTML like the Xara software.

    Do you mean system-related access keys or custom-related...????
    Sim

  • Non access modifier: default

    Top of the morning.
    Im studying for my SCJP exam and I have 2 text books.
    One of the text books asks the following question:
    (Im only writing the one answer im sceptical about)
    which of the following declarations are illegal?
    A. default String s;The answer at the back says that the above is illegal because defaultis not a keyword. But am I right in saying that unless you explicitly declare a class member
    as having one of the 4 access levels, it is automatically give default access - so in essence
    writing default is redundant if you don't give the member private, public or protected access.
    Nevertheless you could write default String s; couldn't you?
    The above declaration does compile.
    Thanks

    shamrock08 wrote:
    The answer at the back says that the above is illegal because defaultis not a keyword. [It is|http://java.sun.com/docs/books/tutorial/java/nutsandbolts/_keywords.html], it is just not one [related access|http://java.sun.com/docs/books/tutorial/java/nutsandbolts/switch.html].
    The above declaration does compile.It does not in Eclipse. Lets see your compiling code.
    Nevertheless you could write default String s; couldn't you?
    No.

  • HTTP/1.1 407 Proxy Authentication Required ( Forefront TMG requires authorization to fulfill the request. Access to the Web Proxy filter is denied. )

    17:06:13 Synchronizer Version 14.0.6123
    17:06:13 Synchronizing Mailbox '[email protected]'
    17:06:13 Synchronizing Hierarchy
    17:06:13   4 folder(s) added to online store
    17:06:13   1 folder(s) updated in online store
    17:06:13 Synchronizing local changes in folder 'Inbox'
    17:06:13 Error synchronizing folder
    17:06:13 [80041004-0-0-430]
    17:06:13 Error with Send/Receive.
    17:06:13 There was an error synchronizing your folder hierarchy. Error : 80041004.
    17:06:13 Synchronizing server changes in folder 'Calendar'
    17:06:13 Synchronizing server changes in folder 'Contacts'
    17:06:13 
    17:06:13 
    *Request*       
    17:06:13 17:06:13:0590
    17:06:13 POST
    17:06:13  http://
    17:06:13 contacts.msn.com
    17:06:13 /ABService/ABService.asmx
    17:06:13 
    17:06:13 <ABFindAll xmlns="http://www.msn.com/webservices/AddressBook"> <abId>00000000-0000-0000-0000-000000000000</abId><abView>Full</abView><deltasOnly>false</deltasOnly></ABFindAll>
    17:06:13 
    *Response*  
    17:06:13 17:06:13:0870
    17:06:13 HTTP/1.1 407 Proxy Authentication Required ( Forefront TMG requires authorization to fulfill the request. Access to the Web Proxy filter is denied.  )
    Via: 1.1 TMG
    Proxy-Authenticate: Negotiate
    Proxy-Authenticate: Kerberos
    Proxy-Authenticate: NTLM
    Connection: close
    Proxy-Connection: close
    Pragma: no-cache
    Cache-Control: no-cache
    Content-Type: text/html
    Content-Length: 707
    17:06:13 
    17:06:13 
    17:06:13 
    17:06:13 Error with Send/Receive.
    17:06:13 There was an error synchronizing a contacts folder. Error : 80004005.
    17:06:13 Synchronizing server changes in folder 'Drafts'
    17:06:13 Synchronizing local changes in folder 'Inbox'
    17:06:13 Error synchronizing folder
    17:06:13 [80041004-0-0-430]
    17:06:13 Synchronizing server changes in folder 'Sent Items'
    17:06:13 Synchronizing server changes in folder 'Deleted Items'
    17:06:13 Synchronizing server changes in folder 'Junk E-mail'
    17:06:13 Done
    17:06:13 
    17:06:13 
    *Request*       
    17:06:13 17:06:13:0870
    17:06:13 POST
    17:06:13  http://
    17:06:13 mail.services.live.com
    17:06:13 /DeltaSync_v2.0.0/Settings.aspx
    17:06:13 
    17:06:13 <?xml version="1.0" encoding="utf-8"?><Settings xmlns="HMSETTINGS:"><ServiceSettings><SafetySchemaVersion>1</SafetySchemaVersion><SafetyLevelRules><GetVersion/></SafetyLevelRules><SafetyActions><GetVersion/></SafetyActions><Properties><Get/></Properties></ServiceSettings><AccountSettings><Get><Options/><Properties/></Get></AccountSettings></Settings>
    17:06:13 
    *Response*  
    17:06:13 17:06:13:0870
    17:06:13 HTTP/1.1 407 Proxy Authentication Required ( Forefront TMG requires authorization to fulfill the request. Access to the Web Proxy filter is denied.  )
    Via: 1.1 TMG
    Proxy-Authenticate: Negotiate
    Proxy-Authenticate: Kerberos
    Proxy-Authenticate: NTLM
    Connection: close
    Proxy-Connection: close
    Pragma: no-cache
    Cache-Control: no-cache
    Content-Type: text/html
    Content-Length: 707
    17:06:13 
    17:06:13 

    Hi,
    According to the log, it seems that TMG firewall denied the request and replied with an HTTP 407 response, indicating that proxy authentication was required. This was done because the Forefront TMG firewall did not have any access rules which would allow
    the anonymous request. Please check if you have configured related access rules.
    When did you recieve this log? Is there anyting wrong? Which authentication method you have used, Kerberos, NTLM or other? 
    It seems that each time a web proxy client requests a resource through a Forefront TMG firewall that requires NTLM authentication the client is actually denied twice during the transaction before being successfully authenticated and allowed access. When
    the Forefront TMG firewall is configured to use Kerberos there is only a single denied request and HTTP 407 response and then contact a domain controller and obtain a Kerberos ticket to present to the TMG firewall to gain access to the resource.
    If you configured the TMG clients with a certain proxy name, please make sure you typed the TMG's domain computer name only (not IP address nor alias).
    Best regards,
    Susie

  • Object Relational Mapping - How to? - With SQLJ? - What brings the future?

    Hi there,
    we are developing applications for masterdata
    maintainance and masks with fast user interaction using a two-tier architektur and a layered java application on the client.
    Currently we are using TOPLink for the ORM stuff.
    As we need a simple and efficient way to encapsulate gui stuff from database interaction i am interessted in SQLJ for the descripted purpose.
    These are my questions:
    1. Can I use SQLJ with a Oracle database lower than 8i
    2. Is there a runtime fee for SQLJ?
    3. How does SQLJ relate to the app server
    hpye?
    4. Where can I get SQLJ?
    5. Do I need JDeveloper in combination with SQLJ or can I use any other IDE?
    Thanks for your input.
    Regards,
    Wolfgang Rothmayer.

    SQLJ is actually orthogonal to use of ORM. It is an embedded language API for (static) SQL database access in contrast to JDBC.
    If you are using SQL Object types (Oracle 8i and later) then there is the JPublisher tool to map these into Java classes.
    Oracle also provides the BC4J (Business Components for Java) product for object-relational access. This is used mostly in conjunction with JDeveloper.
    So from an ORM perspective you would not be asking for SQLJ.
    To the SQLJ-specific questions:
    1. Yes. SQLJ relies on Oracle JDBC for database access. Oracle 7.2 and later can be accessed.
    2. No.
    3. SQLJ can be used in any tier - just like JDBC can.
    4. In the OTN download area. It is also part of all Oracle database releases since 8.1.5.
    5. SQLJ comes with a command line interface (similar to Javac). It is also directly supported in the Oracle server-side JavaVM, which has an integrated Java compiler and SQLJ translator.
    IBM VisualAge for Java has added support for SQLJ. For other IDEs you would be on your own, though I have heard that JBuilder users have been able to integrate SQLJ in their IDE (if somebody sends us a recipe for using SQLJ in their favorite IDE, we'll be happy to include that in future distributions). SQLJ could be integrated either through the commandline, or -for tighter support- through its IDE interface package in sqlj.framework.ide.

  • Can HPCM calculate percentages to use in allocations as well as perform the allocations

    Hi All
    I have a client that is evaluating which products to purchase from the Oracle stack.  Unfortunately I don't know HPCM yet so I'm not sure of its capabilities.  I think they will definitely go with Hyperion Planning but they do some relatively simple allocations and I cannot decide whether or not they need HPCM.  They currently have a relational / access database that is used to calculate percentages to be used to allocate costs from back office to front office.  Whether they need to purchase HPCM seems to depend upon whether HPCM can calculate the percentages required for the allocation as well as perform the allocations.  The options as I see it are:
    1.  Replace legacy system with HPCM and use HPCM to calculate percentage and apply percentages to allocate costs
    2.  Keep legacy system for calculating percentages, upload percentages to HPCM and use HPCM to allocate costs
    3.  Keep legacy system for calculating percentages, upload percentages to Essbase and use Essbase to allocate costs
    4.  Keep legacy system for calculating percentages and allocating costs (not ideal as will require additional system interfaces of data from and to Hyperion Planning)
    I know HPCM uses Essbase, when I say Essbase above I mean Hyperion Planning.  I have advised the client that they ought to avoid option 4 but I am not clear enough on what HPCM can do to advise them on which of the other options is most suitable / cost effective.
    Any help would be appreciated.
    Regards
    Stu

    Hi Stu,
    the plain answer is Yes, HPCM can do such a simple task. In my private opinion, it would be a bit oversized.
    I want to add an option and put my vote on this:
    0.  Pull in a DB connection the required data into Planning and use Planning to calculate percentage and apply percentages to allocate costs.
    Regards,
    Philip Hulsebosch.
    www.trexco.nl
    p.s. To all users, close questions which were answered. Then we do not have to open them to see if we can help = saves us time to help others.

  • How can I use an Express database build with RAA in Express Objects???

    Hello, everybody!
    I have installed Express Server and Client on my computer. I've build an Express database With Relational Access Manager mapping data from an Oracle database.
    Now I want to use this express database in Oracle Express Objects.
    I understand that an express database build with understand can be used by defining a connection to Express Server and using the option Relational Access Manager Connection.
    But, I didn't understand the settings of this option. I open the settings window and there it is :
    - the MASTER DATABASE Box where I have to write the name of the CUBE from the express database build with understand?
    - the RDC File Box : what do I have to write here? I've read the HELP but I didn't understood. There is no file with the RDC extension in my computer.
    Thank you for your help!
    Anca.
    [email protected]

    you can extend it, very easly, with an Airport Express.
    once you connect the AExpress, on the App Airport Utility, in Wireless tab choose to "Extent a Network", you will be able to select your Network enter your Network Password and it is done
    i have 2 AExpress to extend my signal and also to Airplay to Remote Speakers and works perfectly
    good luck

Maybe you are looking for