DBA Data[Home] [Help]

APPS.PER_VIEWS_PKG dependencies on PER_BUSINESS_GROUPS

Line 364: from per_business_groups

360: if (p_pos_working_hours is null) then
361: if(p_org_working_hours is null) then
362: select fnd_number.canonical_to_number(working_hours)
363: into v_working_hours
364: from per_business_groups
365: where business_group_id = p_business_group_id ;
366: else
367: v_working_hours := p_org_working_hours ;
368: end if;

Line 377: from per_business_groups

373: if (p_pos_frequency is null) then
374: if(p_org_frequency is null) then
375: select frequency
376: into v_frequency
377: from per_business_groups
378: where business_group_id = p_business_group_id ;
379: else
380: v_frequency := p_org_frequency ;
381: end if;