DBA Data[Home] [Help]

PACKAGE: APPS.AMS_TCOP_UTIL_PKG

Source


1 PACKAGE AMS_TCOP_UTIL_PKG AUTHID CURRENT_USER AS
2 /* $Header: amsvtcus.pls 115.1 2003/11/17 18:59:58 rmajumda noship $ */
3 -- ===============================================================
4 -- Start of Comments
5 -- Package name
6 --          AMS_TCOP_UTIL_PKG
7 -- Purpose
8 --
9 -- This package contains all the traffic cop related utilities
10 --
11 -- History
12 --
13 -- NOTE
14 --
15 -- End of Comments
16 -- ===============================================================
17 -- Start of Comments
18 -- Name
19 -- Is_Fatigue_Rule_Applicable
20 --
21 -- Purpose
22 -- This function verifies if Fatigue Rule is applicable for
23 -- this schedule or not
24 -- Return Value
25 -- It returns 'Y' if Fatigue Rule is applicable for this schedule
26 -- It returns 'N' if Fatigue Rule is not applicable for this schedule
27 --
28 function Is_Fatigue_Rule_Applicable (
29   p_schedule_id number
30 ) return varchar2 ;
31 
32 END AMS_TCOP_UTIL_PKG;