Search Results csf_r_plan_options
Overview
CSF_R_PLAN_OPTIONS is a Field Service (CSF) module table in Oracle E-Business Suite 12.1.1 and 12.2.2 that stores the planning options generated against a resource result. In the Scheduling and Assignment workflow, the resource planning engine evaluates resources against service demands and produces one or more candidate plan options per resource; this table persists those candidates along with their scheduling windows, associated spare parts options, and costs. Its role is therefore that of a transactional work table within the Field Service resource optimization stack, feeding downstream task generation and cost evaluation.
From a modeling perspective, the mined foreign key structure suggests a satellite-leaning classification. The table carries descriptive and temporal attributes — scheduled start and end dates, shift windows, cost — attached to parent entities such as the resource result and the spares option. It is neither a pure hub (its identity is surrogate and internal) nor a strong link, but it does behave as a dependent child in an integration-style pattern, hanging off CSF_R_RESOURCE_RESULTS and CSF_R_SPARES_OPTIONS.
Key Information Stored
The primary key is the surrogate column PLAN_OPTION_ID, enforced by the CSF_R_PLAN_OPTIONS_PK constraint and mirrored in the unique index CSF_R_PLAN_OPTIONS_U1, making it the documented business-key candidate. The most significant columns include:
- PLAN_OPTION_ID — surrogate identifier for each plan option row.
- RESOURCE_RESULT_ID — foreign key to CSF_R_RESOURCE_RESULTS, tying the option to a specific resource's planning result.
- SPARES_OPTION_ID — foreign key to CSF_R_SPARES_OPTIONS, linking the plan to a specific spare-part availability configuration.
- SECURITY_GROUP_ID — foreign key to FND_SECURITY_GROUPS, used for multi-org and data security enforcement.
- SCHEDULED_START_DATE and SCHEDULED_END_DATE — the proposed scheduling interval for the option.
- SHIFT_START_DATE and SHIFT_END_DATE — the working-shift boundaries applicable when the option was generated.
- SHIFT_TYPE — classification of the shift (for example, regular, overtime, or exception).
- COST — the projected cost of executing this plan option.
- WIN_TO_PROMIS_ID — identifier relating the option to a win-to-promise obligation.
- OBJECT_VERSION_NUMBER — optimistic locking column standard to Oracle EBS 12.2.2 and above.
Common Use Cases and Queries
Typical uses include reviewing planning candidates for a resource, comparing option costs before dispatching a task, and auditing shift/date windows. A representative query joins the table to its parent resource result:
- Retrieve options for a resource result:
SELECT plan_option_id, scheduled_start_date, scheduled_end_date, cost FROM csf_r_plan_options WHERE resource_result_id = :p_result_id; - Lowest-cost candidate:
SELECT plan_option_id, cost FROM csf_r_plan_options WHERE resource_result_id = :p_id ORDER BY cost ASC; - Options constrained within a shift:
SELECT plan_option_id FROM csf_r_plan_options WHERE shift_type = :p_shift AND scheduled_start_date >= :p_from;
Reporting typically feeds scheduling dashboards, SLA cost analysis, and security-group-scoped extracts; always include SECURITY_GROUP_ID filtering where multi-org or secured views apply.
Related Objects
- CSF_R_RESOURCE_RESULTS — parent of the RESOURCE_RESULT_ID foreign key.
- CSF_R_SPARES_OPTIONS — parent of the SPARES_OPTION_ID foreign key.
- FND_SECURITY_GROUPS — parent of SECURITY_GROUP_ID for data security.
- CSF_R_PLAN_OPTION_TASKS — child table whose PLAN_OPTION_ID references this table, holding generated tasks.
- CSF_R_PLAN_OPTION_TASKS.PLAN_OPTION_ID — join column linking tasks back to each option.
Together these relationships define CSF_R_PLAN_OPTIONS as the central planning record bridging resource results, spares options, and generated tasks.
-
Table: CSF_R_PLAN_OPTIONS
12.2.2
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_R_PLAN_OPTIONS, object_name:CSF_R_PLAN_OPTIONS, status:VALID, product: CSF - Field Service , description: This table is for storing the planoptions , implementation_dba_data: CSF.CSF_R_PLAN_OPTIONS ,
-
Table: CSF_R_PLAN_OPTIONS
12.1.1
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_R_PLAN_OPTIONS, object_name:CSF_R_PLAN_OPTIONS, status:VALID, product: CSF - Field Service , description: This table is for storing the planoptions , implementation_dba_data: CSF.CSF_R_PLAN_OPTIONS ,
-
VIEW: CSF.CSF_R_PLAN_OPTIONS#
12.2.2
owner:CSF, object_type:VIEW, object_name:CSF_R_PLAN_OPTIONS#, status:VALID,
-
SYNONYM: APPS.CSF_R_PLAN_OPTIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CSF_R_PLAN_OPTIONS, status:VALID,
-
SYNONYM: APPS.CSF_R_PLAN_OPTIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CSF_R_PLAN_OPTIONS, status:VALID,
-
VIEW: APPS.CSR_WTP_DISPLAY_V
12.2.2
-
VIEW: CSF.CSF_R_PLAN_OPTIONS#
12.2.2
-
TABLE: CSF.CSF_R_PLAN_OPTIONS
12.2.2
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_R_PLAN_OPTIONS, object_name:CSF_R_PLAN_OPTIONS, status:VALID,
-
TABLE: CSF.CSF_R_PLAN_OPTIONS
12.1.1
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_R_PLAN_OPTIONS, object_name:CSF_R_PLAN_OPTIONS, status:VALID,
-
VIEW: APPS.CSR_WTP_DISPLAY_V
12.1.1
-
VIEW: APPS.CSF_PLAN_OPTIONS_V
12.1.1
-
VIEW: APPS.CSR_WTP_DISPLAY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSR.CSR_WTP_DISPLAY_V, object_name:CSR_WTP_DISPLAY_V, status:VALID,
-
Table: CSF_R_PLAN_OPTION_TASKS
12.2.2
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_R_PLAN_OPTION_TASKS, object_name:CSF_R_PLAN_OPTION_TASKS, status:VALID, product: CSF - Field Service , description: This is a table to store the trips for which the planoptions apply , implementation_dba_data: CSF.CSF_R_PLAN_OPTION_TASKS ,
-
Table: CSF_R_RESOURCE_RESULTS
12.1.1
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_R_RESOURCE_RESULTS, object_name:CSF_R_RESOURCE_RESULTS, status:VALID, product: CSF - Field Service , description: Table containing the result of the 'resoure filters' (Prefferred, Territory, Geography, Skills) , implementation_dba_data: CSF.CSF_R_RESOURCE_RESULTS ,
-
Table: CSF_R_RESOURCE_RESULTS
12.2.2
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_R_RESOURCE_RESULTS, object_name:CSF_R_RESOURCE_RESULTS, status:VALID, product: CSF - Field Service , description: Table containing the result of the 'resoure filters' (Prefferred, Territory, Geography, Skills) , implementation_dba_data: CSF.CSF_R_RESOURCE_RESULTS ,
-
VIEW: APPS.CSR_WTP_DISPLAY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSR.CSR_WTP_DISPLAY_V, object_name:CSR_WTP_DISPLAY_V, status:VALID,
-
Table: CSF_R_PLAN_OPTION_TASKS
12.1.1
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_R_PLAN_OPTION_TASKS, object_name:CSF_R_PLAN_OPTION_TASKS, status:VALID, product: CSF - Field Service , description: This is a table to store the trips for which the planoptions apply , implementation_dba_data: CSF.CSF_R_PLAN_OPTION_TASKS ,
-
VIEW: APPS.CSF_PLAN_OPTIONS_V
12.2.2
-
View: CSR_WTP_DISPLAY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSR.CSR_WTP_DISPLAY_V, object_name:CSR_WTP_DISPLAY_V, status:VALID, product: CSR - Scheduler , implementation_dba_data: APPS.CSR_WTP_DISPLAY_V ,
-
View: CSR_WTP_DISPLAY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSR.CSR_WTP_DISPLAY_V, object_name:CSR_WTP_DISPLAY_V, status:VALID, product: CSR - Scheduler , implementation_dba_data: APPS.CSR_WTP_DISPLAY_V ,
-
PACKAGE BODY: APPS.CSF_REQUESTS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSF_REQUESTS_PVT, status:VALID,
-
PACKAGE BODY: APPS.CSF_REQUESTS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSF_REQUESTS_PVT, status:VALID,
-
PACKAGE BODY: APPS.CSF_MAINTAIN_GRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSF_MAINTAIN_GRP, status:VALID,
-
APPS.CSF_REQUESTS_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CSF_MAINTAIN_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSF_MAINTAIN_GRP, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.CSF_GANTT_DATA_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSF_GANTT_DATA_PKG, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
View: CSF_PLAN_OPTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSF.CSF_PLAN_OPTIONS_V, object_name:CSF_PLAN_OPTIONS_V, status:VALID, product: CSF - Field Service , description: This view is used to display plan options in the Scheduler UI. , implementation_dba_data: APPS.CSF_PLAN_OPTIONS_V ,
-
View: CSF_PLAN_OPTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSF.CSF_PLAN_OPTIONS_V, object_name:CSF_PLAN_OPTIONS_V, status:VALID, product: CSF - Field Service , description: This view is used to display plan options in the Scheduler UI. , implementation_dba_data: APPS.CSF_PLAN_OPTIONS_V ,
-
PACKAGE BODY: APPS.CSF_GANTT_DATA_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSF_GANTT_DATA_PKG, status:VALID,
-
APPS.CSF_REQUESTS_PVT SQL Statements
12.2.2
-
VIEW: APPS.CSF_PLAN_OPTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSF.CSF_PLAN_OPTIONS_V, object_name:CSF_PLAN_OPTIONS_V, status:VALID,
-
VIEW: APPS.CSF_PLAN_OPTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSF.CSF_PLAN_OPTIONS_V, object_name:CSF_PLAN_OPTIONS_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
TABLE: CSF.CSF_R_PLAN_OPTION_TASKS
12.1.1
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_R_PLAN_OPTION_TASKS, object_name:CSF_R_PLAN_OPTION_TASKS, status:VALID,
-
APPS.CSF_GANTT_DATA_PKG SQL Statements
12.1.1
-
TABLE: CSF.CSF_R_PLAN_OPTION_TASKS
12.2.2
owner:CSF, object_type:TABLE, fnd_design_data:CSF.CSF_R_PLAN_OPTION_TASKS, object_name:CSF_R_PLAN_OPTION_TASKS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.CSF_GANTT_DATA_PKG SQL Statements
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - CSR Tables and Views
12.1.1
description: The translated table for window to promise parameters ,
-
eTRM - CSR Tables and Views
12.2.2
description: The translated table for window to promise parameters ,
-
APPS.CSF_MAINTAIN_GRP SQL Statements
12.1.1
-
APPS.CSF_MAINTAIN_GRP SQL Statements
12.2.2