Search Results op_cust_con
Overview
The OP_CUST_CON table is a core data object within the Oracle E-Business Suite (EBS) Process Manufacturing Logistics (GML) module. It serves as the central repository for storing detailed contact information associated with customers. Its primary role is to maintain a master list of customer contacts, enabling the linkage of specific individuals to business transactions such as sales orders and price lists. This table is fundamental for ensuring accurate communication and relationship management within the supply chain and order fulfillment processes of Process Manufacturing.
Key Information Stored
The table's structure is centered around uniquely identifying a contact and associating them with a specific customer and address. Based on the provided metadata, the key columns include:
- CONTACT_ID: The unique primary identifier for each contact record, enforced by the OP_CUST_CON_PK constraint.
- CONTACT_NAME: The name of the individual contact.
- CUST_ID: A foreign key linking the contact to a specific customer master record in the OP_CUST_MST table.
- ADDR_ID: A foreign key linking the contact to a specific address record in the SY_ADDR_MST table.
The combination of CONTACT_NAME and CUST_ID is also enforced as a unique key (OP_CUST_CON_U1), preventing duplicate contact entries for the same customer.
Common Use Cases and Queries
This table is primarily accessed to retrieve contact details for transactional documents and reporting. A common use case is populating the "Ship To" or "Bill To" contact on sales orders and price lists. Typical queries involve joining with related master tables to create meaningful contact lists or to validate data during transaction entry.
Sample Query: Retrieve all contacts for a specific customer:
SELECT cont.contact_name, addr.address_line1
FROM gml.op_cust_con cont,
gml.sy_addr_mst addr
WHERE cont.cust_id = :p_customer_id
AND cont.addr_id = addr.addr_id(+)
ORDER BY cont.contact_name;
Sample Query: Identify contacts referenced in open sales orders:
SELECT oh.order_number, cont.contact_name
FROM gml.op_ordr_hdr oh,
gml.op_cust_con cont
WHERE oh.contact_id = cont.contact_id
AND oh.order_status = 'OPEN';
Related Objects
The OP_CUST_CON table has significant integration points, as evidenced by its foreign key relationships. It is a parent table to several key transactional entities:
- Parent Tables: OP_CUST_MST (customer master) and SY_ADDR_MST (address master).
- Child Tables: The CONTACT_ID column is referenced as a foreign key in major transactional tables, including OP_ORDR_HDR (Sales Order Headers), OP_ORDR_DTL (Sales Order Lines), OP_PRSL_HDR (Price List Headers), and OP_PRSL_DTL (Price List Lines). This design ensures contact integrity across the order-to-cash cycle.
Direct queries or data fixes on OP_CUST_CON must consider these dependencies to maintain referential integrity within the GML module.
-
Table: OP_CUST_CON
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_CUST_CON, object_name:OP_CUST_CON, status:VALID, product: GML - Process Manufacturing Logistics , description: Customer contact information. , implementation_dba_data: GML.OP_CUST_CON ,
-
Table: OP_CUST_CON
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_CUST_CON, object_name:OP_CUST_CON, status:VALID, product: GML - Process Manufacturing Logistics , description: Customer contact information. , implementation_dba_data: GML.OP_CUST_CON ,
-
APPS.GML_UPDATE_CUST_DATA_PVT dependencies on OP_CUST_CON
12.2.2
-
APPS.GML_UPDATE_CUST_DATA_PVT dependencies on OP_CUST_CON
12.1.1
-
VIEW: APPS.OP_CUST_CON_DFV
12.2.2
-
VIEW: APPS.OP_CUST_CON_DFV
12.1.1
-
SYNONYM: APPS.OP_CUST_CON
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OP_CUST_CON, status:VALID,
-
SYNONYM: APPS.OP_CUST_CON
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OP_CUST_CON, status:VALID,
-
VIEW: GML.OP_CUST_CON#
12.2.2
owner:GML, object_type:VIEW, object_name:OP_CUST_CON#, status:VALID,
-
APPS.GML_UPDATE_CUST_DATA_PVT dependencies on OP_CUST_ITM
12.2.2
-
APPS.GML_UPDATE_CUST_DATA_PVT dependencies on OP_CHRG_ITM
12.2.2
-
VIEW: GML.OP_CUST_CON#
12.2.2
-
APPS.GML_UPDATE_CUST_DATA_PVT dependencies on OP_CUST_ITM
12.1.1
-
APPS.GML_UPDATE_CUST_DATA_PVT dependencies on OP_CHRG_ITM
12.1.1
-
PACKAGE BODY: APPS.GML_UPDATE_CUST_DATA_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GML_UPDATE_CUST_DATA_PVT, status:VALID,
-
VIEW: APPS.OP_CUST_CON_DFV
12.2.2
owner:APPS, object_type:VIEW, object_name:OP_CUST_CON_DFV, status:VALID,
-
PACKAGE BODY: APPS.GML_UPDATE_CUST_DATA_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GML_UPDATE_CUST_DATA_PVT, status:VALID,
-
VIEW: APPS.OP_CUST_CON_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:OP_CUST_CON_DFV, status:VALID,
-
Table: OP_PRSL_HDR
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_PRSL_HDR, object_name:OP_PRSL_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Order Profile Header and Blanket Sales Order Header. , implementation_dba_data: GML.OP_PRSL_HDR ,
-
Table: SY_ADDR_MST
12.1.1
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_ADDR_MST, object_name:SY_ADDR_MST, status:VALID, product: GMA - Process Manufacturing Systems , description: OPM Address master. Table which stores addresses for all Oracle Process , implementation_dba_data: GMA.SY_ADDR_MST ,
-
Table: OP_PRSL_DTL
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_PRSL_DTL, object_name:OP_PRSL_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: Order profile lines and blanket sales order lines. , implementation_dba_data: GML.OP_PRSL_DTL ,
-
Table: OP_PRSL_DTL
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_PRSL_DTL, object_name:OP_PRSL_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: Order profile lines and blanket sales order lines. , implementation_dba_data: GML.OP_PRSL_DTL ,
-
Table: OP_PRSL_HDR
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_PRSL_HDR, object_name:OP_PRSL_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Order Profile Header and Blanket Sales Order Header. , implementation_dba_data: GML.OP_PRSL_HDR ,
-
Table: SY_ADDR_MST
12.2.2
owner:GMA, object_type:TABLE, fnd_design_data:GMA.SY_ADDR_MST, object_name:SY_ADDR_MST, status:VALID, product: GMA - Process Manufacturing Systems , description: OPM Address master. Table which stores addresses for all Oracle Process , implementation_dba_data: GMA.SY_ADDR_MST ,
-
Table: OP_ORDR_DTL
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_ORDR_DTL, object_name:OP_ORDR_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: Order detail (order lines). , implementation_dba_data: GML.OP_ORDR_DTL ,
-
Table: OP_ORDR_DTL
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_ORDR_DTL, object_name:OP_ORDR_DTL, status:VALID, product: GML - Process Manufacturing Logistics , description: Order detail (order lines). , implementation_dba_data: GML.OP_ORDR_DTL ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
Table: OP_ORDR_HDR
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_ORDR_HDR, object_name:OP_ORDR_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Header table. , implementation_dba_data: GML.OP_ORDR_HDR ,
-
Table: OP_ORDR_HDR
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_ORDR_HDR, object_name:OP_ORDR_HDR, status:VALID, product: GML - Process Manufacturing Logistics , description: Sales Order Header table. , implementation_dba_data: GML.OP_ORDR_HDR ,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
Table: OP_CUST_MST
12.1.1
product: GML - Process Manufacturing Logistics , description: Customer master. , implementation_dba_data: Not implemented in this database ,
-
TABLE: GML.OP_CUST_CON
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_CUST_CON, object_name:OP_CUST_CON, status:VALID,
-
TABLE: GML.OP_CUST_CON_INT
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_CUST_CON_INT, object_name:OP_CUST_CON_INT, status:VALID,
-
TABLE: GML.OP_CUST_CON
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_CUST_CON, object_name:OP_CUST_CON, status:VALID,
-
TABLE: GML.OP_CUST_CON_INT
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_CUST_CON_INT, object_name:OP_CUST_CON_INT, status:VALID,
-
Table: OP_CUST_MST
12.2.2
product: GML - Process Manufacturing Logistics , description: Customer master. , implementation_dba_data: Not implemented in this database ,
-
APPS.GML_UPDATE_CUST_DATA_PVT SQL Statements
12.1.1
-
APPS.GML_UPDATE_CUST_DATA_PVT SQL Statements
12.2.2
-
eTRM - GML Tables and Views
12.1.1
description: Tax reporting classes. ,
-
PACKAGE BODY: APPS.GML_UPDATE_CUST_DATA_PVT
12.1.1
-
eTRM - GML Tables and Views
12.2.2
description: Tax reporting classes. ,
-
PACKAGE BODY: APPS.GML_UPDATE_CUST_DATA_PVT
12.2.2
-
TABLE: GML.OP_CUST_MST_INT
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_CUST_MST_INT, object_name:OP_CUST_MST_INT, status:VALID,
-
TABLE: GML.OP_CUST_MST_INT
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_CUST_MST_INT, object_name:OP_CUST_MST_INT, status:VALID,
-
TABLE: GML.OP_ORDR_HDR
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_ORDR_HDR, object_name:OP_ORDR_HDR, status:VALID,
-
TABLE: GML.OP_ORDR_HDR
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_ORDR_HDR, object_name:OP_ORDR_HDR, status:VALID,
-
TABLE: GML.OP_PRSL_HDR
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_PRSL_HDR, object_name:OP_PRSL_HDR, status:VALID,