DBA Data[Home] [Help]

PACKAGE: APPS.JTF_RS_GROUP_MEMBER_VUHK

Source


1 PACKAGE  jtf_rs_group_member_vuhk AUTHID CURRENT_USER AS
2   /* $Header: jtfrsims.pls 120.0 2005/05/11 08:20:18 appldev ship $ */
3 
4   /*****************************************************************************************
5    This is the Vertical Industry User Hook API.
6    The Vertical Industry can add customization procedures here for Pre and Post Processing.
7    ******************************************************************************************/
8 
9   /* Vertcal Industry Procedure for pre processing in case of
10 	create resource group members */
11 
12   PROCEDURE  create_group_members_pre
13   (P_GROUP_ID             IN   JTF_RS_GROUP_MEMBERS.GROUP_ID%TYPE,
14    P_RESOURCE_ID          IN   JTF_RS_GROUP_MEMBERS.RESOURCE_ID%TYPE,
15    X_RETURN_STATUS        OUT NOCOPY VARCHAR2
16   );
17 
18 
19   /* Vertcal Industry Procedure for post processing in case of
20 	create resource group members */
21 
22   PROCEDURE  create_group_members_post
23   (P_GROUP_MEMBER_ID      IN   JTF_RS_GROUP_MEMBERS.GROUP_MEMBER_ID%TYPE,
24    P_GROUP_ID             IN   JTF_RS_GROUP_MEMBERS.GROUP_ID%TYPE,
25    P_RESOURCE_ID          IN   JTF_RS_GROUP_MEMBERS.RESOURCE_ID%TYPE,
26    X_RETURN_STATUS        OUT NOCOPY VARCHAR2
27   );
28 
29 
30   /* Vertcal Industry Procedure for pre processing in case of
31 	update resource group members */
32 
33   PROCEDURE  update_group_members_pre
34   (P_GROUP_MEMBER_ID             IN   JTF_RS_GROUP_MEMBERS.GROUP_MEMBER_ID%TYPE,
35    X_RETURN_STATUS        OUT NOCOPY VARCHAR2
36   );
37 
38 
39   /* Vertcal Industry Procedure for post processing in case of
40 	update resource group members */
41 
42   PROCEDURE  update_group_members_post
43   (P_GROUP_MEMBER_ID             IN   JTF_RS_GROUP_MEMBERS.GROUP_MEMBER_ID%TYPE,
44    X_RETURN_STATUS        OUT NOCOPY  VARCHAR2
45   );
46 
47 
48   /* Vertcal Industry Procedure for pre processing in case of
49 	delete resource group members */
50 
51   PROCEDURE  delete_group_members_pre
52   (P_GROUP_ID             IN   JTF_RS_GROUP_MEMBERS.GROUP_ID%TYPE,
53    P_RESOURCE_ID          IN   JTF_RS_GROUP_MEMBERS.RESOURCE_ID%TYPE,
54    X_RETURN_STATUS        OUT NOCOPY VARCHAR2
55   );
56 
57 
58   /* Vertcal Industry Procedure for post processing in case of
59 	delete resource group members */
60 
61   PROCEDURE  delete_group_members_post
62   (P_GROUP_ID             IN   JTF_RS_GROUP_MEMBERS.GROUP_ID%TYPE,
63    P_RESOURCE_ID          IN   JTF_RS_GROUP_MEMBERS.RESOURCE_ID%TYPE,
64    X_RETURN_STATUS        OUT NOCOPY VARCHAR2
65   );
66 
67 END jtf_rs_group_member_vuhk;