DBA Data[Home] [Help]

APPS.MSC_DRP_UTIL dependencies on MSC_GET_NAME

Line 62: return msc_get_name.lookup_meaning(v_new_lookup_type, v_new_lookup_code);

58: end if;
59: end if;
60: end if;
61:
62: return msc_get_name.lookup_meaning(v_new_lookup_type, v_new_lookup_code);
63:
64: END order_type_text;
65:
66: FUNCTION cost_under_util(p_plan_id number,

Line 488: msc_get_name.lookup_meaning('MSC_CALENDAR',a);

484: FOR a in 1..no_of_calendars loop
485: IF substr(p_padded_vl_cal,a,1) <> '0' then
486: if l_out is null then
487: l_out :=
488: msc_get_name.lookup_meaning('MSC_CALENDAR',a);
489: else
490: l_out := l_out ||','||
491: msc_get_name.lookup_meaning('MSC_CALENDAR',a);
492: end if;

Line 491: msc_get_name.lookup_meaning('MSC_CALENDAR',a);

487: l_out :=
488: msc_get_name.lookup_meaning('MSC_CALENDAR',a);
489: else
490: l_out := l_out ||','||
491: msc_get_name.lookup_meaning('MSC_CALENDAR',a);
492: end if;
493: END IF;
494: END LOOP;
495: return l_out;

Line 776: v_name := msc_get_name.scenario_designator(p_forecast_set_id,p_plan_id,p_org_id,p_instance_id);

772: RETURN varchar2 IS
773: v_name varchar2(300);
774: v_name2 varchar2(300);
775: BEGIN
776: v_name := msc_get_name.scenario_designator(p_forecast_set_id,p_plan_id,p_org_id,p_instance_id);
777: v_name2 := msc_get_name.designator(p_schedule_designator_id,p_forecast_set_id);
778: if v_name is not null and v_name2 is not null then
779: return v_name ||'/'||v_name2;
780: else

Line 777: v_name2 := msc_get_name.designator(p_schedule_designator_id,p_forecast_set_id);

773: v_name varchar2(300);
774: v_name2 varchar2(300);
775: BEGIN
776: v_name := msc_get_name.scenario_designator(p_forecast_set_id,p_plan_id,p_org_id,p_instance_id);
777: v_name2 := msc_get_name.designator(p_schedule_designator_id,p_forecast_set_id);
778: if v_name is not null and v_name2 is not null then
779: return v_name ||'/'||v_name2;
780: else
781: return v_name || v_name2;