Search Results altcust_no
Overview
OP_CUST_MST_OPM is the customer master table within the Oracle Process Manufacturing Logistics (GML) module in Oracle E-Business Suite 12.1.1 and 12.2.2. Owned by the GML schema and marked VALID, it is the foundational repository for customer records used throughout process manufacturing order-to-cash flows, including sales order entry, shipping, pricing, credit, commissions, and financial posting.
Each row represents a single customer entity, identified internally by a surrogate key and externally by a company-scoped customer number. The table is heavily referenced by downstream transactional tables that capture orders, invoices, shipments, and receivables, making it one of the central master data objects in the Process Manufacturing suite.
From a Data Vault modeling perspective, the heuristic classification derived from the foreign key structure suggests this object behaves as a link table. The table's numerous foreign keys to classification, address, currency, terms, and sales representative reference tables indicate it functions as a join point that ties independent master data domains together into a single customer profile. Analysts building dimensional or Data Vault models should treat OP_CUST_MST_OPM as a hub-like entity with substantial link-style relationships to supporting reference hubs.
Key Information Stored
The table contains 95 documented columns. The most business-critical include the following.
- CUST_ID — surrogate primary key defined by OP_CUST_MST_OPM_PK, used internally for all referential joins.
- CUST_NO and CO_CODE — together form the unique business key defined by OP_CUST_MST_OPM_UC1, ensuring customer numbers are unique within a given company/organization.
- CUST_NAME — the customer's display name used on documents and inquiries.
- ADDR_ID and MAILADDR_ID — foreign keys to SY_ADDR_MST for the primary and mailing addresses.
- TERMS_CODE, FOB_CODE, and FRTBILL_MTHD — payment terms, freight-on-board terms, and freight billing method governing order pricing and settlement.
- CREDIT_LIMIT — the maximum credit exposure allowed for the customer, used by credit checking routines.
- CUST_CURRENCY — foreign key to GL_CURR_MST defining the customer's transacting currency.
- SLSREP_CODE and COMMISSION_CODE — sales representative and commission assignment references.
- CUST_CLASS, CUSTTRADE_CLASS, CUSTGL_CLASS, and CUSTPRICE_CLASS — classification references that drive pricing, GL posting, and trade rules.
- TAXLOC_CODE and TAXCALC_CODE — tax location and calculation references used by the tax engine.
- INACTIVE_IND and DELETE_MARK — status flags controlling the active/inactive lifecycle and soft deletion.
- OPEN_BALANCE — the customer's opening accounts receivable balance.
Common Use Cases and Queries
Typical reporting and integration scenarios retrieve customer profile data for order entry, credit review, and AR reconciliation. A frequent query joins the customer to its address and terms:
- Lookup by business key:
SELECT cust_id, cust_name FROM gml.op_cust_mst_opm WHERE co_code = :co AND cust_no = :no - Credit exposure review: filter by
credit_limitand join to open receivable balances. - Customer listing by class: join
cust_classto OP_CUST_CLS to group customers by sales or pricing category. - Currency and terms reporting: join
cust_currencyto GL_CURR_MST andterms_codeto OP_TERM_MST. - Address validation: join
addr_idto SY_ADDR_MST for full mailing details. - Active customer extracts:
WHERE inactive_ind = 'N' AND delete_mark = 0for downstream data feeds. - Commission assignment: join
commission_codeto OP_COMMISSION for sales reporting.
Related Objects
The table participates in a dense web of relationships, all enforced by documented foreign keys with the GML schema.
- SY_ADDR_MST — joined on ADDR_ID and MAILADDR_ID for mailing and physical addresses.
- SY_ORGN_MST_B — joined on CO_CODE, defining the owning organization/company.
- GL_CURR_MST — joined on CUST_CURRENCY for currency conversion and reporting.
- OP_TERM_MST — joined on TERMS_CODE for payment terms.
- OP_SLSR_MST and OP_COMMISSION — joined on SLSREP_CODE and COMMISSION_CODE for sales and commission logic.
- OP_CUST_CLS, OP_CGLD_CLS, OP_CPRC_CLS, and OP_CTRD_CLS — classification references for customer, GL, pricing, and trade classes.
- IC_WHSE_MST — joined on FROM_WHSE and TO_WHSE for default shipping warehouses.
- OP_FOBC_MST, OP_FRGT_MTH, and OP_LKBX_MST — freight and lockbox references.
- TX_CALC_MST and TX_TLOC_CDS — tax calculation and location references.
- OP_TEXT_HDR — joined on TEXT_CODE for attached descriptive text.
-
Table: OP_CUST_MST_OPM
12.2.2
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_CUST_MST_OPM, object_name:OP_CUST_MST_OPM, status:VALID, product: GML - Process Manufacturing Logistics , description: Customer master. , implementation_dba_data: GML.OP_CUST_MST_OPM ,
-
Table: 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, product: GML - Process Manufacturing Logistics , description: Customer Interface table for data transferred from Oracle Receivables into the OPM customer master. , implementation_dba_data: GML.OP_CUST_MST_INT ,
-
Table: OP_CUST_MST_OPM
12.1.1
owner:GML, object_type:TABLE, fnd_design_data:GML.OP_CUST_MST_OPM, object_name:OP_CUST_MST_OPM, status:VALID, product: GML - Process Manufacturing Logistics , description: Customer master. , implementation_dba_data: GML.OP_CUST_MST_OPM ,
-
Table: 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, product: GML - Process Manufacturing Logistics , description: Customer Interface table for data transferred from Oracle Receivables into the OPM customer master. , implementation_dba_data: GML.OP_CUST_MST_INT ,
-
View: OP_CUST_MSTI2_VW1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GML.OP_CUST_MSTI2_VW1, object_name:OP_CUST_MSTI2_VW1, status:VALID, product: GML - Process Manufacturing Logistics , description: Customer Master table view. , implementation_dba_data: APPS.OP_CUST_MSTI2_VW1 ,
-
View: OP_CUST_MSTI2_VW1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GML.OP_CUST_MSTI2_VW1, object_name:OP_CUST_MSTI2_VW1, status:VALID, product: GML - Process Manufacturing Logistics , description: Customer Master table view. , implementation_dba_data: APPS.OP_CUST_MSTI2_VW1 ,
-
View: OP_CUST_MST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GML.OP_CUST_MST_V, object_name:OP_CUST_MST_V, status:VALID, product: GML - Process Manufacturing Logistics , description: View of op_cust_mst for OPM OF customers , implementation_dba_data: APPS.OP_CUST_MST_V ,
-
View: OP_CUST_MST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GML.OP_CUST_MST_V, object_name:OP_CUST_MST_V, status:VALID, product: GML - Process Manufacturing Logistics , description: View of op_cust_mst for OPM OF customers , implementation_dba_data: APPS.OP_CUST_MST_V ,