DBA Data[Home] [Help]

APPS.PAY_AU_EXC dependencies on HR_AU_ROUTES

Line 286: l_fy_user_span_start := hr_au_routes.get_fiscal_date( l_business_group_id);

282: open csr_get_business_group;
283: fetch csr_get_business_group into l_business_group_id;
284: close csr_get_business_group;
285: -- Lookup the fiscal start date for this business group
286: l_fy_user_span_start := hr_au_routes.get_fiscal_date( l_business_group_id);
287: -- Check if its a yearly or quarterly balance
288: if lower(l_dimension_name) in ('_asg_fy_ytd','_asg_le_fy_ytd') then --2610141
289: l_frequency := 1;
290: else

Line 328: l_user_span_start := hr_au_routes.span_start( p_user_effective_date

324: --
325: end if;
326: --
327: -- Bug 3075319 - Changed the logic to use the effective_date
328: l_user_span_start := hr_au_routes.span_start( p_user_effective_date
329: , l_frequency
330: , l_date_dd_mm);
331: --
332: hr_utility.trace(' asg_span_ec: l_user_span_start='||to_char(l_user_span_start,'DD-MON-YYYY'));