The Order Status DTD:
<!ELEMENT XML_OrderStatus_Submit (
Header ,
Detail ,
Summary ) >
<!ELEMENT Header (
UserName,
Password,
TransSetIDCode ,
TransControlID ,
ResponseVersion? ) >
<!ELEMENT UserName
(#PCDATA) >
<!ELEMENT Password
(#PCDATA) >
<!ELEMENT TransSetIDCode
(#PCDATA) >
<!ELEMENT TransControlID
(#PCDATA) >
<!ELEMENT ResponseVersion
(#PCDATA) >
<!ELEMENT Detail (
PurposeCode ,
EDIInd ,
NonEDIInd ,
LineStatusInd? ,
RefInfo+ ) >
<!ELEMENT PurposeCode
(#PCDATA) >
<!ELEMENT EDIInd
(#PCDATA) >
<!ELEMENT NonEDIInd
(#PCDATA) >
<!ELEMENT LineStatusInd
(#PCDATA) >
<!ELEMENT RefInfo (
RefIDQual,
RefID )+ >
<!ELEMENT
RefID (#PCDATA)
>
<!ELEMENT
RefIDQual (#PCDATA) >
<!ELEMENT Summary ( NbrOfSegments ) >
<!ELEMENT NbrOfSegments
(#PCDATA) >
Following is an example of a formatted Order Status (PurposeCode = '01') submit message:
<XML_OrderStatus_Submit>
<Header>
<UserName>INSERT_ID_HERE</UserName>
<Password>INSERT_PASSWORD_HERE</Password>
<TransSetIDCode>869</TransSetIDCode>
<TransControlID>10000</TransControlID>
<ResponseVersion>1.3</ResponseVersion>
</Header>
<Detail>
<PurposeCode>01</PurposeCode>
<EDIInd>N</EDIInd>
<NonEDIInd>Y</NonEDIInd>
<RefInfo>
<RefIDQual>PO</RefIDQual>
<RefID>22222222</RefID>
</RefInfo>
</Detail>
<Summary>
<NbrOfSegments/>
</Summary>
</XML_OrderStatus_Submit>
Following is an example of a formatted Order/Invoice Detail (PurposeCode = '02') submit message using a sales order number:
This is an example of a formatted Order/Invoice Detail (PurposeCode = '02') submit message using an invoice number:
<XML_OrderStatus_Submit>
<Header>
<UserName>INSERT_ID_HERE</UserName>
<Password>INSERT_PASSWORD_HERE</Password>
<TransSetIDCode>869</TransSetIDCode>
<TransControlID>10000</TransControlID>
<ResponseVersion>1.3</ResponseVersion>
</Header>
<Detail>
<PurposeCode>02</PurposeCode>
<RefInfo>
<RefIDQual>IN</RefIDQual>
<RefID>8000015611</RefID>
</RefInfo>
</Detail>
<Summary>
<NbrOfSegments/>
</Summary>
</XML_OrderStatus_Submit>
<XML_OrderStatus_Submit>
<Header>
<UserName>INSERT_ID_HERE</UserName>
<Password>INSERT_PASSWORD_HERE</Password>
<TransSetIDCode>869</TransSetIDCode>
<TransControlID>10000</TransControlID>
<ResponseVersion>1.3</ResponseVersion>
</Header>
<Detail>
<PurposeCode>03</PurposeCode>
<RefInfo>
<RefIDQual>ON</RefIDQual>
<RefID>8000015611</RefID>
</RefInfo>
<RefInfo>
<RefIDQual>IN</RefIDQual>
<RefID>I520000000</RefID>
</RefInfo>
</Detail>
<Summary>
<NbrOfSegments/>
</Summary>
</XML_OrderStatus_Submit>
Element Name
|
Optional
Required |
Description
|
Data
Type |
Max Len
|
||||||||
Header | R | |||||||||||
UserName | R | Logon ID assigned by Tech Data | A/N | |||||||||
Password | R | Password assigned by Tech Data | A/N | |||||||||
TransSetIDCode | R | Value must be ‘869’ | A/N | |||||||||
TransControlID | R | Unique tracking identifier assigned by the customer | A/N | 100 | ||||||||
ResponseVersion | O |
Response Version to be returned.
|
A/N | 20 | ||||||||
Detail | R | |||||||||||
PurposeCode | R |
The type of order status being requested.
|
N | 2 | ||||||||
EDIInd | R | Obsolete, disregard this value | A | 1 | ||||||||
NonEDIInd | R | Obsolete, disregard this value | A | 1 | ||||||||
LineStatusInd | O | Obsolete, disregard this value | A | 1 | ||||||||
RefInfo | R | See Note | ||||||||||
RefIDQual | R |
Type of identifier that will be contained in the following <RefID> element.
|
A | 2 | ||||||||
RefID | R |
|
A/N |
ON-10 PO-35 IN-10 |
||||||||
Summary | R | |||||||||||
NbrOfSegments | R | Obsolete, disregard this value | N | 9 |
For PurposeCode 01, multiple occurrences of <RefInfo> are
permissible. The <RefIDQual> and <RefID> elements defined under
<RefInfo> will contain the requested customer's purchase order number or
Tech Data Assigned sales order number.
For example, Order Status data for three different customer purchase orders could
be requested within one Order Status request.
For PurposeCode 02, multiple occurrences of<RefInfo> are permissible. The <RefIDQual> and <RefID> elements defined under <RefInfo> will contain the requested Tech Data assigned sales order or invoice number. For example, Order Status data for two different Tech Data assigned sales order numbers and three different Tech Data assigned invoice numbers could be requested within one Order Status request. Note that it is sufficient to provide either a sales order number OR or an invoice number; you don't need both. For PurposeCode 03, two occurrences of <RefInfo> are required. One occurrence will contain the requested Tech Data assigned sales order number and the other occurrence will contain a Tech Data assigned invoice number. The invoice number must be associated with the sales order. Only one 'ON' (sales order) and 'IN' (invoice number) combination is allowed within an Order Status request. If Order Status data is required for more than one sales order, multiple Order Status requests will need to be submitted. |
<XML_OrderStatus_Response>
<Header>
<TransSetIDCode>870</TransSetIDCode>
<TransControlID>10000</TransControlID>
<ResponseVersion>1.3</ResponseVersion>
</Header>
<Detail>
<PurposeCode>02</PurposeCode>
<RefInfo>
<RefIDQual>PO</RefIDQual>
<RefID>22222222</RefID>
</RefInfo>
<RefInfo>
<RefIDQual>IN</RefIDQual>
<RefID>8000015611</RefID>
</RefInfo>
<RefInfo>
<RefIDQual>ON</RefIDQual>
<RefID>I520000000</RefID>
</RefInfo>
<Terms>NET90 DAYS</Terms>
<CurrencyType>USD</CurrencyType>
<ShipmentDispQual>SC</ShipmentDispQual>
<ShipmentDisp>Y</ShipmentDisp>
<PackageDispQual>BS</PackageDispQual>
<PackageDisp>Y</PackageDisp>
<ShipToName>COOLCASES</ShipToName>
<ShipToAddr1>2145 FREEZER
ST</ShipToAddr1>
<ShipToCity>CLEARWATER</ShipToCity>
<ShipToStateProv>FL</ShipToStateProv>
<ShipToPostalCode>33755</ShipToPostalCode>
<ContactFuncCode>IC</ContactFuncCode>
<ContactName>ICED ATHLON</ContactName>
<InvoiceDate>5/2/12</InvoiceDate>
<LineInfo>
<AssignedID>001</AssignedID>
<ProductIDQual>VP</ProductIDQual>
<ProductID>10200497</ProductID>
<ProductDesc>GSX-230
24-PIN PRINTER</ProductDesc>
<UnitPrice>174.76</UnitPrice>
<ExtendedPrice>174.76</ExtendedPrice>
<WhseDesc>SUWANEE,
GA</WhseDesc>
<ShipViaDesc>UPS
GROUND</ShipViaDesc>
<QtyOrdered>1</QtyOrdered>
<QtyShipped>0</QtyShipped>
<QtyBackordered>1</QtyBackordered>
<QtyReturned>0</QtyReturned>
</LineInfo>
<NbrOfOrderLines>1</NbrOfOrderLines>
</Detail>
<Summary>
<NbrOfSegments></NbrOfSegments>
</Summary>
</XML_OrderStatus_Response>
Element Name
|
Optional
Required |
Description
|
Data
Type |
Max Len
|
||||||||||||||
Header | ||||||||||||||||||
TransSetIDCode | R | Value must be 870 | N | |||||||||||||||
TransControlID | O | Unique tracking identifier assigned by the customer | A/N | 100 | ||||||||||||||
ResponseVersion | O |
ResponseVersion 1.3 or higher
|
A/N | 20 | ||||||||||||||
Detail | ||||||||||||||||||
PurposeCode | O |
The type of order status
|
||||||||||||||||
RefInfo | R | Minimum of 1 per Order Status response message, but multiple could occur | ||||||||||||||||
RefIDQual | R |
The type of identifier in the proceeding <RefID> element.
|
A | 2 | ||||||||||||||
RefID | R |
|
A/N |
EU-35 IN-10 ON-10 PO-35 |
||||||||||||||
ErrorInfo | O | |||||||||||||||||
ErrorIDQual | O | Value must be ‘1Q’ | A/N | 2 | ||||||||||||||
ErrorID | O | Value must be ‘0’ | N | 1 | ||||||||||||||
ErrorDesc | O | Error description | A/N | 250 | ||||||||||||||
OrderStatus | O |
(Purpose Code
01 only)
|
A/N | |||||||||||||||
Terms | O | Payment conditions under which the order was accepted | A/N | 30 | ||||||||||||||
CurrencyType | O | Only ‘USD’ (U.S. Dollars) is used at this time | A | |||||||||||||||
ShipmentDispQual | O | Always ‘SC’ (Ship Complete) | A | |||||||||||||||
ShipmentDisp | O |
|
A | |||||||||||||||
PackageDispQual | O | Value must be ‘BS’ (Blind Ship) | ||||||||||||||||
PackageDisp | O |
Whether the order will be shipped without Tech Data’s name and logo on the
shipping documents .
|
||||||||||||||||
BillToAcctNbr | O | Shipping account number of the customer on whose behalf the order was placed Only FedEx account numbers are available at this time | N | 9 | ||||||||||||||
ShipToName | O | The name of the individual or organization receiving the order | A/N | 25 | ||||||||||||||
ShipToAddr1 | O | The first street address line of the individual or organization receiving the order | A/N | 35 | ||||||||||||||
ShipToAddr2 | O | The second street address line of the individual or organization receiving the order | A/N | 35 | ||||||||||||||
ShipToAddr3 | O | The third street address line of the individual or organization receiving the order | A/N | 35 | ||||||||||||||
ShipToCity | O | City destination name | A/N | 12 | ||||||||||||||
ShipToStateProv | O | U.S. state or Canadian province destination abbreviation | A/N | 2 | ||||||||||||||
ShipToPostalCode | O | U.S. zip code or Canadian postal code of destination receiving order | A/N | 9 | ||||||||||||||
ContactName | O | Contact person’s name assigned to order | A/N | 25 | ||||||||||||||
InvoiceTotal | O |
Total dollar amount of invoice. A single order can generate multiple invoices
when multiple warehouses are used to fill an order and/or when a previously backordered
line is shipped.
• ResponseVersion 1.7 or higher
|
N | 15(2) | ||||||||||||||
HandlingCharge | O |
Total dollar amount of handling charges.
• ResponseVersion 1.7 or higher
|
N | 15(2) | ||||||||||||||
NetFreightCharge | O | The cost associated with shipping the container based on the carrier, weight, destination, insurance, and freight discount (if any). | N | 15(2) | ||||||||||||||
StateFee | O |
The amount of state fees charged to the order
• ResponseVersion 1.6 or higher
|
N/A | N/A | ||||||||||||||
OrderDate | O |
(PurposeCode 01) Date the order was entered.
(format mm/dd/yy)
• ResponseVersion 1.8 or higher
|
N | 8 | ||||||||||||||
InvoiceDate | O |
(PurposeCode 02) Date the order was invoiced.
(format mm/dd/yy)
• ResponseVersion 1.8 or higher
|
N | 8 | ||||||||||||||
EstimatedShipDate | O |
Estimated date (format mm/dd/yy) that a backordered item will be
shipped to the customer. The tag will be empty if Tech Data does not have an open
PO with the Vendor.
• ResponseVersion 1.5 or higher
|
N | 8 | ||||||||||||||
LineInfo | ||||||||||||||||||
AssignedID | O |
Unique tracking identifier assigned by the customer in the OrigCustPOLineNbr
tag in the corresponding line item of the order. If no OrigCustPOLineNbr was specified,
the Tech Data line number is returned.
• ResponseVersion 1.5 or higher
|
A/N | 100 | ||||||||||||||
ProductIDQual | O | Value must be ‘VP’ | A | |||||||||||||||
ProductID | O | Tech Data item number | A/N | 20 | ||||||||||||||
ProductIDQual2 | O |
Value must be ‘MG’
• ResponseVersion 1.6 or higher
|
A | |||||||||||||||
ProductID2 | O |
Manufacturer’s item number
• ResponseVersion 1.6 or higher
|
A/N | 20 | ||||||||||||||
ProductDesc | O | Description of item | A/N | 50 | ||||||||||||||
LineStatus | O |
Status of the line item. This is different from the Order Status
which applies to the whole order.
• ResponseVersion 1.3 or higher
|
A/N | 20 | ||||||||||||||
ConfigID | O |
Customer’s configuration identification number for the configured item.
• ResponseVersion 1.9 or higher
|
N | 6 | ||||||||||||||
ConfigLineStatus | O |
Configuration status
• ResponseVersion 1.9 or higher
|
A | |||||||||||||||
UnitPrice | O | Customer’s price for one unit of item ordered | N | 15(2) | ||||||||||||||
ExtendedPrice | O | Total price of order line (UnitPrice x QtyOrdered) | N | 15(2) | ||||||||||||||
WhseDesc | O | Tech Data Warehouse shipping this order line | A/N | 30 | ||||||||||||||
ShipViaDesc | O | Carrier name and mode, i.e. ‘UPS GROUND’ or FEDEX NEXT DAY’ | A/N | 25 | ||||||||||||||
QtyOrdered | O | The number of units ordered | N | 4 | ||||||||||||||
QtyShipped | O | The number of units of the item that was shipped | N | 4 | ||||||||||||||
QtyBackordered | O | The number of units that were not available for shipment at the time the order was filled. This quantity is backordered to Tech Data’s vendor. | N | 4 | ||||||||||||||
QtyReturned | O | The number of units previously shipped that were subsequently sent back to Tech Data through an authorized return. | N | 4 | ||||||||||||||
DateShipped | O | Date on which shipment was initiated. (format mm/dd/yy) | N | 8 | ||||||||||||||
ItemEstimatedShipDate | O |
(Purpose Code
01 or 02) Estimated date that a back ordered item will be shipped. The tag
will be empty if Tech Data does not have an open PO with the Vendor.
Canadian customers only: For vendor drop ship (warehouse 99) orders, contains the date that the order is estimated to be shipped to the customer. (format mm/dd/yy)
• ResponseVersion 1.5 or higher
|
N | 8 | ||||||||||||||
NbrOfOrderLines | O | Total number of detail lines items being reported in the response for the specified Sales Order or Invoice number. | N | 3 | ||||||||||||||
Summary | ||||||||||||||||||
NbrOfSegments | R | Obsolete, disregard this value | N | 9 |
<!ELEMENT XML_ShipmentStatus_Response (
Header ,
Detail ,
Summary ) >
<!ELEMENT Header (
UserName? ,
Password? ,
TransSetIDCode ,
TransControlID? ,
ResponseVersion? ) >
<!ELEMENT UserName (#PCDATA)
>
<!ELEMENT Password
(#PCDATA) >
<!ELEMENT TransSetIDCode
(#PCDATA) >
<!ELEMENT TransControlID
(#PCDATA) >
<!ELEMENT ResponseVersion
(#PCDATA) >
<!ELEMENT Detail (
PurposeCode ,
RefInfo* ,
ErrorInfo? ,
ContainerInfo*
,
NbrOfContainers
) >
<!ELEMENT
PurposeCode (#PCDATA) >
<!ELEMENT
RefInfo (
RefID,
RefIDQual) >
<!ELEMENT RefID (#PCDATA) >
<!ELEMENT RefIDQual (#PCDATA) >
<!ELEMENT ErrorInfo (
ErrorIDQual,
ErrorID,
ErrorDesc ) >
<!ELEMENT ErrorIDQual (#PCDATA) >
<!ELEMENT ErrorID (#PCDATA) >
<!ELEMENT ErrorDesc (#PCDATA) >
<!ELEMENT ContainerInfo (
CIAssignedID,
ContainerID,
ShipToName,
ShipToAddr1,
ShipToAddr2?,
ShipToAddr3?,
ShipToCity,
ShipToStateProv,
ShipToPostalCode,
DateShipped,
DateInvoiced,
Weight,
WhseDesc,
ShipVia,
ContainerValue,
HandlingCharge,
CODCharge,
DebitCredit,
NetFreightCharge,
TaxCharge,
StateFee? ,
TotalOrderValue,
ItemInfo+ ,
NbrOfItems) >
<!ELEMENT ContainerID (#PCDATA) >
<!ELEMENT ShipToName (#PCDATA) >
<!ELEMENT ShipToAddr1 (#PCDATA) >
<!ELEMENT ShipToAddr2 (#PCDATA) >
<!ELEMENT ShipToAddr3 (#PCDATA) >
<!ELEMENT ShipToCity (#PCDATA) >
<!ELEMENT ShipToStateProv (#PCDATA) >
<!ELEMENT ShipToPostalCode (#PCDATA) >
<!ELEMENT DateShipped (#PCDATA) >
<!ELEMENT DateInvoiced (#PCDATA) >
<!ELEMENT Weight
(#PCDATA) >
<!ELEMENT WhseDesc (#PCDATA)
>
<!ELEMENT ShipVia
(#PCDATA) >
<!ELEMENT ContainerValue (#PCDATA) >
<!ELEMENT HandlingCharge (#PCDATA) >
<!ELEMENT CODCharge (#PCDATA)
>
<!ELEMENT DebitCredit (#PCDATA) >
<!ELEMENT NetFreightCharge (#PCDATA) >
<!ELEMENT TaxCharge (#PCDATA)
>
<!ELEMENT StateFee (#PCDATA)
>
<!ELEMENT TotalOrderValue (#PCDATA) >
<!ELEMENT ItemInfo (
IIAssignedID,
AssignedID?,
ProductID,
ProductIDQual,
ProductID2?,
ProductIDQual2?,
ProductDesc,
QtyShipped,
SerialInd,
SerialInfo*) >
<!ELEMENT IIAssignedID (#PCDATA) >
<!ELEMENT AssignedID (#PCDATA) >
<!ELEMENT ProductID (#PCDATA)
>
<!ELEMENT ProductIDQual (#PCDATA) >
<!ELEMENT ProductID2 (#PCDATA) >
<!ELEMENT ProductIDQual2 (#PCDATA) >
<!ELEMENT ProductDesc (#PCDATA) >
<!ELEMENT QtyShipped (#PCDATA) >
<!ELEMENT SerialInd (#PCDATA)
>
<!ELEMENT SerialInfo (SerialNbr) >
<!ELEMENT SerialNbr (#PCDATA) >
<!ELEMENT NbrOfItems
(#PCDATA) >
<!ELEMENT Summary (
NbrOfContainers?,
NbrOfSegments ) >
<!ELEMENT NbrOfContainers
(#PCDATA) >
<!ELEMENT NbrOfSegments
(#PCDATA) >
Element Name
|
Optional
Required |
Description
|
Data
Type |
Max Len
|
||||||||
Header | ||||||||||||
UserName | O | Obsolete, this element will never be in the response document | ||||||||||
Password | O | Obsolete, this element will never be in the response document | ||||||||||
TransSetIDCode | R | Value must be ‘856’ | N | 3 | ||||||||
TransControlID | O | Unique tracking identifier assigned by the customer for each Availability request message submitted. The content of the element sent by the customer within the XML message is returned as is to the customer within the Response message. The primary function of these types of elements is for tracking purposes. | A/N | 100 | ||||||||
ResponseVersion | O |
Designates the Response DTD version
• ResponseVersion of 1.3 or higher
|
A/N | 20 | ||||||||
Detail | ||||||||||||
PurposeCode | R | A code which indicating the type of response requested. The code values that can be returned in an OrderStatus (870) format is: 03 = Ship Detail | ||||||||||
RefInfo | O | Three occurrences per Ship Detail response. | ||||||||||
RefIDQual | R |
|
A/N | 2 | ||||||||
RefID | R | Tech Data assigned Sales Order or Invoice number or customer’s Purchase Order number. | A/N |
ON-10 PO-35 IN-10 |
||||||||
ErrorInfo | O | |||||||||||
ErrorIDQual | O | Value must be ‘1Q’ | A/N | 2 | ||||||||
ErrorID | O | Value must be ‘0’ | N | 1 | ||||||||
ErrorDesc | O | Error description | A/N | 250 | ||||||||
ContainerInfo | O | |||||||||||
ContainerID | R | The carrier’s container (tracking) number | A/N | 18 | ||||||||
ShipToName | R | The name of the individual or organization receiving the order | A/N | 25 | ||||||||
ShipToAddr1 | R | The first street address line of the individual or organization receiving the order | A/N | 35 | ||||||||
ShipToAddr2 | O | The second street address line of the individual or organization receiving the order | A/N | 35 | ||||||||
ShipToAddr3 | O | The third street address line of the individual or organization receiving the order | A/N | 35 | ||||||||
ShipToCity | R | City destination name | A/N | 12 | ||||||||
ShipToStateProv | R | U.S. state or Canadian province destination abbreviation | A/N | 2 | ||||||||
ShipToPostalCode | R | U.S. zip code or Canadian postal code of destination receiving order | A/N | 9 | ||||||||
DateShipped | R | Date order line was shipped. (format mm/dd/yy) | N | 8 | ||||||||
DateInvoiced | R | Date order line was invoiced. (format mm/dd/yy) | N | 8 | ||||||||
Weight | R | Weight of order line | N | 8 | ||||||||
WhseDesc | R | Location name of logistics center shipping this order item | A/N | 30 | ||||||||
ShipVia | R | Carrier name and mode, i.e. ‘UPS GROUND’ or FEDEX NEXT DAY’ | ||||||||||
ContainerValue | R | Always set to 0.00. | N | 9(2) | ||||||||
HandlingCharge | R | Additional fee assessed to order line for special handling. Value set in first Container (applies to entire Invoice). Subsequent Containers set to 0.00. | N | 15(2) | ||||||||
CODCharge | R | Always set to 0.00. | N | 15(2) | ||||||||
DebitCredit | R | Always set to 0.00. | N | 15(2) | ||||||||
NetFreightCharge | R | The cost associated with shipping the container based on the carrier, weight, destination, insurance, and freight discount (if any). Value set in first Container (applies to entire Invoice). Subsequent Containers set to 0.00. | N | 15(2) | ||||||||
TaxCharge | R | Always set to 0.00. | N | 15(2) | ||||||||
StateFee | O |
The amount of state fees charged to the order. Value set in first Container (applies
to entire Invoice). Subsequent Containers set to 0.00.
• ResponseVersion 1.5 or higher
|
N | 15(2) | ||||||||
TotalOrderValue | R |
Container value plus any of the following additional charges that may be assessed:
|
N | 15(2) | ||||||||
ItemInfo | O | |||||||||||
IIAssignedID | R | Unique tracking identifier assigned by the customer to each order line | A/N | 100 | ||||||||
AssignedID | O |
Unique tracking identifier assigned by the customer to each order line in the <OrigCustPOLineNbr>
field of the Order Submit.
• ResponseVersion 1.5 or higher
|
A/N | 100 | ||||||||
ProductIDQual | R | Value must be ‘VP’ | A | 2 | ||||||||
ProductID | R | Tech Data item number | A/N | 20 | ||||||||
ProductIDQual2 | R |
Value must be ‘MG’
• ResponseVersion 1.5 or higher
|
A | 2 | ||||||||
ProductID2 | R |
Manufacturers item number
• ResponseVersion 1.5 or higher
|
A/N | 20 | ||||||||
ProductDesc | R | Description of item | A/N | 50 | ||||||||
QtyShipped | R | The number of units of the ordered item that were shipped | N | 4 | ||||||||
SerialInd | O |
|
A | 1 | ||||||||
SerialInfo | O | |||||||||||
SerialNbr | R | Serial number assigned to unit assigned by the item's manufacturer. | A/N | 20 | ||||||||
NbrOfItems | R |
Total number of order lines in container. Note: A container may include multiple order lines and an order line could span across multiple containers. |
N | 4 | ||||||||
Summary | ||||||||||||
NbrOfContainers | O | Total number of containers used to ship the order line | N | 4 | ||||||||
NbrOfSegments | R | Obsolete, disregard this value | N | 9 |
©2015 Tech Data Corporation. All Rights Reserved. | Tech Data proprietary and confidential |