Search Results resi_cat_object_id
Overview
The OKL_FE_RESI_CAT_OBJECTS table is a core data structure within the Oracle E-Business Suite (EBS) Financial Services (OKL) module, specifically for lease and asset management. It functions as a detail table, storing the individual line items that constitute a residual category set. A residual category set is a configuration used to define the expected residual value of leased assets by associating specific inventory items or item categories. This table is critical for the accurate calculation and management of end-of-lease residual values, a fundamental aspect of lease accounting and profitability analysis in EBS 12.1.1 and 12.2.2.
Key Information Stored
The table's primary purpose is to link a residual category set to specific inventory items or item categories. Its key columns include:
- RESI_CAT_OBJECT_ID: The primary key and unique identifier for each line in the table.
- RESI_CATEGORY_SET_ID: A foreign key linking the line to its parent residual category set header, stored in the OKL_FE_RESI_CAT_ALL_B table.
- INVENTORY_ITEM_ID and ORGANIZATION_ID: Foreign keys to the MTL_SYSTEM_ITEMS_B table, identifying a specific item in inventory when the set is defined at the item level.
- CATEGORY_ID and CATEGORY_SET_ID: Foreign keys to the MTL_ITEM_CATEGORIES table, identifying an item category when the set is defined at the category level.
- OBJECT_VERSION_NUMBER: Standard EBS column for tracking row versioning and enabling optimistic locking.
- Standard WHO columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) for audit trails.
Common Use Cases and Queries
This table is primarily accessed for setup validation, reporting on residual value configurations, and data integrity checks. A common use case is to retrieve all items or categories assigned to a specific residual category set for review or troubleshooting. The following query pattern is fundamental:
SELECT rc.resi_cat_object_id,
rc.inventory_item_id,
rc.organization_id,
rc.category_id,
rc.category_set_id,
msi.concatenated_segments item_code
FROM okl_fe_resi_cat_objects rc,
mtl_system_items_kfv msi
WHERE rc.resi_category_set_id = :p_set_id
AND rc.inventory_item_id = msi.inventory_item_id(+)
AND rc.organization_id = msi.organization_id(+);
Another critical scenario involves identifying which residual category set a particular inventory item belongs to, which is essential for lease pricing and residual value calculations during contract creation.
Related Objects
The OKL_FE_RESI_CAT_OBJECTS table maintains defined foreign key relationships with several key EBS inventory and setup tables:
- OKL_FE_RESI_CAT_ALL_B: The parent header table. Joined via
OKL_FE_RESI_CAT_OBJECTS.RESI_CATEGORY_SET_ID = OKL_FE_RESI_CAT_ALL_B.RESI_CATEGORY_SET_ID. - MTL_SYSTEM_ITEMS_B: The master inventory items table. Joined via the composite key
OKL_FE_RESI_CAT_OBJECTS.INVENTORY_ITEM_ID = MTL_SYSTEM_ITEMS_B.INVENTORY_ITEM_IDandOKL_FE_RESI_CAT_OBJECTS.ORGANIZATION_ID = MTL_SYSTEM_ITEMS_B.ORGANIZATION_ID. - MTL_ITEM_CATEGORIES: The inventory item categories table. Joined via the composite key
OKL_FE_RESI_CAT_OBJECTS.CATEGORY_ID = MTL_ITEM_CATEGORIES.CATEGORY_IDandOKL_FE_RESI_CAT_OBJECTS.CATEGORY_SET_ID = MTL_ITEM_CATEGORIES.CATEGORY_SET_ID.
-
TABLE: OKL.OKL_FE_RESI_CAT_OBJECTS
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_FE_RESI_CAT_OBJECTS, object_name:OKL_FE_RESI_CAT_OBJECTS, status:VALID,
-
VIEW: OKL.OKL_FE_RESI_CAT_OBJECTS#
12.2.2
-
APPS.OKL_RES_PVT dependencies on OKL_FE_RESI_CAT_OBJECTS
12.1.1
-
APPS.OKL_RES_PVT dependencies on OKL_FE_RESI_CAT_OBJECTS
12.2.2
-
APPS.OKL_RES_PVT SQL Statements
12.2.2
-
TABLE: OKL.OKL_FE_RESI_CAT_OBJECTS
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_FE_RESI_CAT_OBJECTS, object_name:OKL_FE_RESI_CAT_OBJECTS, status:VALID,
-
APPS.OKL_RES_PVT SQL Statements
12.1.1
-
VIEW: OKL.OKL_FE_RESI_CAT_OBJECTS#
12.2.2
owner:OKL, object_type:VIEW, object_name:OKL_FE_RESI_CAT_OBJECTS#, status:VALID,
-
APPS.OKL_RES_PVT dependencies on OKL_FE_RESI_CAT_OBJECTS
12.2.2
-
Table: OKL_FE_RESI_CAT_OBJECTS
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_FE_RESI_CAT_OBJECTS, object_name:OKL_FE_RESI_CAT_OBJECTS, status:VALID, product: OKL - Leasing and Finance Management , description: Residual Category Set Objects , implementation_dba_data: OKL.OKL_FE_RESI_CAT_OBJECTS ,
-
Table: OKL_FE_RESI_CAT_OBJECTS
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_FE_RESI_CAT_OBJECTS, object_name:OKL_FE_RESI_CAT_OBJECTS, status:VALID, product: OKL - Lease and Finance Management , description: Residual Category Set Objects , implementation_dba_data: OKL.OKL_FE_RESI_CAT_OBJECTS ,
-
APPS.OKL_RES_PVT dependencies on OKL_FE_RESI_CAT_OBJECTS
12.1.1
-
PACKAGE BODY: APPS.OKL_RES_PVT
12.2.2
-
PACKAGE BODY: APPS.OKL_RES_PVT
12.1.1
-
PACKAGE: APPS.OKL_RES_PVT
12.2.2
-
APPS.OKL_RES_PVT dependencies on OKC_API
12.2.2
-
PACKAGE: APPS.OKL_RES_PVT
12.1.1
-
APPS.OKL_RES_PVT dependencies on OKC_API
12.1.1
-
APPS.OKL_RES_PVT dependencies on OKL_API
12.1.1
-
APPS.OKL_RES_PVT dependencies on OKL_API
12.2.2
-
APPS.OKL_RESI_CAT_SETS_PVT dependencies on OKL_API
12.1.1
-
APPS.OKL_RESI_CAT_SETS_PVT dependencies on OKL_API
12.2.2
-
PACKAGE BODY: APPS.OKL_RES_PVT_W
12.2.2
-
PACKAGE BODY: APPS.OKL_RES_PVT_W
12.1.1
-
PACKAGE BODY: APPS.OKL_RESI_CAT_SETS_PVT
12.1.1
-
PACKAGE BODY: APPS.OKL_RESI_CAT_SETS_PVT
12.2.2
-
eTRM - OKL Tables and Views
12.2.2
description: Translatable columns from OKL_XTL_SELL_INVS_B, per MLS standards ,
-
eTRM - OKL Tables and Views
12.1.1
description: Translatable columns from OKL_XTL_SELL_INVS_B, per MLS standards ,
-
eTRM - OKL Tables and Views
12.2.2
description: Translatable columns from OKL_XTL_SELL_INVS_B, per MLS standards ,
-
eTRM - OKL Tables and Views
12.1.1
description: Translatable columns from OKL_XTL_SELL_INVS_B, per MLS standards ,