[Home] [Help]
[Dependency Information]
Object Name: | OKC_LAUNCH_TASKGRID_V |
---|---|
Object Type: | VIEW |
Owner: | APPS |
FND Design Data: | ![]() |
Subobject Name: | |
Status: | VALID |
A supplementary view used to simplify forms coding.
Warning: Oracle does not recommend you query or alter datausing this view. It may change dramatically in subsequent minor or major
releases.
Name | Datatype | Length | Mandatory | Comments |
---|---|---|---|---|
TASK_ID | NUMBER | Foreign Key to JTF_TASKS | ||
TASK_NUMBER | VARCHAR2 | (30) | Task Number from JTF TASKS | |
TASK_TYPE | VARCHAR2 | (30) | Task Type from JTF_TASKS | |
OBJECT_VERSION_NUMBER | NUMBER | Sequential number set at 1 on insert and incremented on update. Used by APIs to ensure current record is passed. | ||
SOURCE_OBJECT_ID | NUMBER | Foreign Key that owns the task. For contracts this is either the resolved_timevalue id (for tasks derived from schedule rules), contract id (for contingent events) or condition occurrence id (for tasks indicating a condition has evaluated to true) | ||
TASK_NAME | VARCHAR2 | (80) | Task Name from JTF_TASKS | |
OWNER | VARCHAR2 | (4000) | Task Owner from JTF_TASKS | |
DUE_DATE | DATE | Date that the task is due | ||
END_DATE | DATE | The end of the active period, one second before midnight on the date indicated. | ||
STATUS | VARCHAR2 | (30) | Status of the Task | |
CONTRACT_ID | NUMBER | Contract primary key. | ||
ALARM_FIRED_COUNT | NUMBER | Number of times that a task has been escalated |
Cut, paste (and edit) the following text to query this object:
SELECT TASK_ID
, TASK_NUMBER
, TASK_TYPE
, OBJECT_VERSION_NUMBER
, SOURCE_OBJECT_ID
, TASK_NAME
, OWNER
, DUE_DATE
, END_DATE
, STATUS
, CONTRACT_ID
, ALARM_FIRED_COUNT
FROM APPS.OKC_LAUNCH_TASKGRID_V;
APPS.OKC_LAUNCH_TASKGRID_V is not referenced by any database object
|
|
|