DBA Data[Home] [Help]

PACKAGE BODY: APPS.JTF_RS_GROUP_MEMBER_IUHK

Source


1 PACKAGE  BODY jtf_rs_group_member_iuhk AS
2   /* $Header: jtfrsnmb.pls 120.0 2005/05/11 08:20:51 appldev ship $ */
3 
4   /*****************************************************************************************
5    This is the Internal Industry User Hook API.
6    The Internal Industry can add customization procedures here for Pre and Post Processing.
7    ******************************************************************************************/
8 
9   /* Internal 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   ) IS
17 
18   BEGIN
19 
20     null;
21 
22   END;
23 
24 
25   /* Internal Industry Procedure for post processing in case of
26 	create resource group members */
27 
28   PROCEDURE  create_group_members_post
29   (P_GROUP_MEMBER_ID      IN   JTF_RS_GROUP_MEMBERS.GROUP_MEMBER_ID%TYPE,
30    P_GROUP_ID             IN   JTF_RS_GROUP_MEMBERS.GROUP_ID%TYPE,
31    P_RESOURCE_ID          IN   JTF_RS_GROUP_MEMBERS.RESOURCE_ID%TYPE,
32    X_RETURN_STATUS        OUT NOCOPY VARCHAR2
33   ) IS
34 
35   BEGIN
36 
37     null;
38 
39   END;
40 
41 
42   /* Internal Industry Procedure for pre processing in case of
43 	update resource group members */
44 
45   PROCEDURE  update_group_members_pre
46   (P_GROUP_MEMBER_ID             IN   JTF_RS_GROUP_MEMBERS.GROUP_MEMBER_ID%TYPE,
47    X_RETURN_STATUS        OUT NOCOPY  VARCHAR2
48   ) IS
49   BEGIN
50 
51     null;
52 
53   END;
54 
55 
56 
57 
58   /* Internal Industry Procedure for post processing in case of
59 	update resource group members */
60 
61   PROCEDURE  update_group_members_post
62   (P_GROUP_MEMBER_ID             IN   JTF_RS_GROUP_MEMBERS.GROUP_MEMBER_ID%TYPE,
63    X_RETURN_STATUS        OUT NOCOPY VARCHAR2
64   ) IS
65   BEGIN
66 
67     null;
68 
69   END;
70 
71 
72   /* Internal Industry Procedure for pre processing in case of
73 	delete resource group members */
74 
75   PROCEDURE  delete_group_members_pre
76   (P_GROUP_ID             IN   JTF_RS_GROUP_MEMBERS.GROUP_ID%TYPE,
77    P_RESOURCE_ID          IN   JTF_RS_GROUP_MEMBERS.RESOURCE_ID%TYPE,
78    X_RETURN_STATUS        OUT NOCOPY VARCHAR2
79   ) IS
80 
81   BEGIN
82 
83     null;
84 
85   END;
86 
87 
88   /* Internal Industry Procedure for post processing in case of
89 	delete resource group members */
90 
91   PROCEDURE  delete_group_members_post
92   (P_GROUP_ID             IN   JTF_RS_GROUP_MEMBERS.GROUP_ID%TYPE,
93    P_RESOURCE_ID          IN   JTF_RS_GROUP_MEMBERS.RESOURCE_ID%TYPE,
94    X_RETURN_STATUS        OUT NOCOPY  VARCHAR2
95   ) IS
96 
97   BEGIN
98 
99     null;
100 
101   END;
102 
103 END jtf_rs_group_member_iuhk;