INV_ZONE_TASKS

INV_ZONE_TASKS stores the details of the tasks within a zone.

Details

  • Schema: FUSION

  • Object owner: INV

  • Object type: TABLE

  • Tablespace: FUSION_TS_TX_DATA

Primary Key

Name Columns

INV_ZONE_TASKS_PK

ZONE_TASK_ID

Columns

Name Datatype Length Precision Not-null Comments
ZONE_TASK_ID NUMBER 18 Yes Primary key to uniquely identify a task within a zone.
ORGANIZATION_ID NUMBER 18 Yes Value that identifies an inventory organization.
ACTIVITY_TYPE_CODE VARCHAR2 30 Yes Code that identifies the activity type. The values are based on ORA_INV_ZONE_ACTIVITY_TYPES lookup.
ACTIVITY_REFERENCE_ID NUMBER 18 Value that identifies the reference of an activity.
ACTIVITY_REFERENCE_CODE VARCHAR2 120 Code that indicates the reference of an activity.
ACTIVITY_REFERENCE_NAME VARCHAR2 240 Name indicating the reference object of an activity. This will store the cycle count definition name, delivery card name and pick slip number.
TASK_NAME VARCHAR2 240 Name indicating the task within a zone.
ASSIGNMENT_STATUS_CODE VARCHAR2 30 Yes Indicates assignment status of a task. The values are based on ORA_INV_ZONE_TASK_ASGMT_STATUS lookup.
ASSIGNED_BY_PERSON_ID NUMBER 18 Indicates the person who assigned the task. Foreign Key to PER_PERSONS.PERSON_ID.
ASSIGNMENT_METHOD VARCHAR2 30 Indicates the method by which a task is assigned. The values are based on ORA_INV_ZONE_TASK_ASGMT_MTHD lookup.
CREATION_METHOD VARCHAR2 30 Yes Indicates the method by which a task is created. The values are based on ORA_INV_ZONE_TASK_CREATE_MTHD lookup.
TASK_STATUS_CODE VARCHAR2 30 Yes Indicates the progress status of a task. The values are based on ORA_INV_ZONE_TASK_STATUS lookup.
PRIORITY VARCHAR2 4 Indicates the priority of the task. The values are based on ORA_INV_ZONE_TASK_PRIORITY lookup.
ASSIGNED_DATETIME TIMESTAMP Indicates the timestamp when the task was assigned.
START_DATETIME TIMESTAMP Indicates the timestamp when the task was started.
TARGET_START_DATETIME TIMESTAMP Indicates the timestamp when the task is expected to be started.
TARGET_COMPLETION_DATETIME TIMESTAMP Indicates the timestamp when the task is expected to be completed.
TARGET_DURATION NUMBER 5 Indicates the expected duration for completing the task.
TARGET_DURATION_UOM VARCHAR2 1 Indicates the unit of measure for the target duration. The values are based on ORA_INV_ZONE_TASK_DURATION_UOM lookup.
COMPLETION_DATETIME TIMESTAMP Indicates the timestamp when the task was completed.
COMPLETION_METHOD VARCHAR2 30 Indicates the method by which a task is completed. The values are based on ORA_INV_ZONE_TASK_CREATE_MTHD lookup.
COMPLETED_BY_PERSON_ID NUMBER 18 Indicates the person who completed the task. Foreign Key to PER_PERSONS.PERSON_ID.
SCOPE_CODE VARCHAR2 30 Yes Indicates the scope of a task. The values are based on ORA_INV_ZONE_TASK_SCOPE lookup.
ZONE_ID NUMBER 18 Yes Indicates the zone scope of a task.
SUBINVENTORY_CODE VARCHAR2 10 Indicates the subinventory scope of a task.
LOCATOR_ID NUMBER 18 Indicates the locator scope of a task.
LOCATION_ID NUMBER 18 Indicates the location scope of a task.
RECURRING_TASK VARCHAR2 1 Yes Indicates whether this is a recurring task. Possible values are Y and N.
PERIOD_ID NUMBER 18 Indicates the recurrence period for the task.
RECURRING_TASK_DEFINITION_ID NUMBER 18 Indicates the recurring task from which this task was created.
TASK_CONFIGURATION VARCHAR2 4000 Stores task configurations in JSON format to control the display of task actions in my tasks UI.
PURGE_ALLOWED VARCHAR2 1 Yes Indicates whether this is a purgeable task. Possible values are Y and N. Default value is Y for all tasks except recurring tasks.
TOTAL_ITEMS NUMBER 9 The total number of lines associated with this task.
COMPLETED_ITEMS NUMBER 9 The total number of completed lines associated with this task.
PROCESSED_ITEMS NUMBER 9 The total number of processed lines associated with this task.
REMINDER_FLAG VARCHAR2 1 Indicates whether reminders are enabled for this task. The values are based on INV_YES_NO_CHAR lookup.
REMINDER_RECURRENCE VARCHAR2 30 Indicates the number of reminders to send. The values are based on ORA_INV_ZONE_TASK_RMDR_RECUR lookup.
REMINDER_DURATION NUMBER 3 Indicates the interval between reminders.
REMINDER_RELATIVE_TO VARCHAR2 30 Indicates the date relative to which the reminder should be sent. The values are based on ORA_INV_ZONE_TASK_RMDR_REL_TO lookup.
PENDING_REMINDER_COUNT NUMBER 3 Indicates the number of pending reminders to be sent.
NEXT_REMINDER_DATE DATE Indicates the date of the next reminder.
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.
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
INV_ZONE_TASKS_U1 Unique FUSION_TS_TX_DATA ZONE_TASK_ID