RCL_SHIP_METHOD_SCHEDULES

This table to stores the shipping method rules, including distance limits with unit of measure, pickup and arrival schedules, and effective dates.

Details

  • Schema: FUSION

  • Object owner: RCL

  • Object type: TABLE

  • Tablespace: Default

Primary Key

Name Columns

RCL_SHIP_METHOD_SCHEDULES_PK

SHIPPING_METHOD_SCHEDULE_ID

Columns

Name Datatype Length Precision Not-null Comments
SHIPPING_METHOD_SCHEDULE_ID NUMBER 18 Yes Unique identifier of the shipping method schedule.
OBJECT_VERSION_NUMBER NUMBER 9 Yes Used to implement optimistic locking. This number is incremented every time that the row is updated. The number is compared at the start and end of a transaction to detect whether another session has updated the row since it was queried.
CARRIER_ID NUMBER 18 Yes Unique identifier of the carrier.
MODE_OF_TRANSPORT VARCHAR2 30 Yes The value that indicates the means used to deliver shipments to the customer. Valid values include Rail, Air, or Road.
SERVICE_LEVEL VARCHAR2 30 Yes The value that indicates the priority of transportation that affects how quickly goods are transported. Valid values include Next day, Overnight, Express, or Door to Door.
MONDAY_PICKUP VARCHAR2 1 Indicates if shipping method is available on Mondays.
TUESDAY_PICKUP VARCHAR2 1 Indicates if shipping method is available on Tuesdays.
WEDNESDAY_PICKUP VARCHAR2 1 Indicates if shipping method is available on Wednesdays.
THURSDAY_PICKUP VARCHAR2 1 Indicates if shipping method is available on thursdays
FRIDAY_PICKUP VARCHAR2 1 Indicates if shipping method is available on Fridays.
SATURDAY_PICKUP VARCHAR2 1 Indicates if shipping method is available on Saturdays.
SUNDAY_PICKUP VARCHAR2 1 Indicates if shipping method is available on Sundays.
LEAD_TIME NUMBER 5 Time it takes from pickup to delivery.
LEAD_TIME_UOM_CODE VARCHAR2 3 Unit of measure of the time it takes from pickup to delivery.
PICKUP_TIME VARCHAR2 5 The time of the day when the carrier collects the shipment
DELIVERY_TIME VARCHAR2 5 The time of the day when the carrier delivers the shipment.
DISTANCE NUMBER 5 Distance limit for the shipping method.
DISTANCE_UOM_CODE VARCHAR2 3 Unit of measure code for the distance.
START_DATE DATE Date when the shipping method is active.
END_DATE DATE Date when the shipping method is inactive.
CREATED_BY VARCHAR2 64 Yes Who column: indicates the user who created the row.
CREATION_DATE TIMESTAMP Yes Who column: indicates the date and time of the creation of the row.
LAST_UPDATED_BY VARCHAR2 64 Yes Who column: indicates the user who last updated the row.
LAST_UPDATE_DATE TIMESTAMP Yes Who column: indicates the date and time of the last update of the row.
LAST_UPDATE_LOGIN VARCHAR2 32 Who column: indicates the session login associated to the user who last updated the row.

Indexes

Index Uniqueness Tablespace Columns
RCL_SHIP_METHOD_SCHEDULES_N1 Non Unique Default CARRIER_ID, MODE_OF_TRANSPORT, SERVICE_LEVEL
RCL_SHIP_METHOD_SCHEDULES_U1 Unique Default SHIPPING_METHOD_SCHEDULE_ID