addSKUProductTree
Method Adı : addSKUProductTree
- Kullanım Amacı :
Axata WMS Sistemine SKU Ürün Ağacı Eklemek , Değiştirmek ve Silmek için kullanılır.
- Entegrasyon Tablosu :
Axata Tablo Adı |
İşlem Tipi |
Tablo Tipi |
Açıklama |
ENT022 |
Host_to_WMS |
Ürün Ağacı |
SKU Ürün Ağacı Bilgileri |
- Entegrasyon Tablo Alanları :
Transaction tipi : |
Host_to_WMS |
|
||
Tablo Adı : |
ENT022 |
|
|
|
Tablo Açıklaması : |
SKU ürün ağacı |
|||
Field Name |
Desc |
Type |
Len |
Zorunlu |
S2SID |
Identity |
[bigint] |
|
|
S22SKOD |
Şirket kodu |
[nvarchar] |
2 |
* |
S22SKU1 |
Ana SKU kodu |
[nvarchar] |
50 |
* |
S22SKU2 |
Alt SKU kodu |
[nvarchar] |
50 |
* |
S22BKOD |
-- |
[decimal] |
2 |
|
S22MIK |
İçerik miktarı |
[decimal] |
15, 3 |
* |
S22BTAR |
---- |
[decimal] |
8 |
|
S22TIP |
Kayıt tipi (1-delete 0-insert/update) |
[decimal] |
1, 0 |
* |
S22ITAR |
İşlem tarihi (YYYYMMDD) |
[decimal] |
8, 0 |
|
S22IZMN |
İşlem zamanı (HHMMSS) |
[decimal] |
6, 0 |
|
S22ERPID |
ERP Id numarası |
[bigint] |
|
|
- Kullanım Şekli :
- Birden fazla SKU Ürün Ağacı 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 SKU Ürün Ağacı 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:ENT022_List>
<!--Zero or more repetitions:-->
<ENT022>
<S22SKOD>01</S22SKOD>
<S22SKU1>MDENEME101</S22SKU1>
<S22SKU2>MDENEME102</S22SKU2>
<S22BKOD>0</S22BKOD>
<S22MIK>12</S22MIK>
<S22TIP>0</S22TIP>
<S22ITAR>02200523</S22ITAR>
<S22IZMN>121212</S22IZMN>
</ENT022>
</axat:ENT022_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>10055</EntityID>
<EntityCompany>01</EntityCompany>
<EntityCode>MDENEME101</EntityCode>
<EntitySubCode>MDENEME102</EntitySubCode>
<HeaderExt1 i:nil="true"/>
<HeaderExt2 i:nil="true"/>
<HeaderExt3 i:nil="true"/>
<ResultItems/>
</ProcessResult>
</processResult>
</s:Body>
</s:Envelope>
- Örnek c# Kodu :