DBA Data[Home] [Help]

APPS.MSC_GET_NAME dependencies on MSC_CATEGORY_SETS

Line 4294: from msc_category_sets

4290:
4291:
4292: cursor c_default_cat is
4293: select to_char(category_set_id)
4294: from msc_category_sets
4295: where default_flag = 1;
4296:
4297: begin
4298: if p_pref_id is not null then

Line 5027: from msc_category_sets

5023: FUNCTION category_set_name(p_cat_set_id NUMBER) return varchar2 is
5024:
5025: cursor c_cat_set_name is
5026: select category_set_name
5027: from msc_category_sets
5028: where category_set_id = p_cat_set_id;
5029:
5030: l_cat_set_name varchar2(30);
5031: begin