Method Name : addSKUPallet

  • Purpose of usage :

Used to Add SKU Pallet Standards Data to Axata WMS System.

  • Integration Tables :


Axata Table Name

Process type

Table Type

Description

ENT004PL

Host_to_WMS

Pallet

SKU Pallet Property Information

  • Integration Table Fields :


S04

Transaction type :

Host_to_WMS


 


Table Name :

ENT004PL




Table Description :

SKU pallet standards




Field Name

Desc

Type

Len

Mandatory

S04ID

Identity

[bigint]

 

 

S04SKOD

Company Code

[nvarchar]

4

*

S04Warehouse

Warehouse Code

[nvarchar]

4


S04MKOD

SKU Code

[nvarchar]

50

*

S04PALTIP

Pallet Type

[nvarchar]

2

*

S04PSTD

Pallet Standards

[decimal]

15,3

*

S04ITIP

Status (0-Enable 1-Disable)

[int]



S04ITAR

Transaction date (YYYYMMDD)

[decimal]

8, 0


S04IZMN

Transaction time (HHMMSS)

[decimal]

6, 0


S04ERP_ID

Erp ID

[bigint]



S04LEVEL


[int]



S04BIRIM


[nvarchar]

3


S04WMSSTAT


[tinyint]




  • Usage :
    • Multiple Pallet data can be sent simultaneously.
    • 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 posts is limited (Parametric).
    • A separate processResult object is returned for each Pallette data.


  • Sample XML
    • Request :

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

  <soapenv:Header/>

  <soapenv:Body>

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

    <tem:password></tem:password>

    <axat:ENT004PL_List>

      <!--Zero or more repetitions:-->

      <ENT004PL>

        <S04SKOD>01</S04SKOD>

        <S04Warehouse>01</S04Warehouse>

        <S04MKOD>MDENEME101</S04MKOD>

        <S04PALTIP>A</S04PALTIP>

        <S04PSTD>150</S04PSTD>

        <S04ITIP>0</S04ITIP>

        <S04ITAR>20200523</S04ITAR>

        <S04IZMN>121212</S04IZMN>

      </ENT004PL>

      <ENT004PL>

        <S04SKOD>01</S04SKOD>

        <S04Warehouse>01</S04Warehouse>

        <S04MKOD>MDENEME102</S04MKOD>

        <S04PALTIP>A</S04PALTIP>

        <S04PSTD>160</S04PSTD>

        <S04ITIP>0</S04ITIP>

        <S04ITAR>20200523</S04ITAR>

        <S04IZMN>121212</S04IZMN>

      </ENT004PL>

    </axat:ENT004PL_List>

  </soapenv:Body>

</soapenv:Envelope>

    • Response :

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

  <s:Body>

    <state>0</state>

    <message>Success</message>

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

      <ProcessResult>

        <LogState>0</LogState>

        <LogMessage>Success</LogMessage>

        <EntityID>10276</EntityID>

        <EntityCompany>01</EntityCompany>

        <EntityCode>MDENEME101</EntityCode>

        <EntitySubCode>A</EntitySubCode>

        <HeaderExt1 i:nil="true"/>

        <HeaderExt2 i:nil="true"/>

        <HeaderExt3 i:nil="true"/>

        <ResultItems/>

      </ProcessResult>

      <ProcessResult>

        <LogState>0</LogState>

        <LogMessage>Success</LogMessage>

        <EntityID>10277</EntityID>

        <EntityCompany>01</EntityCompany>

        <EntityCode>MDENEME102</EntityCode>

        <EntitySubCode>A</EntitySubCode>

        <HeaderExt1 i:nil="true"/>

        <HeaderExt2 i:nil="true"/>

        <HeaderExt3 i:nil="true"/>

        <ResultItems/>

      </ProcessResult>

    </processResult>

  </s:Body>

</s:Envelope>


  • Sample c# Source Code :

       Sample Add Method Code C#