Method Name : getOwnerShipList

  • Purpose of usage :

Used to query the result of Property Transfers created and processed in the Axata WMS System .

  • Return Integration Tables :

Axata Table Name

Process type

Table Type

Description

ENT044

WMS to Host

Stock Data

Axata Stock Ownership Data


  • Query Fields :


Field Name

Description

Mandatory

Axata Table - Field

CompanyCode

Company Code

None

ENT044-S44SKOD

WarehouseCode

Warehouse Code

None

ENT044-S44AKOD

OrderNumber

Order Number

None

ENT044-S44SIPNO

SourceFirm

Source Stock Owner Firm Code

None

ENT044-S44FOWNER

DestFirm

Target Stock Owner Firm Code

None

ENT044-S44TOWNER

Status

Status

(ENT044- S44STAT) None (0 = Not Processed-New Record)  , other values depending on the processes

ENT044-S44STAT


  • Usage :
    • Multiple Filter fields can be submitted at the same time .
    • Not all fields have to be submitted.
    • If generating XML for submission, the fields should be submitted in the order in the table above..
    • Maximum number of return lines is limited (Parametric).


  • Sample XML
    • Request :

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/">

  <soapenv:Header/>

  <soapenv:Body>

    <tem:username>axataservice</tem:username>

    <tem:password></tem:password>

    <ownerShipQuery>

      <CompanyCode>01</CompanyCode>

      <WarehouseCode>01</WarehouseCode>

    </ownerShipQuery>

  </soapenv:Body>

</soapenv:Envelope>

    • Response :

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">

  <s:Body>

    <state>0</state>

    <message>Success</message>

    <ownerShipList xmlns:i="http://www.w3.org/2001/XMLSchema-instance">

      <ENT044>

        <S44STAT>1</S44STAT>

        <S44SKOD>01</S44SKOD>

        <S44AKOD>01</S44AKOD>

        <S44SKU>10001</S44SKU>

        <S44SIPNO>SIP111</S44SIPNO>

        <S44KALEM>01</S44KALEM>

        <S44FOWNER>F101</S44FOWNER>

        <S44TOWNER>F102</S44TOWNER>

        <S44QTY>2.000</S44QTY>

        <S44ITAR i:nil="true"/>

        <S44TMTR i:nil="true"/>

        <S44FNAME i:nil="true"/>

      </ENT044>

    </ownerShipList>

  </s:Body>

</s:Envelope>