DBA Data[Home] [Help]

APPS.HR_BUDGET_CALENDAR dependencies on PAY_CALENDARS

Line 103: from pay_calendars cal

99: ) return number is
100: --
101: cursor csr_lock_calendar is
102: select cal.period_set_name
103: from pay_calendars cal
104: where cal.period_set_name = p_period_set_name
105: for update;
106: --
107: v_yr_count number := 0;

Line 295: from pay_calendars cal,

291: into v_cal_details.start_date,
292: v_cal_details.actual_period_type,
293: v_cal_details.proc_period_type,
294: v_cal_details.number_per_fiscal_year
295: from pay_calendars cal,
296: per_time_period_types tpt
297: where cal.period_set_name = p_period_set_name
298: and tpt.period_type = cal.actual_period_type;
299: exception