DBA Data[Home] [Help]

PACKAGE: APPS.JTF_RS_TEAM_USAGE_CUHK

Source


1 PACKAGE  jtf_rs_team_usage_cuhk AS
2   /* $Header: jtfrscjs.pls 120.0 2005/05/11 08:19:40 appldev ship $ */
3 
4   /*****************************************************************************************
5    This is the Customer User Hook API.
6    The Customers can add customization procedures here for Pre and Post Processing.
7    ******************************************************************************************/
8 
9   /* Customer Procedure for pre processing in case of
10 	create resource team usages */
11 
12   PROCEDURE  create_team_usage_pre
13   (P_TEAM_ID              IN   NUMBER,
14    P_USAGE                IN   VARCHAR2,
15    X_RETURN_STATUS        OUT NOCOPY  VARCHAR2
16   );
17 
18 
19   /* Customer Procedure for post processing in case of
20 	create resource team usage */
21 
22   PROCEDURE  create_team_usage_post
23   (P_TEAM_USAGE_ID        IN   NUMBER,
24    P_TEAM_ID              IN   NUMBER,
25    P_USAGE                IN   VARCHAR2,
26    X_RETURN_STATUS        OUT NOCOPY VARCHAR2
27   );
28 
29 
30   /* Customer Procedure for pre processing in case of
31 	delete resource team usage */
32 
33   PROCEDURE  delete_team_usage_pre
34   (P_TEAM_ID              IN   NUMBER,
35    P_USAGE                IN   VARCHAR2,
36    X_RETURN_STATUS        OUT NOCOPY VARCHAR2
37   );
38 
39 
40   /* Customer Procedure for post processing in case of
41 	delete resource team usage */
42 
43   PROCEDURE  delete_team_usage_post
44   (P_TEAM_ID              IN   NUMBER,
45    P_USAGE                IN   VARCHAR2,
46    X_RETURN_STATUS        OUT NOCOPY VARCHAR2
47   );
48 
49 
50 
51   /* Customer/Vertical Industry Function before Message Generation */
52 
53   FUNCTION ok_to_generate_msg
54   (P_TEAM_USAGE_ID        IN   NUMBER,
55    X_RETURN_STATUS        OUT NOCOPY VARCHAR2
56   ) RETURN BOOLEAN;
57 
58 
59 
60 END jtf_rs_team_usage_cuhk;