Search Results quantity_rcvd
Overview
CSF_DEBRIEF_TASKS_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, delivered with the CSF (Field Service) product family. It presents task information collected during the field service debrief process, joining debrief header data to the tasks, task assignments, resources, parties, service contracts, and customer product records associated with a service call. The view exposes a denormalized, read-only projection that consolidates JTF task management attributes, debrief attributes, incident and inventory item context, and Oracle Service (OKS) entitlement details into a single queryable structure. Its primary role is to support operational reporting, inquiry forms, and integration extracts that need to reconcile tasks recorded in a debrief against the originating service request and installed base. Because it is a view rather than a table, no direct DML is performed against it; consumers read from it. The user's search term on_hold_flag corresponds to a status indicator column sourced from JTF_TASK_STATUSES_VL through the task assignment status join, allowing reporting on tasks that are currently held during the debrief lifecycle.
Underlying Base Objects
The documented base objects span several schemas accessed through APPS synonyms and views. The debrief header is sourced from CSF_DEBRIEF_HEADERS (CDH), which supplies ROWID, DEBRIEF_NUMBER, DEBRIEF_HEADER_ID, DEBRIEF_DATE, PROCESSED_FLAG, descriptive flexfield ATTRIBUTE columns, and audit columns. Task data comes from JTF_TASKS_VL (JTV) for task number, name, status, scheduled dates, planned effort, source object, and address, with JTF_TASK_TYPES_VL (JTTV) supplying the task type, and JTF_TASK_PRIORITIES_VL (JTP) supplying importance level and priority name. Assignment records are drawn from JTF_TASK_ASSIGNMENTS (JTA), joined to JTF_OBJECTS_VL (JO) for the resource type name. JTF_TASK_STATUSES_VL (JTS1 and JTS2) provides task status and assignment status names and their derived flags, including CLOSED_FLAG, COMPLETED_FLAG, CANCELLED_FLAG, ON_HOLD_FLAG, and REJECTED_FLAG. Party context is provided by JTF_PARTIES_ALL_V (JPA) and HZ_PARTY_SITES (HPS) via HZ_FORMAT_PUB. Incident context comes from CS_INCIDENTS_ALL (CIA), with CS_STD and CSD_REPAIRS supporting service request and repair linkage. Installed base data comes from CSI_ITEM_INSTANCES (CII) and MTL_SYSTEM_ITEMS_B_KFV (MSB). Entitlement data is drawn from OKS_ENT_LINE_DETAILS_V (OELDV). The CSF_UTIL_PVT package resolves resource and owner object names, and CSF_UTIL_PVT.GET_OBJECT_NAME is invoked directly in the view definition.
Key Columns
- DEBRIEF_HEADER_ID, DEBRIEF_NUMBER, DEBRIEF_DATE — Debrief identity and date.
- TASK_ID, TASK_NUMBER, TASK_NAME — Task identification and description.
- TASK_STATUS, TASK_STATUS_ID, TASK_ASSIGNMENT_STATUS — Current lifecycle state of the task and its assignment.
- ON_HOLD_FLAG — Derived flag from JTF_TASK_STATUSES_VL indicating the assignment is on hold; this is the column most relevant to the user's search, and it is commonly filtered on to isolate suspended work.
- CLOSED_FLAG, COMPLETED_FLAG, CANCELLED_FLAG, REJECTED_FLAG — Companion status flags for terminal states.
- RESOURCE_ID, RESOURCE_TYPE_CODE, RESOURCE_TYPE_NAME — Assigned resource identity and type.
- OWNER_ID, OWNER_TYPE_CODE — Task ownership reference.
- PARTY_ID, PARTY_NAME, PARTY_NUMBER — Customer party associated with the debrief.
- INCIDENT_ID, ACCOUNT_ID, CUSTOMER_PRODUCT_ID — Service request and installed base linkage.
- INVENTORY_ITEM_ID, CONCATENATED_SEGMENTS — Product identification for the serviced item.
- CURRENT_SERIAL_NUMBER, EXTERNAL_REFERENCE — Serial and reference from the item instance, falling back to the incident.
- CONTRACT_NUMBER, SERVICE_NAME, WARRANTY_FLAG, STATUS_CODE, SERVICE_START_DATE, SERVICE_END_DATE — Entitlement and contract coverage details.
- SCHEDULED_START_DATE, SCHEDULED_END_DATE, PLANNED_EFFORT, PLANNED_EFFORT_UOM — Scheduling and effort planning data.
- PROCESSED_FLAG — Indicates whether the debrief header has been processed.
- ATTRIBUTE1–ATTRIBUTE15, ATTRIBUTE_CATEGORY — Descriptive flexfield values from the debrief header.
Common Use Cases and Queries
Field service organizations query this view to audit debriefed tasks, verify status disposition, and reconcile entitlement coverage. A frequent pattern filters on the on-hold flag to identify assignments delayed mid-debrief.
SELECT DEBRIEF_NUMBER,
TASK_NUMBER,
TASK_NAME,
TASK_STATUS,
TASK_ASSIGNMENT_STATUS,
ON_HOLD_FLAG,
PARTY_NAME,
CONTRACT_NUMBER
FROM CSF_DEBRIEF_TASKS_V
WHERE ON_HOLD_FLAG = 'Y'
AND DEBRIEF_DATE >= TRUNC(SYSDATE) - 30;
Another common inquiry joins entitlement context to assess warranty exposure on completed tasks:
SELECT TASK_NUMBER,
TASK_NAME,
TASK_ASSIGNMENT_STATUS,
WARRANTY_FLAG,
SERVICE_END_DATE,
CONCATENATED_SEGMENTS
FROM CSF_DEBRIEF_TASKS_V
WHERE COMPLETED_FLAG = 'Y'
AND WARRANTY_FLAG = 'Y'
ORDER BY SERVICE_END_DATE;
Because the view already resolves resource type and owner names through CSF_UTIL_PVT, reports avoid additional lookups against JTF_OBJECTS_VL. Processed debriefs are isolated with PROCESSED_FLAG = 'Y' for downstream integration extracts.
-
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: 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 ,