Method Name : addInboundPalletSerial

  • Purpose of usage :

It is used to Add Pallet Serial Number Data to Login to Axata WMS System. It can be used for production entries.

  • Integration Tables :

Axata Table Name

Process type

Table Type

Description

ENT019_Serial

Host_to_WMS

Pallet

Input Pallet Serial No Addition Table

  • Integration Table Fields :


Transaction type :

Host_to_WMS




Table Name :

ENT019_Serial




Table Description :

Production entry Pallet information Serial number detail Table




Field Name

Desc

Type

Len

Mandatory

S19SIRA

Unique ID (Identity)

[bigint]

 

 

S19PALN

Pallet Number

[decimal]

10,0

*

S19Serial

Serial Number 1

[nvarchar]

100

*

S19Serial2

Serial Number 2

[nvarchar]

100


S19Serial3

Serial Number 3

[nvarchar]

100


S19SKOD

Company Code

[nvarchar]

2

*

S19SKU

SKU Code

[nvarchar]

50

*

S19LOT

Lot/Batch Number 1

[nvarchar]

50

*

S19LOT2

Lot/Batch Number 2

[nvarchar]

50


S19LOT3

Lot/Batch Number 3

[nvarchar]

50


S19UTAR

Production date (YYYYMMDD)

[decimal]

8, 0

*

S19UZMN

Production time (HHMMSS)

[decimal]

6, 0

*

S19UNO

Production Number

[decimal]

13, 0

*

S19AGR

Weight info (kg)

[decimal]

15, 3

*

S19SIM

SIM

[decimal]

15, 3


S19IPTK

Cancel Code (0-normal 1-iptal)

[decimal]

1, 0


S19HKOD

Movement type

[nvarchar]

3


S19SIPN

Order Number

[nvarchar]

50


S19ITAR

Transaction date (YYYYMMDD)

[decimal]

8, 0


S19IZMN

Transaction time (HHMMSS)

[decimal]

6, 0



  • Usage :
    • Multiple Pallet Serial 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 Pallet Serial 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:InboundPalletSerialalList>

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

      <ENT019_Serial>

        <S19PALN>11111122</S19PALN>

        <S19Serial>Serial444</S19Serial>

        <S19Serial2>Serial555</S19Serial2>

        <S19Serial3>Serial666</S19Serial3>

        <S19SKOD>01</S19SKOD>

        <S19SKU>TESTSKU1</S19SKU>

        <S19LOT>LOT1</S19LOT>

        <S19UTAR>20200520</S19UTAR>

        <S19UZMN>101010</S19UZMN>

        <S19UNO>0</S19UNO>

        <S19AGR>333.44</S19AGR>

        <S19SIM>12</S19SIM>

        <S19HKOD>H11</S19HKOD>

        <S19SIPN>SIPNO111</S19SIPN>

        <S19IPTK>0</S19IPTK>

        <S19ITAR>20200523</S19ITAR>

        <S19IZMN>121212</S19IZMN>

        <S19LOT2/>

        <S19LOT3/>

        <S19SEVIYE1/>

        <S19SEVIYE2/>

        <S19SEVIYE3/>

        <S19SEVIYE4/>

        <S19SEVIYE5/>

      </ENT019_Serial>

    </axat:InboundPalletSerialalList>

  </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>12</EntityID>

        <EntityCompany>01</EntityCompany>

        <EntityCode>11111122</EntityCode>

        <EntitySubCode>TESTSKU1</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#