Search Results sbt_code
Overview
The view APPS.OKC_SUBJECT_GROUPS_V is a reporting and integration object within the OKC – Contracts Core product of Oracle E-Business Suite, available in releases 12.1.1 and 12.2.2. It exposes the contents of the contract subject group mapping table in a stable, query-friendly form. In the Contracts Core data model, subject groups allow related subjects of a contract (for example, parties, clauses, or other subject types) to be grouped together so that shared behavior, defaults, or processing rules can be applied to the group rather than to each subject individually. The view is the only documented layer between external consumers and the physical OKC_SUBJECT_GROUPS table, so it serves as the supported read surface for Forms personalizations, concurrent program extracts, OAF pages, and third-party integrations that need to resolve subject group relationships.
The view is registered as VALID and is owned by the APPS schema, which is consistent with the standard EBS convention of exposing application data through APPS-owned views defined over the same-named base table.
Underlying Base Objects
The documented base object is the synonym OKC_SUBJECT_GROUPS, which resolves to the physical table of the same name in the OKC schema. The view definition is a straight projection with no joins, filters, or aggregations:
OKC_SUBJECT_GROUPS_Vselects all business and WHO columns fromOKC_SUBJECT_GROUPS.SGRB.ROWIDis aliased toROW_ID, providing an addressable identifier even though no single surrogate key column is exposed.- Because the view is a one-to-one projection, row counts and cardinality match the underlying table exactly, and no row can be missing or duplicated as a result of the view.
As with most APPS views, DML against the view is not the intended pattern; changes to subject group definitions are made through the Contracts Core application or the base table by authorized processes. The view should be treated as read-only by reporting and integration components.
Key Columns
The columns exposed by the view map directly to the base table:
ROW_ID— the ROWID of the underlying row, useful as a unique handle for a subject group mapping when no natural key is convenient.SBT_CODE— the subject code, identifying the subject (or subject type) that participates in the group. This is the column most frequently referenced when searching for a specific subject, and it is the object of the “sbt_code” search term.SBT_CODE_GROUPED— the subject code of the group to whichSBT_CODEbelongs. Together, theSBT_CODE/SBT_CODE_GROUPEDpair defines the grouping relationship and is the primary axis for querying the view.OBJECT_VERSION_NUMBER— optimistic locking version used by the Contracts Core framework; useful for detecting concurrent modifications during integration loads.CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN— the standard WHO audit columns, supporting audit reporting and incremental extraction based onLAST_UPDATE_DATE.
Common Use Cases and Queries
Typical scenarios include resolving all subjects in a group, finding the group for a given subject, and incremental extracts for downstream systems. Example statements follow.
List every subject belonging to a specific group:
SELECT sbt_code, sbt_code_grouped FROM okc_subject_groups_v WHERE sbt_code_grouped = :p_group_code;
Find the group a particular subject is assigned to:
SELECT sbt_code_grouped FROM okc_subject_groups_v WHERE sbt_code = :p_sbt_code;
Incremental extract using the WHO audit columns:
SELECT sbt_code, sbt_code_grouped,
object_version_number, last_update_date
FROM okc_subject_groups_v
WHERE last_update_date >= :p_since_date;
Because the view is unaggregated, callers should apply their own DISTINCT or grouping logic when a one-row-per-group result is required, and should join to subject definition tables or Contracts Core subject views when descriptive attributes of the subject or group are needed.
-
View: OKC_SUBJECT_GROUPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_SUBJECT_GROUPS_V, object_name:OKC_SUBJECT_GROUPS_V, status:VALID, product: OKC - Contracts Core , description: View for table OKC_SUBJECT_GROUPS , implementation_dba_data: APPS.OKC_SUBJECT_GROUPS_V ,
-
View: OKC_SUBJECT_GROUPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_SUBJECT_GROUPS_V, object_name:OKC_SUBJECT_GROUPS_V, status:VALID, product: OKC - Contracts Core , description: View for table OKC_SUBJECT_GROUPS , implementation_dba_data: APPS.OKC_SUBJECT_GROUPS_V ,
-
View: OKC_STD_ART_LOOKUP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_STD_ART_LOOKUP_V, object_name:OKC_STD_ART_LOOKUP_V, status:VALID, product: OKC - Contracts Core , description: Standard Articles View , implementation_dba_data: APPS.OKC_STD_ART_LOOKUP_V ,
-
View: OKC_KOL_K_ARTICLES_V
12.1.1
product: OKC - Contracts Core , implementation_dba_data: Not implemented in this database ,
-
View: OKC_STD_ARTICLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_STD_ARTICLES_V, object_name:OKC_STD_ARTICLES_V, status:VALID, product: OKC - Contracts Core , description: Backward compatible View for table OKC_ARTICLES_ALL , implementation_dba_data: APPS.OKC_STD_ARTICLES_V ,
-
View: OKC_ART_NON_STANDARDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_ART_NON_STANDARDS_V, object_name:OKC_ART_NON_STANDARDS_V, status:VALID, product: OKC - Contracts Core , description: View for table OKC_ARTICLES_B , implementation_dba_data: APPS.OKC_ART_NON_STANDARDS_V ,
-
View: OKC_STD_ART_LOOKUP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_STD_ART_LOOKUP_V, object_name:OKC_STD_ART_LOOKUP_V, status:VALID, product: OKC - Contracts Core , description: Standard Articles View , implementation_dba_data: APPS.OKC_STD_ART_LOOKUP_V ,
-
View: OKC_KOL_K_ARTICLES_V
12.2.2
product: OKC - Contracts Core , implementation_dba_data: Not implemented in this database ,
-
View: OKC_ART_NON_STANDARDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_ART_NON_STANDARDS_V, object_name:OKC_ART_NON_STANDARDS_V, status:VALID, product: OKC - Contracts Core , description: View for table OKC_ARTICLES_B , implementation_dba_data: APPS.OKC_ART_NON_STANDARDS_V ,
-
View: OKC_STD_ARTICLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_STD_ARTICLES_V, object_name:OKC_STD_ARTICLES_V, status:VALID, product: OKC - Contracts Core , description: Backward compatible View for table OKC_ARTICLES_ALL , implementation_dba_data: APPS.OKC_STD_ARTICLES_V ,
-
View: OKC_K_ARTICLES_HV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_ARTICLES_HV, object_name:OKC_K_ARTICLES_HV, status:VALID, product: OKC - Contracts Core , description: History view for OKC_K_ARTICLES. , implementation_dba_data: APPS.OKC_K_ARTICLES_HV ,
-
View: OKC_KOL_STD_ART_LIB_V
12.1.1
product: OKC - Contracts Core , implementation_dba_data: Not implemented in this database ,
-
View: OKC_KOL_STD_ART_LIB_V
12.2.2
product: OKC - Contracts Core , implementation_dba_data: Not implemented in this database ,
-
View: OKC_K_ARTICLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_ARTICLES_V, object_name:OKC_K_ARTICLES_V, status:VALID, product: OKC - Contracts Core , description: View for table OKC_ARTICLES_B , implementation_dba_data: APPS.OKC_K_ARTICLES_V ,
-
View: OKC_K_ARTICLES_HV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_ARTICLES_HV, object_name:OKC_K_ARTICLES_HV, status:VALID, product: OKC - Contracts Core , description: History view for OKC_K_ARTICLES. , implementation_dba_data: APPS.OKC_K_ARTICLES_HV ,
-
View: OKC_K_ARTICLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_ARTICLES_V, object_name:OKC_K_ARTICLES_V, status:VALID, product: OKC - Contracts Core , description: View for table OKC_ARTICLES_B , implementation_dba_data: APPS.OKC_K_ARTICLES_V ,
-
Table: OKC_SUBJECT_GROUPS
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_SUBJECT_GROUPS, object_name:OKC_SUBJECT_GROUPS, status:VALID, product: OKC - Contracts Core , description: Allows subjects to be grouped hierarchically to make it easier to organize and find articles. , implementation_dba_data: OKC.OKC_SUBJECT_GROUPS ,
-
Table: OKC_SUBJECT_GROUPS
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_SUBJECT_GROUPS, object_name:OKC_SUBJECT_GROUPS, status:VALID, product: OKC - Contracts Core , description: Allows subjects to be grouped hierarchically to make it easier to organize and find articles. , implementation_dba_data: OKC.OKC_SUBJECT_GROUPS ,