addInboundPalletBlokage
Method Adı : addInboundPalletBlokage
- Kullanım Amacı :
Axata WMS Sistemine Giriş Palet Blokaj Verisi Eklemek için kullanılır . Üretim girişleri için kullanılabilir.
- Entegrasyon Tablosu :
Axata Tablo Adı |
İşlem Tipi |
Tablo Tipi |
Açıklama |
ENT019_BLOKE |
Host_to_WMS |
Palet |
Giriş Palet Bloke Bilgisi Ekleme Tablosu |
- Entegrasyon Tablo Alanları :
Transaction tipi : |
Host_to_WMS |
|||
Tablo Adı : |
ENT019_BLOKE |
|||
Tablo Açıklaması : |
Palet bloke emirleri |
|||
Field Name |
Desc |
Type |
Len |
Zorunlu |
S19SIRA |
Unique ID (Identity) |
[bigint] |
|
|
S19STAT |
Statü 0-bekliyor 1-işlendi |
[tinyint] |
* |
|
S19SKOD |
Şirket kodu |
[nvarchar] |
2 |
* |
S19PALN |
Palet Numarası |
[decimal] |
10,0 |
* |
S19ITIP |
İşlem tipi 1- Karantina koy 2- Karantina kaldı 3- Bloke koy 4- Bloke kaldır |
[tinyint] |
* |
|
S19BNED |
Bloke nedeni |
[nvarchar] |
2 |
* |
S19ITAR |
İşlem tarihi (YYYYMMDD) |
[decimal] |
8, 0 |
|
S19IZMN |
İşlem zamanı (HHMMSS) |
[decimal] |
6, 0 |
|
S19TMTR |
Tamamlanma tarihi (YYYYMMDD) |
[decimal] |
8, 0 |
|
S19TMZM |
Tamamlanma 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: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>
- Örnek c# Kodu :