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 484: msc_get_name.lookup_meaning('MSC_CALENDAR',a);

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

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

483: l_out :=
484: msc_get_name.lookup_meaning('MSC_CALENDAR',a);
485: else
486: l_out := l_out ||','||
487: msc_get_name.lookup_meaning('MSC_CALENDAR',a);
488: end if;
489: END IF;
490: END LOOP;
491: return l_out;

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

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

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

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