addSKUBarcode
Method Name : addSKUBarcode
- Purpose of usage :
 
It is used to add SKU Barcode Master data to Axata WMS System.
- Integration Tables :
 
Axata Table Name  | 
Process type  | 
Table Type  | 
Description  | 
ENT003  | 
Host_to_WMS  | 
Barcode  | 
SKU Barcode Information  | 
- Integration Table Fields :
 
Transaction type :  | 
Host_to_WMS  | 
  | 
||
Table Name :  | 
ENT003  | 
|||
Table Description :  | 
SKU barcode Information  | 
|||
Field Name  | 
Desc  | 
Type  | 
Len  | 
Mandatory  | 
S03ID  | 
Identity  | 
[bigint]  | 
  | 
  | 
S03SKOD  | 
Company Code  | 
[nvarchar]  | 
4  | 
*  | 
S03MKOD  | 
SKU Code  | 
[nvarchar]  | 
50  | 
*  | 
S03BCODE  | 
Barcode  | 
[nvarchar]  | 
100  | 
*  | 
S03ISDEF  | 
Is Default ? 0-No 1-Yes  | 
[bit]  | 
||
S03ITIP  | 
Record Type 0-New 1-Cancel  | 
[decimal]  | 
1,0  | 
  | 
S03ITAR  | 
Transaction date (YYYYMMDD)  | 
[decimal]  | 
8, 0  | 
|
S03IZMN  | 
Transaction time (HHMMSS)  | 
[decimal]  | 
6, 0  | 
|
S03HTIP  | 
Free  | 
[nvarchar]  | 
20  | 
|
S03HNUM  | 
Free  | 
[decimal]  | 
20, 0  | 
|
S03UNIT  | 
Unit  | 
[nvarchar]  | 
3  | 
|
S03ERP_ID  | 
Erp ID  | 
[bigint]  | 
||
S03WMSSTAT  | 
[tinyint]  | 
- Usage :
 - Multiple SKU Barcode 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 SKU Unit 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:ENT003_List>
<!--Zero or more repetitions:-->
<ENT003>
<S03SKOD>01</S03SKOD>
<S03MKOD>MDENEME101</S03MKOD>
<S03BCODE>B111222333</S03BCODE>
<S03ISDEF>1</S03ISDEF>
<S03ITIP>0</S03ITIP>
<S03ITAR>20200523</S03ITAR>
<S03IZMN>121212</S03IZMN>
</ENT003>
<ENT003>
<S03SKOD>01</S03SKOD>
<S03MKOD>MDENEME101</S03MKOD>
<S03BCODE>B444555666</S03BCODE>
<S03ISDEF>1</S03ISDEF>
<S03ITIP>0</S03ITIP>
<S03ITAR>20200523</S03ITAR>
<S03IZMN>121212</S03IZMN>
</ENT003>
</axat:ENT003_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>10884</EntityID>
<EntityCompany>01</EntityCompany>
<EntityCode>MDENEME101</EntityCode>
<EntitySubCode i:nil="true"/>
<HeaderExt1 i:nil="true"/>
<HeaderExt2 i:nil="true"/>
<HeaderExt3 i:nil="true"/>
<ResultItems/>
</ProcessResult>
<ProcessResult>
<LogState>0</LogState>
<LogMessage>Success</LogMessage>
<EntityID>10885</EntityID>
<EntityCompany>01</EntityCompany>
<EntityCode>MDENEME101</EntityCode>
<EntitySubCode i:nil="true"/>
<HeaderExt1 i:nil="true"/>
<HeaderExt2 i:nil="true"/>
<HeaderExt3 i:nil="true"/>
<ResultItems/>
</ProcessResult>
</processResult>
</s:Body>
</s:Envelope>
- Sample c# Source Code :