DBA Data[Home] [Help]

APPS.PY_ZA_COIDA_PKG dependencies on PY_ZA_COIDA_PKG

Line 1: package body py_za_coida_pkg as

1: package body py_za_coida_pkg as
2: /* $Header: pyzacoid.pkb 120.3 2006/06/15 09:29:22 amahanty ship $ */
3: -- *****************************************************************************
4: -- This function calculates the total number of working days during a given
5: -- period. When this function is called the user has to specify if Saturday

Line 201: l_count := l_count + py_za_coida_pkg.get_working_days

197:
198: -- now calculate the days worked and increment the total
199: -- This is only done when the end date is not equal to the prev end date
200: If l_effective_end_date <> lp_effective_end_date then
201: l_count := l_count + py_za_coida_pkg.get_working_days
202: (
203: l_effective_start_date,
204: l_effective_end_date
205: );

Line 241: l_count := l_count + py_za_coida_pkg.get_working_days

237: null;
238: End if;
239:
240: -- now calculate the days worked and increment the total
241: l_count := l_count + py_za_coida_pkg.get_working_days
242: (
243: l_effective_start_date,
244: l_effective_end_date
245: );

Line 264: End py_za_coida_pkg;

260: Return (l_tot_days_worked);
261:
262: End get_emp_days_worked;
263:
264: End py_za_coida_pkg;