Method Name : addInboundPalletBlokage

  • Purpose of usage :

It is used to add Input Pallet Blocking Data to Axata WMS System. It can be used for production entries.

  • Integration Tables :

Axata Table Name

Process type

Table Type

Description

ENT019_BLOKE

Host_to_WMS

Pallet

Input Pallet Block Information Adding Table

  • Integration Table Fields :


Transaction type :

Host_to_WMS




Table Name :

ENT019_BLOKE




Table Description :

Pallet block orders




Field Name

Desc

Type

Len

Mandatory

S19SIRA

Unique ID (Identity)

[bigint]

 

 

S19STAT

Statu 0-Wait 1-Processed

[tinyint]


*

S19SKOD

Company Code

[nvarchar]

2

*

S19PALN

Pallet Number

[decimal]

10,0

*

S19ITIP

Process type

1- Put Quarantine Blockage

2- Cancel Quarantine Blockage

3- Put Blockage

4- Cancel Blockage

[tinyint]


*

S19BNED

Blockage Reason

[nvarchar]

2

*

S19ITAR

Transaction date (YYYYMMDD)

[decimal]

8, 0


S19IZMN

Transaction time (HHMMSS)

[decimal]

6, 0


S19TMTR

Completion date (YYYYMMDD)

[decimal]

8, 0


S19TMZM

Completion zamanı (HHMMSS)

[decimal]

6, 0


  • Usage :
    • Multiple Pallet Blocking 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 blocking 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:InboundPalletBlokageList>

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

      <ENT019_BLOKE>

        <S19STAT>0</S19STAT>

        <S19SKOD>01</S19SKOD>

        <S19PALN>11113344</S19PALN>

        <S19ITIP>1</S19ITIP>

        <S19BNED>99</S19BNED>

        <S19ITAR>20200523</S19ITAR>

        <S19IZMN>121212</S19IZMN>

      </ENT019_BLOKE>

    </axat:InboundPalletBlokageList>

  </soapenv:Body>

</soapenv:Envelope>

    • Response :

<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>123</tem:password>

    <axat:InboundPalletBlokageList>

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

      <ENT019_BLOKE>

        <S19STAT>0</S19STAT>

        <S19SKOD>01</S19SKOD>

        <S19PALN>11113344</S19PALN>

        <S19ITIP>1</S19ITIP>

        <S19BNED>99</S19BNED>

        <S19ITAR>20200523</S19ITAR>

        <S19IZMN>121212</S19IZMN>

      </ENT019_BLOKE>

    </axat:InboundPalletBlokageList>

  </soapenv:Body>

</soapenv:Envelope>


  • Sample c# Source Code :

       Sample Add Method Code C#