Search Results cac_sr_object_capacity_u1




Overview

JTF.CAC_SR_OBJECT_CAPACITY is a valid base table in the Oracle E-Business Suite Release 12.1.1 and 12.2.2 environments, owned by the JTF schema. Functional design data is registered under JTF.CAC_SR_OBJECT_CAPACITY. The table stores availability summary information for schedulable objects, expressed as a composite of schedules, exceptions, and tasks. In effect, it captures the computed or derived capacity — the total working hours available for a resource, group, or other schedulable entity — across a defined start and end date-time window, factoring in hours before and after the window that remain relevant to the calculation.

Within the E-Business Suite service and resource scheduling model, this table functions as a persisted availability snapshot. Each row represents one capacity record for one object over one time interval. Because the table is referenced by assignment and plan-option entities, it acts as a supply-side ledger against which demand (task assignments and plan tasks) is matched. The metadata's heuristic Data Vault classification is standalone. In Data Vault modeling terms, this suggests the table can be treated as a self-contained record rather than a link table, though in practice it behaves as a satellite-like capacity fact table keyed to a schedule detail parent.

Key Information Stored

Common Use Cases and Queries

The table is queried to answer capacity and utilization questions: how many hours a resource is available in a period, how capacity is distributed across object types, and how fully capacity is consumed by assignments. A typical lookup resolves a resource's usable capacity over a range:

  • Filter by OBJECT_TYPE and OBJECT_ID, then constrain START_DATE_TIME and END_DATE_TIME to the reporting period.
  • Aggregate AVAILABLE_HOURS by OBJECT_TYPE to summarize capacity by entity category.
  • Join to JTF_TASK_ASSIGNMENTS on OBJECT_CAPACITY_ID to compare available versus consumed capacity in utilization reporting.
  • Analyze AVAILABILITY_TYPE and SOURCE_TYPE to distinguish scheduled capacity from exception-driven adjustments.

Related Objects

  • JTF.CAC_SR_SCHDL_DETAILS — Parent schedule detail; joined on SCHEDULE_DETAIL_ID.
  • JTF.JTF_TASK_ASSIGNMENTS — References this table via OBJECT_CAPACITY_ID; used for task-to-capacity matching.
  • JTF.CSF_R_PLAN_OPTION_TASKS — References this table via OBJECT_CAPACITY_ID; links planned option tasks to capacity.
  • Index CAC_SR_OBJECT_CAPACITY_U2 — The unique business-key index on (OBJECT_ID, START_DATE_TIME, OBJECT_TYPE), commonly the access path for point lookups and range scans.
  • Standard FND foreign keys to FND_USER.USER_ID (WHO columns) and FND_LOGINS.LOGIN_ID (LAST_UPDATE_LOGIN).