Each row in this table represents a fulfillment center.
Column Descriptions
Column Name
| Column Type
| Description
|
FFMCENTER_ID
| INTEGER NOT NULL
| Generated unique key.
|
MEMBER_ID
| BIGINT NOT NULL
| The owner of the fulfillment center.
|
NAME
| VARCHAR(254)
| A string that, along with the owner, uniquely identifies this fulfillment center.
|
DEFAULTSHIPOFFSET
| INTEGER NOT NULL DEFAULT 86400
| An estimate of the number seconds it takes for an item to be shipped from this fulfillment center. This value can be overridden in the STORITMFFC table.
|
MARKFORDELETE
| INTEGER NOT NULL DEFAULT 0
| Indicates whether the fulfillment center should be deleted as follows:
0 = do not delete.
1 = delete if no longer in use.
Refer to the Database Cleanup utility.
|
EXTFFMSTORENUM
| VARCHAR(128)
| A reference number that can be used to locate a store or external fulfillment system. Shopping carts or orders can be placed to fulfill items in OrderRelease objects through this fulfillment center.
If the default implementation of the ReleaseToSpecifiedFulfillmentCenter controller command finds a valid StoreId (primary key value for the Store table) in this column. Then it will add items from orders released to this fulfillment center to a shopping cart (an order with status P) in the specified store.
|
INVENTORYOPFLAGS
| INTEGER NOT NULL DEFAULT 0
| Contains bit flags indicating how to perform inventory operations. Enter an integer that is the sum of the number of the flags that you want to turn on. Example: Enter "3" to turn on flags 1 and 2.
1 = multiItem - operations accept multiple order items.
2 = noCheck - inventory is never checked (the check operation always appears to succeed).
4 = noAllocation - the allocate operation checks inventory, but does not actually allocate it (the allocate operation appears to succeed if the check succeeds).
8 = noBackorder - inventory is never backordered (the backorder operation always fails).
|
MAXNUMPICK
| SMALLINT NOT NULL DEFAULT 25
| The maximum number of the releases per pick batch
|
PICKDELAYINMIN
| SMALLINT NOT NULL DEFAULT 5
| The delay in minutes from the time an order is placed until one of its releases can be included.
|
OPTCOUNTER
| SMALLINT
| Reserved for IBM internal use.
|
DROPSHIP
| CHAR(1) NOT NULL DEFAULT 'N'
| Indicates whether the fulfillment center is a drop-ship fulfillment center. Y means that it is. N indicates that it is not.
|