Search Results jtf_task_statuses_vl
Overview
JTF_TASK_STATUSES_VL is a Multi-Lingual Support (MLS) view owned by the APPS schema in Oracle E-Business Suite. It belongs to the JTF – CRM Foundation product family and is documented as VALID in ETRM for releases 12.1.1 and 12.2.2. The view presents the translatable and non-translatable attributes of task statuses used throughout the CRM Foundation and its dependent applications, including Oracle Tasks, Oracle TeleSales, Oracle Service, and Resource Manager task workflows.
In Oracle EBS, the "_VL" suffix denotes a view that joins a "_B" (base) table containing language-independent data with a "_TL" (translation) table containing language-specific text. JTF_TASK_STATUSES_VL therefore resolves the user's current session language via USERENV('LANG') and returns the appropriate NAME and DESCRIPTION for each task status. This design allows a single logical status definition (for example, "Working" or "Cancelled") to be stored once, with translated prompts maintained per installed language. From a reporting and integration standpoint, the view is the canonical source for status reference data, foreign key validation, and lookup queries in CRM task management.
Underlying Base Objects
The view is defined over two base objects, both documented in ETRM as synonyms: JTF_TASK_STATUSES_B and JTF_TASK_STATUSES_TL. The view text confirms a two-table join keyed on TASK_STATUS_ID, with the language restriction applied on the TL side (T.LANGUAGE = USERENV('LANG')). The base side also applies a seeded filter of B.USAGE = 'TASK', ensuring the view exposes only those statuses that apply to task entities rather than to other CRM usage contexts.
- JTF_TASK_STATUSES_B – holds operational attributes such as TASK_STATUS_ID, CLOSED_FLAG, date-activation ranges, seeded indicators, and the many behavior flags that govern what a status permits.
- JTF_TASK_STATUSES_TL – holds language-specific text (NAME, DESCRIPTION) keyed by TASK_STATUS_ID and LANGUAGE.
- ROW_ID – exposed from the base table's ROWID, permitting row-level identification typical of EBS MLS views.
Key Columns
The view exposes administrative, behavioral, and descriptive columns. Understanding the flag semantics is essential for correct task-status logic.
- TASK_STATUS_ID – primary identifier for the status, joined across both base tables.
- NAME / DESCRIPTION – translated prompt and description from the TL table; sourced according to the session language.
- CLOSED_FLAG – indicates whether tasks in this status are considered closed.
- Standard flags – ASSIGNED_FLAG, WORKING_FLAG, APPROVED_FLAG, COMPLETED_FLAG, CANCELLED_FLAG, REJECTED_FLAG, ACCEPTED_FLAG, ON_HOLD_FLAG, SCHEDULABLE_FLAG, and DELETE_ALLOWED_FLAG describe which operations or transitions are valid for the status.
- START_DATE_ACTIVE / END_DATE_ACTIVE – effective dating of the status definition.
- SEEDED_FLAG – distinguishes Oracle-seeded statuses from user-defined ones.
- TASK_STATUS_FLAG / ASSIGNMENT_STATUS_FLAG – distinguish statuses applicable to tasks versus assignments.
- START_DATE_TYPE / END_DATE_TYPE – control how the start and end dates of tasks associated with the status are treated.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–15 – descriptive flexfield context and segments.
- OBJECT_VERSION_NUMBER – optimistic locking version, used by the OAF/Forms framework.
- Audit columns – CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical uses include lookup population for status lists of values, validation of status IDs on task records, and reporting on task distribution by status. Because the view resolves the translated NAME, it is preferred over querying the TL table directly.
List all active task statuses with translations:
SELECT TASK_STATUS_ID, NAME, DESCRIPTION, SEEDED_FLAG, CLOSED_FLAG
FROM APPS.JTF_TASK_STATUSES_VL
WHERE START_DATE_ACTIVE <= SYSDATE
AND (END_DATE_ACTIVE IS NULL OR END_DATE_ACTIVE >= SYSDATE)
ORDER BY NAME;
Identify statuses that permit deletion or scheduling:
SELECT TASK_STATUS_ID, NAME
FROM APPS.JTF_TASK_STATUSES_VL
WHERE DELETE_ALLOWED_FLAG = 'Y'
AND SCHEDULABLE_FLAG = 'Y';
Join to task records for status reporting:
SELECT t.task_id, s.name AS status_name, t.creation_date
FROM jtf_tasks_b t, apps.jtf_task_statuses_vl s
WHERE t.task_status_id = s.task_status_id;
Because the language is resolved at runtime, the same query returns correctly translated text for each user session without additional joins or NLS functions in the calling code.
-
View: JTF_TASK_STATUSES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_STATUSES_VL, object_name:JTF_TASK_STATUSES_VL, status:VALID, product: JTF - CRM Foundation , description: MLS View for JTF_TASK_STATUSES_B and JTF_TASK_STATUSES_TL. , implementation_dba_data: APPS.JTF_TASK_STATUSES_VL ,
-
View: JTF_TASK_STATUSES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_STATUSES_VL, object_name:JTF_TASK_STATUSES_VL, status:VALID, product: JTF - CRM Foundation , description: MLS View for JTF_TASK_STATUSES_B and JTF_TASK_STATUSES_TL. , implementation_dba_data: APPS.JTF_TASK_STATUSES_VL ,
-
Table: JTF_TASK_STATUSES_VL
12.1.1
product: JTF - CRM Foundation , implementation_dba_data: Not implemented in this database ,
-
Table: JTF_TASK_STATUSES_VL
12.2.2
product: JTF - CRM Foundation , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.CSF_DEBRIEF_HEADERS_V
12.1.1
-
VIEW: APPS.CSF_DEBRIEF_HEADERS_V
12.2.2
-
VIEW: APPS.CSF_DEBRIEF_TASKS_V
12.2.2
-
VIEW: APPS.CSF_DEBRIEF_TASKS_V
12.1.1
-
View: CSF_DEBRIEF_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSF.CSF_DEBRIEF_TASKS_V, object_name:CSF_DEBRIEF_TASKS_V, status:VALID, product: CSF - Field Service , description: Task information collection , implementation_dba_data: APPS.CSF_DEBRIEF_TASKS_V ,
-
VIEW: APPS.CSF_CT_TASK_ASSIGNMENTS
12.1.1
-
VIEW: APPS.CSF_CT_TASK_ASSIGNMENTS
12.2.2
-
View: CSF_DEBRIEF_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSF.CSF_DEBRIEF_HEADERS_V, object_name:CSF_DEBRIEF_HEADERS_V, status:VALID, product: CSF - Field Service , description: Field Service Report Headers summary information , implementation_dba_data: APPS.CSF_DEBRIEF_HEADERS_V ,
-
View: CSF_DEBRIEF_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSF.CSF_DEBRIEF_TASKS_V, object_name:CSF_DEBRIEF_TASKS_V, status:VALID, product: CSF - Field Service , description: Task information collection , implementation_dba_data: APPS.CSF_DEBRIEF_TASKS_V ,
-
View: CSF_DEBRIEF_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSF.CSF_DEBRIEF_HEADERS_V, object_name:CSF_DEBRIEF_HEADERS_V, status:VALID, product: CSF - Field Service , description: Field Service Report Headers summary information , implementation_dba_data: APPS.CSF_DEBRIEF_HEADERS_V ,
-
APPS.OKC_TASK_PVT SQL Statements
12.1.1
-
VIEW: APPS.CSP_PARTS_REQUIREMENTS_V
12.2.2
-
APPS.OKC_TASK_PVT SQL Statements
12.2.2
-
APPS.IEU_TASKS_USERHOOKS SQL Statements
12.1.1
-
APPS.IEU_TASKS_USERHOOKS SQL Statements
12.2.2
-
VIEW: APPS.CSC_TASKS_V
12.2.2
-
VIEW: APPS.AST_TASKREF_V
12.1.1
-
PACKAGE: APPS.CSF_ALERTS_PUB
12.1.1
owner:APPS, object_type:PACKAGE, object_name:CSF_ALERTS_PUB, status:VALID,
-
VIEW: APPS.CSR_RULES_TRANSLATED_V
12.2.2
-
VIEW: APPS.CS_SR_TASKS_V
12.1.1
-
PACKAGE BODY: APPS.JTF_AGENDA_CALCULATIONS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_AGENDA_CALCULATIONS, status:VALID,
-
VIEW: APPS.IEX_TASKS_V
12.2.2
-
VIEW: APPS.IEX_TASKS_V
12.1.1
-
VIEW: APPS.AST_TASKREF_V
12.2.2
-
VIEW: APPS.CS_SR_TASKS_V
12.2.2
-
PACKAGE: APPS.CSF_GANTT_DATA_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:CSF_GANTT_DATA_PKG, status:VALID,
-
PACKAGE BODY: APPS.CSF_MAP_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSF_MAP_PVT, status:VALID,
-
VIEW: APPS.JTF_TASK_UWQ_MYOWN_V
12.2.2
-
PACKAGE BODY: APPS.CSF_ACCESS_HOURS_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSF_ACCESS_HOURS_PUB, status:VALID,
-
VIEW: APPS.JTF_TASK_UWQ_MYOWN_V
12.1.1
-
PACKAGE BODY: APPS.CSF_MAP_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSF_MAP_PVT, status:VALID,
-
PACKAGE: APPS.CSF_ALERTS_PUB
12.2.2
owner:APPS, object_type:PACKAGE, object_name:CSF_ALERTS_PUB, status:VALID,
-
VIEW: APPS.IEX_TASKREF_V
12.1.1
-
VIEW: APPS.IEX_TASKREF_V
12.2.2
-
VIEW: APPS.AST_TASKS_V
12.1.1
-
VIEW: APPS.CSC_TASKS_V
12.1.1
-
VIEW: APPS.AST_TASKS_V
12.2.2
-
PACKAGE BODY: APPS.OZF_TASK_TEMPLATE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_TASK_TEMPLATE_PVT, status:VALID,
-
PACKAGE BODY: APPS.CN_WEBSERVICE_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CN_WEBSERVICE_PUB, status:VALID,
-
PACKAGE BODY: APPS.JTF_AGENDA_CALCULATIONS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_AGENDA_CALCULATIONS, status:VALID,
-
PACKAGE: APPS.CSF_GANTT_DATA_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:CSF_GANTT_DATA_PKG, status:VALID,
-
View: CSR_TASK_ASSIGNMENTS_V
12.1.1
product: CSR - Scheduler , description: View on task assignments , implementation_dba_data: Not implemented in this database ,
-
APPS.OZF_TASK_TEMPLATE_PVT SQL Statements
12.1.1
-
VIEW: APPS.CSD_REPAIR_TASKS_V
12.2.2
-
PACKAGE BODY: APPS.BIV_BIN_ESC_RSC_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIV_BIN_ESC_RSC_PKG, status:VALID,
-
PACKAGE BODY: APPS.CSF_ACCESS_HOURS_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSF_ACCESS_HOURS_PUB, status:VALID,