PAAPINVW -- how to fetch values for invoice line level details

My requirement is such that we define one of our account segments at invoice line dff's while creating the invoice against a project. So the ccid would need to driven from this invoice line dff, to be complete and valid.
Project Supplier Invoice Account Generator (PAAPINVW) has already defined attributes for Invoice Header DFF's and Invoice Distribution level DFF's; but Invoice line level DFF's have not been defined.
Also there are no attributes that would help me query the invoice line to fetch these details.
Working on this workflow in R12. Has anyone tried to fetch any sort of details from invoice lines, using any existing attributes in PAAPINVW; or has anyone done something in accordance to this??
Looking for suggestions.. have anyone faced a similar situation before??

Hi user;
Pelase check below note cause and solution part please,which at least can gives u some ideas
Projects Supplier Invoice Account Generation Error: APP-SQLAP-97734: The System Cannot Generate Distributions [ID 823787.1]Regard
Regard
Helios

Similar Messages

  • How to enable DFF for each line level on a Table Region - very very urgent

    Hi,
    I have a Master- Detail Page, Detail is Table region. I need to enable DFF (Context Based) for each line. If any one has done similar requirement please share how to do this. Its very very urgent.
    It is a standard page.
    Thanks,
    Edited by: user8996062 on Jun 29, 2011 2:58 AM

    Can any one please help me on this it is very urgent.
    Thanks,

  • How to set value for table lines in web dynpro ?

    Hi experts,
    I'm new in webdynpro. My requirement is to set value to the second line when user press expand on first line.
    In method ONACTIONLOAD_CHILDREN , I use  get_static_attributes_table to get the current table records and change return table value .
    Then i user bind_table to pass table to the screen.
    It works fine for first time i press expand and collaps, but when i expand it again it throw out a dump 'OBJECTS_OBJREF_NOT_ASSIGNED'.
    Could any one please help to solve that?
    Thanks

    Hi Harsha,
    Thanks for your reply,I've check the dump details and it display like this:
    Information on where terminated
        Termination occurred in the ABAP program "CL_WDR_CONTEXT_ELEMENT========CP" -
         in "IF_WD_CONTEXT_ELEMENT~SET_ATTRIBUTE".
        The main program was "SAPMHTTP ".
        In the source code you have the termination point in line 40
        of the (Include) program "CL_WDR_CONTEXT_ELEMENT========CM007".
        The termination is caused because exception "CX_SY_REF_IS_INITIAL" occurred in
        procedure "IF_WD_CONTEXT_ELEMENT~SET_ATTRIBUTE" "(METHOD)", but it was neither
         handled locally nor declared
        in the RAISING clause of its signature.
        The procedure is in program "CL_WDR_CONTEXT_ELEMENT========CP "; its source
         code begins in line
        1 of the (Include program "CL_WDR_CONTEXT_ELEMENT========CM007 ".
    First time i debug it work fine but the next time it dump with same import values.  And it even did not reach the logic i add when i expand it again.
    I'm not sure why it happen.
    My code in ONACTIONLOAD_CHILDREN is like this.
    *navigate from <CONTEXT> to <ITEM_DATA> via lead selection
      lo_nd_item_data = wd_context->path_get_node( path =
      `COMP_CONTEXT.ITEM_DATA` ).
    *get element via lead selection
      lo_el_item_data = lo_nd_item_data->get_element( ).
    *get all declared attributes
      lo_nd_item_data->get_static_attributes_table(
        IMPORTING
          table = lt_item_data ).
      LOOP AT lt_item_data INTO ls_item_data.
        IF sy-tabix = 2.
          ls_item_data-description = 'TEST'.
          MODIFY lt_item_data FROM ls_item_data TRANSPORTING description.
        ENDIF.
      ENDLOOP.
        lo_nd_item_data->bind_table( new_items = lt_item_data
        set_initial_elements = abap_true ).
        lo_nd_item_data->set_lead_selection_index( 1 ).
    First line was set selected but still got dump.
    Could you please help to check this ?
    Thanks & Regards
    Eric Li

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

  • How to pass values for the checkbox

    Hi all,
    We all have seen the functionality of selecting a check box and then click the button and it performs the task(i.e in the hotmail when you select a line/lines by selecting the checkbox for that line and click the delete button those all mails are deleted). we are trying to implement this functionality. I have written the following code for that, but i get the values for the selected box if the box is the first one but if I did not select the first line and select the second line, i get the values for first line as well as for the secondline separated by comma . In other word it concatinates all values. Can I have some pointers?
    <INPUT TYPE="CHECKBOX" NAME="selectedBoxes" UNCHECKED value=<%out.println(" \"" + boxValues + "\" ");
    And also I don't know how to use the oncheck event for the check box...
    Thanks in advance...
    Ameeta

    Thanks Kan,
    But I am littlebit confuse about how does multiple values have been passed. For Example, i have selected 3 check boxes to delete the record. The value for each check box I need is name, event and hours...Each of these record is separated by '*'. I have three sets of values...for three records..
    1) Ameeta*overTime*5.00
    2) Ameeta*holiday*6.00
    3) Ameeta*weekends*8.00
    I have total 5 or 6 records for this person(Ameeta) and I want to delete these listed three...some how if I use the following coding it gives me all records before the last checked box...
    while(rs1.next())
    isEmpty = false;
    eventType = rs1.getString("EVENT_TYPE" ) ; ;
    eventDate = rs1.getString("EVENT_DATE" ) ;
    hours = rs1.getString("HOURS" ) ;
    hash += Double.parseDouble(hours) ;
    boxValues += eventDate + "*" + hours + "*" shortEvents "#";
    userId = rs1.getString("USER_ID" ) ;
    // employeeId = rs1.getString("EMP_ID" ) ;
    confirmFlg = rs1.getString("CONFIRM_FLAG");
    // out.println("\nrecordQuery:\n" + recordQuery ) ;
    %>
    <tr>
    <td colspan=5 width=100>
    <INPUT TYPE="CHECKBOX" NAME="selectedBoxes" value=<%out.println(" \"" + boxValues + "\" "); %>>
    <td width="150"><%=eventDate%></td>
    <td width="150"><%=eventType%></td>
    <td width="150"><%=hours%></td>
    <td width="150"><%=location%></td>
    <td width="150"><%=confirmFlg%></td>
    </tr>
    **************************************In this code basically I am concatinating so it is obvious that I get every thing before the check box..so I did the following change by adding the line below in the code
    while(rs1.next())
    boxValues = "";
    everything else is same....
    but now I get only the last one that is true too because I am asigning it to the null but I don't know how to pass all checked one.........can anybody help me?      
    Thanks in advance...
    Ameeta

  • How to populate values for a new field in target infoprovider

    Hi Experts,
    am new to BI. i would like to know on how to populate values for a new field in the target cube with start rotuine.In my case,  i have a source infoprovider, which has 3 fields and a target infoprovider, which has 5 fields. i need to populate the new 2 fields in start routine. i dont want to populate using Field routine and am using 3.5 version. please assist with code on how to solve this issue.
    Thank you,
    Chitra.
    Edited by: Chitra_BI on Jun 13, 2011 10:23 AM

    Debug the standard code and see where the other fields are getting update. you can use the similar approach and area to code for the new field.
    Regards,
    Lalit Mohan Gupta.

  • How to identify the Adjustment at the Invoice Level & Invoice line level

    Hi All,
    We could notice that while applying the AR adjustments to the one invoice line ( line level), the Credit Memo is getting created with the one invoice line corresponding to the original invoice line.
    When we are applying the adjustments on the Invoice header level, then the adjusted amount is geting prorated for all the Invoice lines. That is, if the Orignal Invoice is having 10 lines. Then the Credit Memo getting created is also having the same number of lines, with the amount getting prorated equally.
    We need a way to identity(differentiate) the Credit Memos which are created by adjustment at the invoice line and Invoice line level
    Any help is highly appreciated.

    Hello,
    Have you tried to refer the ADJUSTMENT_TYPE column in AR_ADJUSTMENS_ALL, i think holds the level at which adjustment was done

  • How to set value for trim and bleed using jsx script?

    I have tried using bleedoffsetRect but somehow it is not working. Can anybody please help me on how to set value for trim and bleed using jsx script? Any example will be highly appreciated.
    Following is the code I am trying with:
    var _saveName = new File ( root_path +_strFileName+".pdf");
        var _saveOpts = new PDFSaveOptions();
        _saveOpts.printerResolution = 300; 
        var bleedarray = new Array();
         bleedarray[0] =9.00;
         bleedarray[1]=9.00;
         bleedarray[2]=9.00;
         bleedarray[3]=9.00;    
        _saveOpts.bleedOffsetRect = bleedarray;

    I would expect although I've not actually tried this for the bleed off set box to be larger than the artbaord and the first two values to be negative or 0…
    var bleedarray = new Array(-9,-9,artboard.width+9,artboard.height+9);
    Where 'artboard.width' & 'artboard.height' you will have calculated from your file. An Array(9,9,9,9); would not constitute any boxes bounds.

  • How to assign values for more than one field

    Hi,
    I have written following code
    constants: fieldname(30) value '(SAPMF02D)KNA1-AUFSD'.
    constants: fieldname1(30) value '(SAPMF02D)KNA1-LISFD'.
    constants: fieldname2(30) value '(SAPMF02D)KNA1-FAKSD'.
    field-symbols: <L_FIELD>  TYPE ANY.
    field-symbols: <L_FIELD1> TYPE ANY.
    field-symbols: <L_FIELD2> TYPE ANY.
          Assign (fieldname) to <l_field>.
          <L_FIELD> = 'ZB'. " value according to your requirement
          Assign (fieldname1) to <l_field1>.
          <L_FIELD1> = 'ZB'.
    while debugging <l_field1> is not assinging (fieldname1).
    Im able to assing for (fieldname).
    how to assign value for (fieldname1).
    plz suggest me to assign values for more than one field.
    Regards,
    Brahmaji

    Hello,
    Because there is no field name called LISFD in KNA1. Actually you misspelled the field name.
    It is KNA1-LIFSD

  • How to bind values for input parameters from an adf table?

    Hi,
    The version I am using is
    Jdev TP4 11.1.1.0.0
    I need to know how to bind values for input parameters to methods.
    I have created an af:table and I have a button created using a method which is outside the af:table. This method needs to take input parameter values from the column values in the table.
    When I have an adf form instead of the table the binding works.
    Any help?
    Thanks.

    Hi Balaji,
    you need to bind you table to a backing bean and call a method in the backing bean when you hit the button. In the method you get the selected row from the table and have access to the columns of it. Then call the the method with the parameters.
    To bind the table to a bean select the properties of the table, go to behavior section and look for the advanced section 'Binding' property.
    Select the small down arrow at the right side and click edit. In the dialog select or create a bean and property for the table.
    Go to the button properties, look for 'Action', again select the small down arrow and click 'Edit'. Select the bean which holds the table property and create a method for the button.
    The method look like    public void bearbeitenQuelle(ActionEvent actionEvent)
            // Add event code here...
            RichTable lTable = getYourTable();
            Object lData = lTable.getSelectedRowData();
            FacesCtrlHierNodeBinding lNB = (FacesCtrlHierNodeBinding) lData;
            YourViewRow lRow = (YourViewRow ) lNB.getCurrentRow();
        }Hope the get you started
    Timo

  • How to set value for radio button in sap crm survey suite

    Hi ,
    I created a survey in CRM Service, in which I added a question with answer as '10 Selection Button Group ('radio button'). And answer has 11 answer options (which means 11 radio buttions). Now when we test the survey, the value for the radio buttons is appearing like 'id_0050569b03091ee480a29d8ee61e953c'. But i want to set a specific value for each radion button (from 1 to 11). So, how to set value for radio button in sap crm survey suite???.
    Thanks & Regards,
    Seshu

    Hi,
    I found solution myself. Click on Goto -> Editing Mode -> Expert Mode. Now you can set value for radio button.
    Regards,
    Seshu

  • How to set value for selectOneChoice

    Hello,
    How to set value for selectOneChoice defined as:
    <af:selectOneChoice label="Label" id="soc1" binding="#{DepositorMergingBean.socSurnameComponent}">
    <f:selectItems id="si1" value="#{DepositorMergingBean.socSurnames}"/>
    </af:selectOneChoice>
    where socSurnames is List<SelectItem> - manually filled list of SelectItem(SomeObject, (String)text_description), so - SOC is filled manually (no binded iterators, etc..)
    Neither socSurnameComponent.setValue( new Integer(0) ) nor socSurnameComponent.setValue( socSurnames.get(0) ) do not help.
    Thanks in advance.

    this.selectOneChoice.setValue(selectItems.get(2).getValue());Try as per the following sample:
    SelectOneChoiceTest.JSPX:
    <af:form id="f1">
    <af:selectOneChoice label="Select One Choice" id="soc1"
    binding="#{SelectOneChoiceTestBean.selectOneChoice}">
    <f:selectItems value="#{SelectOneChoiceTestBean.selectItems}"
    id="si1"/>
    </af:selectOneChoice>
    <af:commandButton text="Set Selected Value" id="cb1"
    actionListener="#{SelectOneChoiceTestBean.onClick}"/>
    </af:form>
    SelectOneChoiceTestBean.java:
    import java.util.ArrayList;
    import java.util.List;
    import javax.faces.event.ActionEvent;
    import javax.faces.model.SelectItem;
    import oracle.adf.view.rich.component.rich.input.RichSelectOneChoice;
    public class SelectOneChoiceTestBean {
    private RichSelectOneChoice selectOneChoice;
    public SelectOneChoiceTestBean() {
    super();
    private List<SelectItem> selectItems;
    public void setSelectItems(List<SelectItem> selectItems) {
    this.selectItems = selectItems;
    public List<SelectItem> getSelectItems() {
    selectItems = new ArrayList<SelectItem>();
    selectItems.add(new SelectItem("One", "One"));
    selectItems.add(new SelectItem("Two", "Two"));
    selectItems.add(new SelectItem("Three", "Three"));
    return selectItems;
    public void setSelectOneChoice(RichSelectOneChoice selectOneChoice) {
    this.selectOneChoice = selectOneChoice;
    public RichSelectOneChoice getSelectOneChoice() {
    return selectOneChoice;
    public void onClick(ActionEvent actionEvent) {
    this.selectOneChoice.setValue(selectItems.get(2).getValue());
    Thanks,
    Navaneeth

  • How to fetch data for sales order costing

    Hi All,
    How to fetch data for VA03 --> Extras --> Costing having cost element details.
    Thanks
    Gaurav

    Hi Gaurao ,
    There is no such function module  to extract data  in one column   , you have to  Convert all the columns data    in one column
    for period   .
    regards
    Deepak.

  • How to estimate value for LogBufParallelism

    how to estimate value for LogBufParallelism.
    Are there any dependencies between LogBufParallelism and LogFlushMethod ?

    If you are going to use logbufparallelism
    please make sure to use a release >= 11.2.1.7.0, as there was a bug related to using logbufparellelism in previous releases:
    In previous releases, the replication agent could crash and invalidate the database when the replication agent was reading close to the end of the in-memory logs. This problem could occur when the value of the connection attribute LogBufParallelism was greater than 1. In that case, one particular log record could cause a log strand reader to block and cause other strand-readers to read records in an incorrect order. This problem has been fixed. (BugDB 10174319 and 10176689)
    The suggestion is that you can set to any value up to the number of processors or cores that you have.
    Most people though I usually choose to set it something slightly lower than that if they want cpu(s) to be used other processes on the machine.
    There is no dependency with LogFlushMethod, but there is one for LogBufMb:
    If you change the value of LogBufParallelism, you also may need to change the value of LogBufMB to
    satisfy the constraint that LogBufMB/LogBufParallelism >=8
    Jim

  • How to add lines level detail.

    So far I did not include the line level details into the system. Now we have decided to add the line level data. I am thinking to create another object with line no. Am I going in Right Direction?
    Thanks, VP.

    Hello,
    I think you need to provide more information in your post. 
    What DataSource(s) are you using?
    What type of infoProvider are you using?
    etc...
    Thanks,
    Nick

Maybe you are looking for

  • Flat File loading into Hierarchy

    Dear Gurus, I am trying to load a hierarchy from a flat file.  I am not able to do it successfully. I have a small doubt.  Do we need to load the master data into the master data table before loading the hierarchy?   Explanation: I have an info objec

  • Asm, instance and service failing to start 10g rac redhat el5

    hi, i have been following a how to guide from oracle's website about implementing a 10g rac system using el5 (http://www.oracle.com/technology/pub/articles/hunter_rac10gr2_iscsi.html), by the end of the installation and setup I had both the nodes up

  • Creating a Join between VBAK and EKKO

    Hello I have to prepare a Sales Report for Third Party Orders.... The Report takes fields from EKKO (PO DOC Header) and VBAK (Sales Order Doc). The Problem is that I cannot find anything to join these two Tables. The BSTNK Field in VBAK does not matc

  • BI 7.0 advantages over 3.5 - View from Customer centric....

    Hi BWers, Currently my clinet using BW 3.5 system and looking for a Global Roll-out by making existing solution as Global template. However I am for upgradation of existing system to 7.0 and then for Roll-out for remaining countries. Hence my client

  • What makes Spry different from other JS/CSS technologies?

    I've been seeing a lot of Spry questions here and have used the widgets myself. But for menus, I use CSS Menu Writer from WebAssist. It used ul and li tags in the markup, or an include, JavaScript for functionality and CSS for styling. Basically, thi