Method Name : addCounty

  • Purpose of usage :

Axata WMS Sistemine County (County) Verisi Eklemek için kullanılır.

  • Integration Tables :

Axata Table Name

Process type

Table Type

Description

ENT032

Host_to_WMS

County  

County Master Data Table

  • Integration Table Fields :


Transaction type :

Host_to_WMS


 


Table Name :

ENT032




Table Description :

County Descriptions




Field Name

Desc

Type

Len

Mandatory

S32ID

Identity

[bigint]

 

 

S32ULKOD

Country Code

[nvarchar]

3

*

S32ILKOD

Province Code

[nvarchar]

3

*

S32ILCEKOD

County Code

[nvarchar]

10

*

S32DESC

County Description

[nvarchar]

50

*

S32RNODE

Route Code

[nvarchar]

10


S32ITIP

Cancel Code (0-Insert/Update 1-Delete)

[tinyint]

 


S32ITAR

Transaction date (YYYYMMDD)

[decimal]

8, 0


S32IZMN

Transaction time (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:CountyList>

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

      <ENT032>

        <S32ULKOD>TR</S32ULKOD>

        <S32ILKOD>34</S32ILKOD>

        <S32ILCEKOD>2222</S32ILCEKOD>

        <S32DESC>GEBZE</S32DESC>

      </ENT032>

      <ENT032>

        <S32ULKOD>TR</S32ULKOD>

        <S32ILKOD>34</S32ILKOD>

        <S32ILCEKOD>3333</S32ILCEKOD>

        <S32DESC>CAYIROVA</S32DESC>

      </ENT032>

    </axat:CountyList>

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

        <EntityCompany/>

        <EntityCode>2222</EntityCode>

        <EntitySubCode>GEBZE</EntitySubCode>

        <HeaderExt1 i:nil="true"/>

        <HeaderExt2 i:nil="true"/>

        <HeaderExt3 i:nil="true"/>

        <ResultItems/>

      </ProcessResult>

      <ProcessResult>

        <LogState>0</LogState>

        <LogMessage>Success</LogMessage>

        <EntityID>2</EntityID>

        <EntityCompany/>

        <EntityCode>3333</EntityCode>

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