addSKUProp
Method Name : addSKUProp
- Purpose of usage :
 
Axata WMS Sistemine SKU Ek Property Verisi Eklemek için kullanılır .
- Integration Tables :
 
Axata Table Name  | 
Process type  | 
Table Type  | 
Description  | 
ENT004_PROP  | 
Host_to_WMS  | 
Property  | 
SKU Property Bilgileri  | 
- Integration Table Fields :
 
Transaction type :  | 
Host_to_WMS  | 
|||
Table Name :  | 
ENT004_PROP  | 
|||
Table Description :  | 
SKU master edditional Properties  | 
|||
Field Name  | 
Desc  | 
Type  | 
Len  | 
Mandatory  | 
S04ID  | 
Identity  | 
[bigint]  | 
  | 
  | 
S04SKOD  | 
Company Code  | 
[nvarchar]  | 
4  | 
*  | 
S04MKOD  | 
SKU Code  | 
[nvarchar]  | 
50  | 
*  | 
S04PROP  | 
Property Code  | 
[smallint]  | 
  | 
*  | 
S04VAL1  | 
Property value 1  | 
[nvarchar]  | 
200  | 
|
S04VAL2  | 
Property value 2  | 
[datetime]  | 
  | 
|
S04VAL3  | 
Property value 3  | 
[float]  | 
  | 
|
S04ITAR  | 
Transaction date (YYYYMMDD)  | 
[decimal]  | 
8, 0  | 
|
S04IZMN  | 
Transaction time (HHMMSS)  | 
[decimal]  | 
6, 0  | 
- Usage :
 - Multiple SKU Property 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 Property 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:ENT004_PROP_List>
<!--Zero or more repetitions:-->
<ENT004_PROP>
<S04SKOD>01</S04SKOD>
<S04MKOD>MDENEME101</S04MKOD>
<S04PROP>101</S04PROP>
<S04VAL1>11111</S04VAL1>
<S04ITAR>20200523</S04ITAR>
<S04IZMN>121212</S04IZMN>
</ENT004_PROP>
<ENT004_PROP>
<S04SKOD>01</S04SKOD>
<S04MKOD>MDENEME101</S04MKOD>
<S04PROP>101</S04PROP>
<S04VAL1>11111</S04VAL1>
<S04ITAR>20200523</S04ITAR>
<S04IZMN>121212</S04IZMN>
</ENT004_PROP>
</axat:ENT004_PROP_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>10645</EntityID>
<EntityCompany>01</EntityCompany>
<EntityCode>MDENEME101</EntityCode>
<EntitySubCode>101</EntitySubCode>
<HeaderExt1 i:nil="true"/>
<HeaderExt2 i:nil="true"/>
<HeaderExt3 i:nil="true"/>
<ResultItems/>
</ProcessResult>
<ProcessResult>
<LogState>0</LogState>
<LogMessage>Success</LogMessage>
<EntityID>10646</EntityID>
<EntityCompany>01</EntityCompany>
<EntityCode>MDENEME101</EntityCode>
<EntitySubCode>101</EntitySubCode>
<HeaderExt1 i:nil="true"/>
<HeaderExt2 i:nil="true"/>
<HeaderExt3 i:nil="true"/>
<ResultItems/>
</ProcessResult>
</processResult>
</s:Body>
</s:Envelope>
- Sample c# Source Code :