Search Results rel_attribute15
Overview
APPS.CSI_INST_PARENT_DETAILS_V is a reporting and integration view in Oracle E-Business Suite (12.1.1 and 12.2.2) that exposes parent-to-child relationships between item instances together with the detail attributes of the child instance. It is defined over the CSI relationships model and the CSI item instance master, presenting each relationship row alongside the descriptive, transactional, and lifecycle attributes of the associated child instance. The view is owned by APPS and is consumed by ETRM (Enterprise Track and Return Management) functionality and by customer extensions that need to navigate installed base hierarchies.
The object is particularly relevant to the search term "rel_attribute1". The view does not expose a bare ATTRIBUTE1 column; instead, the attribute columns inherited from CSI_II_RELATIONSHIPS are prefixed with REL_ so that they can coexist with the instance-level columns projected from CSI_ITEM_INSTANCES. REL_ATTRIBUTE1 through REL_ATTRIBUTE15 therefore represent the descriptive-flexfield segments of the relationship record itself, not of the child instance.
Underlying Base Objects
The documented base objects referenced by the view are:
- CSI_II_RELATIONSHIPS (SYNONYM) — the relationship table that stores parent/child links between item instances, including relationship type, position reference, display order, mandatory flag, context, attributes, and the standard WHO columns.
- CSI_ITEM_INSTANCES (SYNONYM) — the item instance master, supplying instance number, item and revision, serial and lot information, location, status, and the many transactional reference columns.
The join correlates the relationship's subject (child) to the instance identifier, so that each row of the view combines one relationship with the child instance it points to. Because the view is defined over synonyms in the APPS schema, it is available to any responsibility or concurrent program that can read the CSI schema objects.
Key Columns
- PARENT_ID, CHILD_ID, RELATIONSHIP_ID — the relationship key: the object (parent) instance, the subject (child) instance, and the relationship row identifier.
- RELATIONSHIP_TYPE_CODE, POSITION_REFERENCE, DISPLAY_ORDER, MANDATORY_FLAG — describe the nature and presentation of the hierarchy link.
- REL_ACTIVE_START_DATE, REL_ACTIVE_END_DATE — the validity window of the relationship itself, distinct from the instance dates.
- REL_CONTEXT, REL_ATTRIBUTE1 ... REL_ATTRIBUTE15 — the descriptive flexfield context and segments of the relationship. REL_ATTRIBUTE1 is the first relationship flexfield segment and is the column sought when users search for "rel_attribute1".
- REL_CREATED_BY, REL_CREATION_DATE, REL_LAST_UPDATED_BY, REL_LAST_UPDATE_DATE, REL_LAST_UPDATE_LOGIN, REL_OBJECT_VERSION_NUMBER — audit and optimistic locking columns for the relationship.
- INSTANCE_NUMBER, EXTERNAL_REFERENCE, INVENTORY_ITEM_ID, INVENTORY_REVISION, SERIAL_NUMBER, LOT_NUMBER, QUANTITY, UNIT_OF_MEASURE — child instance identification and quantity data.
- INSTANCE_STATUS_ID, INSTANCE_CONDITION_ID, ACCOUNTING_CLASS_CODE, INSTANCE_TYPE_CODE — status and classification of the child instance.
- LOCATION_TYPE_CODE, LOCATION_ID, INV_ORGANIZATION_ID, INV_SUBINVENTORY_NAME, INV_LOCATOR_ID — where the child instance currently resides.
- PA_PROJECT_ID, WIP_JOB_ID, PO_ORDER_LINE_ID, LAST_OE_ORDER_LINE_ID, LAST_OE_RMA_LINE_ID and related LAST_* columns — transactional origin and last-known transaction references.
- ACTIVE_START_DATE, ACTIVE_END_DATE, INSTALL_DATE, MANUALLY_CREATED_FLAG — instance lifecycle attributes.
Common Use Cases and Queries
Typical uses include installed-base hierarchy reporting, where a parent instance must be listed with all of its children; service and depot repair lookups, where the relationship flexfield is used to classify the link; and integration extracts that publish parent/child structures to external systems.
To retrieve relationship flexfield values for a known parent:
- SELECT PARENT_ID, CHILD_ID, RELATIONSHIP_TYPE_CODE, REL_CONTEXT, REL_ATTRIBUTE1 FROM APPS.CSI_INST_PARENT_DETAILS_V WHERE PARENT_ID = :p_parent_id AND TRUNC(SYSDATE) BETWEEN REL_ACTIVE_START_DATE AND NVL(REL_ACTIVE_END_DATE, TRUNC(SYSDATE));
To find children of a specific serial-numbered instance:
- SELECT v.PARENT_ID, v.CHILD_ID, v.SERIAL_NUMBER, v.REL_ATTRIBUTE1 FROM APPS.CSI_INST_PARENT_DETAILS_V v WHERE v.INSTANCE_NUMBER = :p_instance_number OR v.PARENT_ID = :p_parent_id;
To report all relationships carrying a specific flexfield value:
- SELECT RELATIONSHIP_ID, PARENT_ID, CHILD_ID, REL_ATTRIBUTE1 FROM APPS.CSI_INST_PARENT_DETAILS_V WHERE REL_ATTRIBUTE1 = :p_value;
Because the view performs a straightforward join across the two CSI base tables, the usual predicates on ACTIVE_START_DATE/ACTIVE_END_DATE and REL_ACTIVE_START_DATE/REL_ACTIVE_END_DATE should be applied to avoid returning expired links.
-
VIEW: APPS.CSI_INST_PARENT_DETAILS_V
12.2.2
-
VIEW: APPS.CSI_INST_PARENT_DETAILS_V
12.1.1
-
View: CSI_INST_CHILD_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INST_CHILD_DETAILS_V, object_name:CSI_INST_CHILD_DETAILS_V, status:VALID, product: CSI - Install Base , description: View to give the children of a Known Instance. , implementation_dba_data: APPS.CSI_INST_CHILD_DETAILS_V ,
-
View: CSI_INST_PARENT_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INST_PARENT_DETAILS_V, object_name:CSI_INST_PARENT_DETAILS_V, status:VALID, product: CSI - Install Base , description: View to give the parent of a Known Instance. , implementation_dba_data: APPS.CSI_INST_PARENT_DETAILS_V ,
-
View: CSI_INST_CHILD_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INST_CHILD_DETAILS_V, object_name:CSI_INST_CHILD_DETAILS_V, status:VALID, product: CSI - Install Base , description: View to give the children of a Known Instance. , implementation_dba_data: APPS.CSI_INST_CHILD_DETAILS_V ,
-
View: CSI_INST_PARENT_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INST_PARENT_DETAILS_V, object_name:CSI_INST_PARENT_DETAILS_V, status:VALID, product: CSI - Install Base , description: View to give the parent of a Known Instance. , implementation_dba_data: APPS.CSI_INST_PARENT_DETAILS_V ,
-
VIEW: APPS.CSI_INST_CHILD_DETAILS_V
12.1.1
-
VIEW: APPS.CSI_INST_CHILD_DETAILS_V
12.2.2
-
VIEW: APPS.CSI_INST_CHILD_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INST_CHILD_DETAILS_V, object_name:CSI_INST_CHILD_DETAILS_V, status:VALID,
-
VIEW: APPS.CSI_INST_CHILD_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INST_CHILD_DETAILS_V, object_name:CSI_INST_CHILD_DETAILS_V, status:VALID,
-
VIEW: APPS.CSI_INST_PARENT_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INST_PARENT_DETAILS_V, object_name:CSI_INST_PARENT_DETAILS_V, status:VALID,
-
VIEW: APPS.CSI_INST_PARENT_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_INST_PARENT_DETAILS_V, object_name:CSI_INST_PARENT_DETAILS_V, status:VALID,
-
View: CSC_HZ_PARTIES_REL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_REL_V, object_name:CSC_HZ_PARTIES_REL_V, status:VALID, product: CSC - Customer Care , description: Gives Customer Party, Contact Party and Relationship Party information , implementation_dba_data: APPS.CSC_HZ_PARTIES_REL_V ,
-
View: CSC_HZ_PARTIES_REL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_REL_V, object_name:CSC_HZ_PARTIES_REL_V, status:VALID, product: CSC - Customer Care , description: Gives Customer Party, Contact Party and Relationship Party information , implementation_dba_data: APPS.CSC_HZ_PARTIES_REL_V ,
-
View: CSC_HZ_PARTIES_SRCH_REL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_SRCH_REL_V, object_name:CSC_HZ_PARTIES_SRCH_REL_V, status:VALID, product: CSC - Customer Care , description: This view has been specifically designed for Contact Center Search window. Gives Customer Party, Contact Party and Relationship Party information. , implementation_dba_data: APPS.CSC_HZ_PARTIES_SRCH_REL_V ,
-
View: CSC_HZ_PARTIES_SRCH_REL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_SRCH_REL_V, object_name:CSC_HZ_PARTIES_SRCH_REL_V, status:VALID, product: CSC - Customer Care , description: This view has been specifically designed for Contact Center Search window. Gives Customer Party, Contact Party and Relationship Party information. , implementation_dba_data: APPS.CSC_HZ_PARTIES_SRCH_REL_V ,
-
View: CSC_HZ_PARTIES_CONT_PTS_REL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_CONT_PTS_REL_V, object_name:CSC_HZ_PARTIES_CONT_PTS_REL_V, status:VALID, product: CSC - Customer Care , description: This view has been specifically designed for Contact Center Search window. Gives Customer Party, Contact Party and Relationship Party information. , implementation_dba_data: APPS.CSC_HZ_PARTIES_CONT_PTS_REL_V ,
-
View: CSC_HZ_PARTIES_CONT_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_CONT_INFO_V, object_name:CSC_HZ_PARTIES_CONT_INFO_V, status:VALID, product: CSC - Customer Care , description: Contact Information for a customer , implementation_dba_data: APPS.CSC_HZ_PARTIES_CONT_INFO_V ,
-
View: CSC_HZ_PARTIES_CONT_PTS_REL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_CONT_PTS_REL_V, object_name:CSC_HZ_PARTIES_CONT_PTS_REL_V, status:VALID, product: CSC - Customer Care , description: This view has been specifically designed for Contact Center Search window. Gives Customer Party, Contact Party and Relationship Party information. , implementation_dba_data: APPS.CSC_HZ_PARTIES_CONT_PTS_REL_V ,
-
View: CSC_HZ_PARTIES_CONT_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_CONT_INFO_V, object_name:CSC_HZ_PARTIES_CONT_INFO_V, status:VALID, product: CSC - Customer Care , description: Contact Information for a customer , implementation_dba_data: APPS.CSC_HZ_PARTIES_CONT_INFO_V ,
-
VIEW: APPS.CSC_HZ_PARTIES_REL_V
12.1.1
-
VIEW: APPS.CSC_ALL_HZ_PARTIES_CONT_INFO_V
12.2.2
owner:APPS, object_type:VIEW, object_name:CSC_ALL_HZ_PARTIES_CONT_INFO_V, status:VALID,
-
VIEW: APPS.CSC_ALL_HZ_PARTIES_CONT_INFO_V
12.1.1
owner:APPS, object_type:VIEW, object_name:CSC_ALL_HZ_PARTIES_CONT_INFO_V, status:VALID,
-
VIEW: APPS.CSC_ALL_HZ_PARTIES_REL_V
12.1.1
-
VIEW: APPS.CSC_HZ_PARTIES_CONT_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_CONT_INFO_V, object_name:CSC_HZ_PARTIES_CONT_INFO_V, status:VALID,
-
VIEW: APPS.CSC_HZ_PARTIES_REL_V
12.2.2
-
VIEW: APPS.CSC_HZ_PARTIES_CONT_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_CONT_INFO_V, object_name:CSC_HZ_PARTIES_CONT_INFO_V, status:VALID,
-
VIEW: APPS.CSC_ALL_HZ_PARTIES_REL_V
12.2.2
-
VIEW: APPS.CSC_ALL_HZ_PARTIES_REL_V
12.1.1
owner:APPS, object_type:VIEW, object_name:CSC_ALL_HZ_PARTIES_REL_V, status:VALID,
-
VIEW: APPS.CSC_HZ_PARTIES_CONT_PTS_REL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_CONT_PTS_REL_V, object_name:CSC_HZ_PARTIES_CONT_PTS_REL_V, status:VALID,
-
VIEW: APPS.CSC_HZ_PARTIES_REL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_REL_V, object_name:CSC_HZ_PARTIES_REL_V, status:VALID,
-
VIEW: APPS.CSC_HZ_PARTIES_CONT_PTS_REL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_CONT_PTS_REL_V, object_name:CSC_HZ_PARTIES_CONT_PTS_REL_V, status:VALID,
-
VIEW: APPS.CSC_HZ_PARTIES_CONT_PTS_REL_V
12.2.2
-
VIEW: APPS.CSC_HZ_PARTIES_REL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_PARTIES_REL_V, object_name:CSC_HZ_PARTIES_REL_V, status:VALID,
-
VIEW: APPS.CSC_ALL_HZ_PARTIES_REL_V
12.2.2
owner:APPS, object_type:VIEW, object_name:CSC_ALL_HZ_PARTIES_REL_V, status:VALID,
-
VIEW: APPS.CSC_HZ_PARTIES_CONT_PTS_REL_V
12.1.1
-
eTRM - CSC Tables and Views
12.1.1
description: Translation table to Store Drilldown details for a profile variable. This stores the column and table names for the drilldown form. Also stores the object_code, which provides the form_function to drilldown ,
-
eTRM - CSC Tables and Views
12.2.2
description: Translation table to Store Drilldown details for a profile variable. This stores the column and table names for the drilldown form. Also stores the object_code, which provides the form_function to drilldown ,
-
eTRM - CSI Tables and Views
12.1.1
description: Temporary table that holds the unprocessed XNP messages during data correction process. ,
-
eTRM - CSI Tables and Views
12.2.2
description: Temporary table that holds the unprocessed XNP messages during data correction process. ,