Search Results parent_group
Overview
APPS.MSD_SR_SALES_FCST_V is a reporting view in the Oracle E-Business Suite Sales and Operations Planning / Demand Planning schema (MSD), designed to expose forecast and pipeline amounts at the sales-representative group level, normalized across currencies and reporting periods. It consolidates opportunity worksheet forecast data with forecast categories and the GL period calendar, converting all monetary amounts into a global reporting currency using a period-end conversion rate. The view is primarily consumed by Oracle Demand Planning, ETRM (Enterprise Territory and Resource Management) territory analytics, and downstream sales forecasting dashboards.
The "parent_group" reference in this view originates from its inline subquery against JTF_RS_GRP_RELATIONS, which classifies each sales group by hierarchy level. Groups that appear as top-level parents (relation_type = 'PARENT_GROUP') are assigned level 1, while their child groups are assigned level 2. This hierarchy classification drives roll-up reporting and is the primary reason users search for "parent_group" in the context of this object.
Underlying Base Objects
The view is defined over several synonyms and a package:
- AS_OPP_WORKSHEET_LINES — the primary fact source, providing forecast_amount, best_forecast_amount, worst_forecast_amount, amount, weighted_amount, currency_code, period_name, and sales_group_id.
- AS_FORECAST_CATEGORIES — supplies forecast_category_name.
- GL_PERIODS — provides start_date and end_date for the period set configured in MSD_SETUP_PARAMETERS.
- MSD_SETUP_PARAMETERS — resolves the AS_FORECAST_CALENDAR parameter used to join the correct GL period set.
- JTF_RS_GROUPS_B and JTF_RS_GRP_RELATIONS — drive the sales group hierarchy logic, including the PARENT_GROUP relation type.
- MSD_SR_UTIL — a PL/SQL package exposing get_all_prd_pk, get_customer_id, get_all_org_pk, get_all_scs_pk, get_all_rep_pk, and convert_global_amt.
- Additional referenced objects include AS_INTERNAL_FORECASTS, AS_PROD_WORKSHEET_LINES, ENI_DENORM_HIERARCHIES, and MTL_DEFAULT_CATEGORY_SETS.
Key Columns
- best_forecast_amount / forecast_amount / worst_forecast_amount — three-point forecast estimates, each multiplied by the global currency conversion factor.
- pipeline_amount / weighted_pipeline_amount — raw and probability-weighted opportunity pipeline values.
- start_date / end_date — reporting period boundaries joined from GL_PERIODS.
- forecast_category_name — the category label from AS_FORECAST_CATEGORIES.
- decode(glp.period_type,...) — a numeric indicator (3=Month, 4=Quarter, 5=Year) for period granularity.
- lvl — the hierarchy level derived from the PARENT_GROUP logic: 1 for parent groups, 2 for child groups.
Common Use Cases and Queries
Typical usage involves rolling up forecast amounts by hierarchy level, filtering to submitted worksheet lines, or comparing parent versus child group performance.
Example — list parent-level groups and their forecast totals:
- SELECT sales_group_id, lvl, SUM(forecast_amount) FROM APPS.MSD_SR_SALES_FCST_V WHERE lvl = 1 GROUP BY sales_group_id, lvl;
Example — period comparison by forecast category:
- SELECT forecast_category_name, start_date, SUM(weighted_pipeline_amount) FROM APPS.MSD_SR_SALES_FCST_V GROUP BY forecast_category_name, start_date;
-
VIEW: APPS.MSD_SR_SALES_FCST_V
12.1.1
-
VIEW: APPS.MSD_SR_SALES_FCST_V
12.2.2
-
View: MSD_SR_SALES_FCST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_SR_SALES_FCST_V, object_name:MSD_SR_SALES_FCST_V, status:VALID, product: MSD - Demand Planning , description: This is the Source View for Sales Forecast. This view would be applied to an Oracle Applications 11i instance from which the Sales Forecast information is to be retrieved. , implementation_dba_data: APPS.MSD_SR_SALES_FCST_V ,
-
VIEW: APPS.AS_SG_ACTIVE_MGR_V
12.2.2
-
Table: JTF_RS_CHGD_GRP_RELATIONS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_CHGD_GRP_RELATIONS, object_name:JTF_RS_CHGD_GRP_RELATIONS, status:VALID, product: JTF - CRM Foundation , description: This table stores the relations between Groups. Primary key is Group_relate_id. Ex. for relation_type is 'PARENT_GROUP' (Similar to JTF_RS_GRP_RELATIONS with a OPERATION_FLAG Column added) , implementation_dba_data: JTF.JTF_RS_CHGD_GRP_RELATIONS ,
-
Table: JTF_RS_CHGD_GRP_RELATIONS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_CHGD_GRP_RELATIONS, object_name:JTF_RS_CHGD_GRP_RELATIONS, status:VALID, product: JTF - CRM Foundation , description: This table stores the relations between Groups. Primary key is Group_relate_id. Ex. for relation_type is 'PARENT_GROUP' (Similar to JTF_RS_GRP_RELATIONS with a OPERATION_FLAG Column added) , implementation_dba_data: JTF.JTF_RS_CHGD_GRP_RELATIONS ,
-
Table: JTF_RS_CHGD_ROLE_RELATIONS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_CHGD_ROLE_RELATIONS, object_name:JTF_RS_CHGD_ROLE_RELATIONS, status:VALID, product: JTF - CRM Foundation , description: This table stores the relations between Groups. Primary key is Group_relate_id. Ex. for relation_type is 'PARENT_GROUP' (Similar to JTF_RS_GRP_RELATIONS with a OPERATION_FLAG Column added) , implementation_dba_data: JTF.JTF_RS_CHGD_ROLE_RELATIONS ,
-
TABLE: JTF.JTF_RS_GRP_RELATIONS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_GRP_RELATIONS, object_name:JTF_RS_GRP_RELATIONS, status:VALID,
-
TABLE: JTF.JTF_RS_GRP_RELATIONS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_GRP_RELATIONS, object_name:JTF_RS_GRP_RELATIONS, status:VALID,
-
VIEW: APPS.AS_SG_ACTIVE_MGR_V
12.1.1
-
Table: JTF_RS_GRP_RELATIONS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_GRP_RELATIONS, object_name:JTF_RS_GRP_RELATIONS, status:VALID, product: JTF - CRM Foundation , description: This table stores the relations between Groups. Primary key is Group_relate_id. Ex. for relation_type is 'PARENT_GROUP' , implementation_dba_data: JTF.JTF_RS_GRP_RELATIONS ,
-
VIEW: APPS.AS_SALES_GROUPS_V
12.1.1
-
VIEW: APPS.AS_SALES_GROUPS_V
12.2.2
-
VIEW: APPS.JTF_RS_GROUP_DTLS_VL
12.1.1
-
VIEW: APPS.JTF_RS_GROUP_DTLS_VL
12.2.2
-
Lookup Type: JTF_RS_RELATION_TYPE
12.1.1
product: JTF - CRM Foundation , meaning: JTF_RS_RELATION_TYPE_TYPE , description: JTF_RS_RELATION_TYPE ,
-
Lookup Type: JTF_RS_RELATION_TYPE
12.2.2
product: JTF - CRM Foundation , meaning: JTF_RS_RELATION_TYPE_TYPE , description: JTF_RS_RELATION_TYPE ,
-
TABLE: ZPB.ZPB_HIER_MEMBERS
12.1.1
owner:ZPB, object_type:TABLE, fnd_design_data:ZPB.ZPB_HIER_MEMBERS, object_name:ZPB_HIER_MEMBERS, status:VALID,
-
View: MSD_SR_SALES_FCST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_SR_SALES_FCST_V, object_name:MSD_SR_SALES_FCST_V, status:VALID, product: MSD - Demand Planning , description: This is the Source View for Sales Forecast. This view would be applied to an Oracle Applications 11i instance from which the Sales Forecast information is to be retrieved. , implementation_dba_data: APPS.MSD_SR_SALES_FCST_V ,
-
VIEW: APPS.AS_FC_SALES_GROUPS_V
12.1.1
-
Table: JTF_RS_GRP_RELATIONS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_GRP_RELATIONS, object_name:JTF_RS_GRP_RELATIONS, status:VALID, product: JTF - CRM Foundation , description: This table stores the relations between Groups. Primary key is Group_relate_id. Ex. for relation_type is 'PARENT_GROUP' , implementation_dba_data: JTF.JTF_RS_GRP_RELATIONS ,
-
Table: JTF_RS_CHGD_ROLE_RELATIONS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_CHGD_ROLE_RELATIONS, object_name:JTF_RS_CHGD_ROLE_RELATIONS, status:VALID, product: JTF - CRM Foundation , description: This table stores the relations between Groups. Primary key is Group_relate_id. Ex. for relation_type is 'PARENT_GROUP' (Similar to JTF_RS_GRP_RELATIONS with a OPERATION_FLAG Column added) , implementation_dba_data: JTF.JTF_RS_CHGD_ROLE_RELATIONS ,
-
APPS.JTF_RS_GROUP_RELATE_PVT SQL Statements
12.2.2
-
APPS.JTF_RS_GROUP_RELATE_PVT SQL Statements
12.1.1
-
VIEW: APPS.AS_FC_SALES_GROUPS_V
12.2.2
-
TYPE: APPS.ZPB_HIER_MEMBER_OBJ
12.1.1
owner:APPS, object_type:TYPE, object_name:ZPB_HIER_MEMBER_OBJ, status:VALID,
-
APPS.JTF_RS_GROUP_DENORM_PVT SQL Statements
12.1.1
-
APPS.ZPB_FEM_UTILS_PKG SQL Statements
12.1.1
-
VIEW: APPS.JTF_RS_GRP_RELATIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_GRP_RELATIONS_VL, object_name:JTF_RS_GRP_RELATIONS_VL, status:VALID,
-
APPS.JTF_RS_GROUP_DENORM_PVT SQL Statements
12.2.2
-
eTRM - ZPB Tables and Views
12.1.1
description: This table is used to cache the Hierarchy Members of a given Business Area ,
-
View: AS_SG_ACTIVE_MGR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SG_ACTIVE_MGR_V, object_name:AS_SG_ACTIVE_MGR_V, status:VALID, product: AS - Sales Foundation , description: This view shows all sales groups which has active manager information , implementation_dba_data: APPS.AS_SG_ACTIVE_MGR_V ,
-
VIEW: APPS.JTF_RS_GRP_RELATIONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_GRP_RELATIONS_VL, object_name:JTF_RS_GRP_RELATIONS_VL, status:VALID,
-
View: AS_FC_SALES_GROUPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_FC_SALES_GROUPS_V, object_name:AS_FC_SALES_GROUPS_V, status:VALID, product: AS - Sales Foundation , description: This view shows all sales groups information , implementation_dba_data: APPS.AS_FC_SALES_GROUPS_V ,
-
View: JTF_RS_GROUP_DTLS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_GROUP_DTLS_VL, object_name:JTF_RS_GROUP_DTLS_VL, status:VALID, product: JTF - CRM Foundation , description: This view has the groups details including name and manager , implementation_dba_data: APPS.JTF_RS_GROUP_DTLS_VL ,
-
View: AS_SG_ACTIVE_MGR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SG_ACTIVE_MGR_V, object_name:AS_SG_ACTIVE_MGR_V, status:VALID, product: AS - Sales Foundation , description: This view shows all sales groups which has active manager information , implementation_dba_data: APPS.AS_SG_ACTIVE_MGR_V ,
-
View: AS_SALES_GROUPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SALES_GROUPS_V, object_name:AS_SALES_GROUPS_V, status:VALID, product: AS - Sales Foundation , description: This view shows all sales groups information , implementation_dba_data: APPS.AS_SALES_GROUPS_V ,
-
View: AS_SALES_GROUPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_SALES_GROUPS_V, object_name:AS_SALES_GROUPS_V, status:VALID, product: AS - Sales Foundation , description: This view shows all sales groups information , implementation_dba_data: APPS.AS_SALES_GROUPS_V ,
-
APPS.BIV_SR_DETAILS_PKG SQL Statements
12.1.1
-
View: JTF_RS_GROUP_DTLS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_GROUP_DTLS_VL, object_name:JTF_RS_GROUP_DTLS_VL, status:VALID, product: JTF - CRM Foundation , description: This view has the groups details including name and manager , implementation_dba_data: APPS.JTF_RS_GROUP_DTLS_VL ,
-
View: AS_FC_SALES_GROUPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AS.AS_FC_SALES_GROUPS_V, object_name:AS_FC_SALES_GROUPS_V, status:VALID, product: AS - Sales Foundation , description: This view shows all sales groups information , implementation_dba_data: APPS.AS_FC_SALES_GROUPS_V ,
-
TABLE: JTF.JTF_RS_CHGD_GRP_RELATIONS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_CHGD_GRP_RELATIONS, object_name:JTF_RS_CHGD_GRP_RELATIONS, status:VALID,
-
TABLE: JTF.JTF_RS_CHGD_ROLE_RELATIONS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_CHGD_ROLE_RELATIONS, object_name:JTF_RS_CHGD_ROLE_RELATIONS, status:VALID,
-
TABLE: JTF.JTF_RS_CHGD_ROLE_RELATIONS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_CHGD_ROLE_RELATIONS, object_name:JTF_RS_CHGD_ROLE_RELATIONS, status:VALID,
-
TABLE: JTF.JTF_RS_CHGD_GRP_RELATIONS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_CHGD_GRP_RELATIONS, object_name:JTF_RS_CHGD_GRP_RELATIONS, status:VALID,
-
PACKAGE BODY: APPS.JTF_RS_GRP_SUM_PUB_W
12.1.1
-
PACKAGE BODY: APPS.JTF_RS_GRP_SUM_PUB_W
12.2.2
-
PACKAGE BODY: APPS.JTF_RS_GROUP_RELATE_PVT
12.2.2
-
PACKAGE BODY: APPS.JTF_RS_GROUP_RELATE_PVT
12.1.1
-
PACKAGE: APPS.JTF_RS_GRP_SUM_PUB
12.1.1