DBA Data[Home] [Help]

PACKAGE: APPS.ENG_BIS_FUNCTIONS

Source


1 PACKAGE ENG_BIS_FUNCTIONS AUTHID CURRENT_USER AS
2 /* $Header: engbisfs.pls 115.1 2002/02/06 19:15:51 skagarwa ship $ */
3 
4 /*
5  * GetWorkdaysBetween
6  *
7  *   This function calculates the number of mfg
8  *   workdays between a start date and an end
9  *   date for a particular organization.
10  */
11 FUNCTION GetWorkdaysBetween(p_organization_id  NUMBER,
12 			    p_start_date       DATE,
13 	 		    p_end_date	       DATE)
14 RETURN number;
15 
16 
17 END ENG_BIS_FUNCTIONS;