DBA Data[Home] [Help]

APPS.MSD_COMPOSITE_GROUPING dependencies on MSD_LEVELS

Line 75: from msd_levels

71: BEGIN
72:
73: select dimension_code
74: into lv_dimension_code
75: from msd_levels
76: where level_id=p_level_id
77: and plan_type is NULL; -- Bug# 4928951
78:
79: /* The above fix requires plan_type column (with value as NULL) to be

Line 80: present in msd_levels even if liability code is removed. If the

76: where level_id=p_level_id
77: and plan_type is NULL; -- Bug# 4928951
78:
79: /* The above fix requires plan_type column (with value as NULL) to be
80: present in msd_levels even if liability code is removed. If the
81: column is removed, the condition on plan_type must be removed */
82:
83: return lv_dimension_code||'_DIM';
84: