Method Adı : addProvince

  • Kullanım Amacı :

Axata WMS Sistemine Province (İL) Verisi Eklemek için kullanılır.

  • Entegrasyon Tablosu :

Axata Tablo Adı

İşlem Tipi

Tablo Tipi

Açıklama

ENT031

Host_to_WMS

Province (İL)

Province İL Ana Veri Ekleme Tablosu

  • Entegrasyon Tablo Alanları :


Transaction tipi :

Host_to_WMS


 


Tablo Adı :

ENT031




Tablo Açıklaması :

İl tanımları




Field Name

Desc

Type

Len

Zorunlu

S31ID

Identity

[bigint]

 

 

S31ULKOD

Ülke kodu

[nvarchar]

3

*

S31ILKOD

İl kodu

[nvarchar]

3

*

S31DESC

İl tanımı

[nvarchar]

50

*

S31ITIP

İptal kodu (0-insert/update 1-delete)

[tinyint]

 


S31ITAR

İşlem tarihi (YYYYMMDD)

[decimal]

8, 0


S31IZMN

İşlem zamanı (HHMMSS)

[decimal]

6, 0



  • Kullanım Şekli :
    • Birden fazla Palet Blokaj verisi aynı anda gönderilebilir .
    • Tüm alanlar gönderilmek zorunda değildir.
    • Eğer gönderim için XML oluşturuluyorsa , alanlar yukarıdaki tablodaki sırada gönderilmelidir.
    • Maximum gönderi sayısı sınırlıdır (Parametrik).
    • Her bir Palet Blokaj verisi için ayrı processResult objesi döner .
  • Örnek 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:ProvinceList>

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

      <ENT031>

        <S31ULKOD>TR</S31ULKOD>

        <S31ILKOD>34</S31ILKOD>

        <S31DESC>ISTANBUL</S31DESC>

      </ENT031>

      <ENT031>

        <S31ULKOD>TR</S31ULKOD>

        <S31ILKOD>41</S31ILKOD>

        <S31DESC>KOCAELI</S31DESC>

      </ENT031>

    </axat:ProvinceList>

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

        <EntityCompany/>

        <EntityCode>34</EntityCode>

        <EntitySubCode>TR</EntitySubCode>

        <HeaderExt1 i:nil="true"/>

        <HeaderExt2 i:nil="true"/>

        <HeaderExt3 i:nil="true"/>

        <ResultItems/>

      </ProcessResult>

      <ProcessResult>

        <LogState>0</LogState>

        <LogMessage>Success</LogMessage>

        <EntityID>4</EntityID>

        <EntityCompany/>

        <EntityCode>41</EntityCode>

        <EntitySubCode>TR</EntitySubCode>

        <HeaderExt1 i:nil="true"/>

        <HeaderExt2 i:nil="true"/>

        <HeaderExt3 i:nil="true"/>

        <ResultItems/>

      </ProcessResult>

    </processResult>

  </s:Body>

</s:Envelope>


  • Örnek c# Kodu :

       Örnek Add Method Kodu C#