The Facility Item Feed assigns SKU attributes to an existing facility or node.

This feed is also known as the Node Item Feed.

This feed includes the following key data elements for each item:

  • Location of inventory
  • Eligibility Criteria (SFS, STS, ISPU, Associate Delivery)
  • Node Item Priority
  • Supply Factor: Weeks or days of supply for the store or item. This factor is used to calculate Computed Supply, which is used by the sourcing Inventory Burn rule.
  • Profitability: Used by the sourcing Inventory Burn rule; can be configured to use retail store profitability.

Notes:

  • Default Character Encoding: Unicode: UTF-8
  • Exchange Frequency: Client-specific
  • Production Mailbox Location: Client-specific
  • Test Mailbox Location: Client-specific

Schema

The Facility Item Feed follows the schema: FacilityItemNew.xsd. Refer to the following schemas for type definitions and other details:

Filename

The combination of filename and mailbox determines the destination of the Facility Item Feed

The filename follows this pattern: <ClientId>_<CatalogId>_FacilityItem_<YYYYMMDDHHMMSS>.xml

Filename example: TMSNA_21_FacilityItem_20170315000021.xml

Example

ClosedThe following example demonstrates the addition of one item to a store and the addition of one item to a client warehouse.

Copy this code sample.
<?xml version="1.0" encoding="UTF-8"?>
<FacilityItemMaster>
  <MessageHeader>
    <Standard>GSI</Standard>
    <HeaderVersion>5.21</HeaderVersion>
    <VersionReleaseNumber>5.21</VersionReleaseNumber>
    <SourceData>
      <SourceId>TMSNA</SourceId>
      <SourceType>CLIENT</SourceType>
    </SourceData>
    <DestinationData>
      <DestinationId>GSI</DestinationId>
      <DestinationType>PH</DestinationType>
    </DestinationData>
    <EventType>FacilityItem</EventType>
    <MessageData>
      <MessageId>2016060110000041</MessageId>
      <CorrelationId>2016060110000041</CorrelationId>
    </MessageData>
    <CreateDateAndTime>2016-06-01T09:49:55Z</CreateDateAndTime>
  </MessageHeader>
  <FacilityItem operation_type="Add" client_id="TMSNA" store_id="TMSUS" facility_id="TMS123" catalog_id="21" client_item_id="12345">
    <ItemAttributes>
      <InventoryLocation>1</InventoryLocation>
      <Price currency_code="USD">1</Price>
      <Profitability>1</Profitability>
      <SupplyFactor>1</SupplyFactor>
      <FacilityItemPriority>1</FacilityItemPriority>
      <IspEligible>Y</IspEligible>
      <StsEligible>Y</StsEligible>
      <SfsEligible>Y</SfsEligible>   
      <AssociateDeliveryEligible>Y</AssociateDeliveryEligible>
    </ItemAttributes>
  </FacilityItem>
  <FacilityItem operation_type="Add" client_id="TMSNA" store_id="TMSUS" facility_id="TMS_NA-DC001" catalog_id="21" client_item_id="12346">
    <ItemAttributes>
      <InventoryLocation>1</InventoryLocation>
      <Price currency_code="USD">1</Price>
      <Profitability>1</Profitability>
      <SupplyFactor>1</SupplyFactor>
      <FacilityItemPriority>1</FacilityItemPriority>
      <IspEligible>Y</IspEligible>
      <StsEligible>Y</StsEligible>
      <SfsEligible>Y</SfsEligible>   
      <AssociateDeliveryEligible>Y</AssociateDeliveryEligible>
    </ItemAttributes>
  </FacilityItem>
</FacilityItemMaster>