Search Results jtf_sources_all_pk
Overview
The JTF_SOURCES_ALL table is a core reference table within the Oracle E-Business Suite CRM Foundation (JTF) module. It functions as a master repository for defining and managing the various sources or origins of data across the Customer Relationship Management suite. Its primary role is to provide a centralized, normalized list of source identifiers that other transactional and setup tables can reference via foreign key relationships. This ensures data integrity and consistency when tracking the provenance of records, such as the source of a sales lead, a service request, or a territory assignment. The "_ALL" suffix indicates it is a multi-organization enabled table, meaning it can store data for multiple operating units within a single installation.
Key Information Stored
While the provided ETRM excerpt is concise, the table's structure is defined by its primary and foreign key relationships. The central column is SOURCE_ID, which serves as the unique primary key (JTF_SOURCES_ALL_PK) for each source definition. This numeric identifier is the key referenced by all dependent tables. Although specific descriptive column names are not listed in the excerpt, a table of this nature typically includes columns such as SOURCE_NAME, DESCRIPTION, and ENABLED_FLAG to provide meaningful labels and control the active status of each source. The table also contains standard Oracle EBS audit columns (e.g., CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY) and columns supporting multi-org functionality (likely ORG_ID).
Common Use Cases and Queries
This table is primarily used in two contexts: setup and reporting. Administrators populate it with valid source codes during system configuration, which are then selected in various CRM application interfaces. For reporting, it is essential for translating the SOURCE_ID foreign keys found in transactional data into human-readable source names. A fundamental query involves joining this table to a transactional table to enrich a data extract.
- Basic Lookup Join:
SELECT t.transaction_id, s.source_name FROM jtf_terr_usgs_all t, jtf_sources_all s WHERE t.source_id = s.source_id; - Listing All Configured Sources:
SELECT source_id, source_name, description FROM jtf_sources_all WHERE enabled_flag = 'Y' ORDER BY source_name;
These queries are critical for generating reports that analyze campaign effectiveness, lead source productivity, or territory assignment origins.
Related Objects
As documented in the provided foreign key metadata, the JTF_SOURCES_ALL table is directly referenced by several key setup tables within the CRM Foundation. These relationships all use the SOURCE_ID column as the join condition.
- JTF_QUAL_TYPE_USGS_ALL: Qualifier Type Usages. Links source definitions to qualification rules.
- JTF_TERR_TYPE_USGS_ALL: Territory Type Usages. Associates sources with specific territory types.
- JTF_TERR_USGS_ALL: Territory Usages. A core table for defining territory resources and assignments, which references the source of the usage.
These relationships underscore the table's foundational role in the flexible territory and resource management architecture of Oracle CRM.
-
Table: JTF_SOURCES_ALL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_SOURCES_ALL, object_name:JTF_SOURCES_ALL, status:VALID, product: JTF - CRM Foundation , description: Group Column Name , implementation_dba_data: JTF.JTF_SOURCES_ALL ,
-
Table: JTF_SOURCES_ALL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_SOURCES_ALL, object_name:JTF_SOURCES_ALL, status:VALID, product: JTF - CRM Foundation , description: Group Column Name , implementation_dba_data: JTF.JTF_SOURCES_ALL ,
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,