DBA Data[Home] [Help]

PACKAGE: APPS.HR_AMM_BUS

Source


1 Package hr_amm_bus as
2 /* $Header: hrammrhi.pkh 120.0 2005/05/30 22:40:28 appldev noship $ */
3 --
4 -- ---------------------------------------------------------------------------
5 -- |----------------------< set_security_group_id >--------------------------|
6 -- ---------------------------------------------------------------------------
7 -- {Start Of Comments}
8 --
9 --  Description:
10 --    Sets the security_group_id in CLIENT_INFO for the appropriate business
11 --    group context.
12 --
13 --  Prerequisites:
14 --    The primary key identified by p_authoria_mapping_id
15 --     already exists.
16 --
17 --  In Arguments:
18 --    p_authoria_mapping_id
19 --
20 --
21 --  Post Success:
22 --    The security_group_id will be set in CLIENT_INFO.
23 --
24 --  Post Failure:
25 --    An error is raised if the value does not exist.
26 --
27 --  Access Status:
28 --    Internal Development Use Only.
29 --
30 -- {End Of Comments}
31 -- ---------------------------------------------------------------------------
32 procedure set_security_group_id
33   (p_authoria_mapping_id                  in number
34   ,p_associated_column1                   in varchar2 default null
35   );
36 --
37 --
38 --
39 -- ----------------------------------------------------------------------------
40 -- |---------------------------< insert_validate >----------------------------|
41 -- ----------------------------------------------------------------------------
42 -- {Start of comments}
43 --
44 -- Description:
45 --   This procedure controls the execution of all insert business rules
46 --   validation.
47 --
48 -- Prerequisites:
49 --   This private procedure is called from ins procedure.
50 --
51 -- In Parameters:
52 --   A Pl/Sql record structure.
53 --
54 -- Post Success:
55 --   Processing continues.
56 --
57 -- Post Failure:
58 --   If a business rules fails the error will not be handled by this procedure
59 --   unless explicity coded.
60 --
61 -- Developer Implementation Notes:
62 --   For insert, your business rules should be executed from this procedure
63 --   and should ideally (unless really necessary) just be straight procedure
64 --   or function calls. Try and avoid using conditional branching logic.
65 --
66 -- Access Status:
67 --   Internal Row Handler Use Only.
68 --
69 -- {End of comments}
70 -- ----------------------------------------------------------------------------
71 Procedure insert_validate
72   (p_rec                          in hr_amm_shd.g_rec_type
73   );
74 --
75 -- ----------------------------------------------------------------------------
76 -- |---------------------------< update_validate >----------------------------|
77 -- ----------------------------------------------------------------------------
78 -- {Start Of Comments}
79 --
80 -- Description:
81 --   This procedure controls the execution of all update business rules
82 --   validation.
83 --
84 -- Prerequisites:
85 --   This private procedure is called from upd procedure.
86 --
87 -- In Parameters:
88 --   A Pl/Sql record structure.
89 --
90 -- Post Success:
91 --   Processing continues.
92 --
93 -- Post Failure:
94 --   If a business rules fails the error will not be handled by this procedure
95 --   unless explicity coded.
96 --
97 -- Access Status:
98 --   Internal Row Handler Use Only.
99 --
100 -- {End Of Comments}
101 -- ----------------------------------------------------------------------------
102 Procedure update_validate
103   (p_rec                          in hr_amm_shd.g_rec_type
104   );
105 --
106 -- ----------------------------------------------------------------------------
107 -- |---------------------------< delete_validate >----------------------------|
108 -- ----------------------------------------------------------------------------
109 -- {Start Of Comments}
110 --
111 -- Description:
112 --   This procedure controls the execution of all delete business rules
113 --   validation.
114 --
115 -- Prerequisites:
116 --   This private procedure is called from del procedure.
117 --
118 -- In Parameters:
119 --   A Pl/Sql record structure.
120 --
121 -- Post Success:
122 --   Processing continues.
123 --
124 -- Post Failure:
125 --   If a business rules fails the error will not be handled by this procedure
126 --   unless explicity coded.
127 --
128 -- Developer Implementation Notes:
129 --   For delete, your business rules should be executed from this procedure
130 --   and should ideally (unless really necessary) just be straight procedure
131 --   or function calls. Try and avoid using conditional branching logic.
132 --
133 -- Access Status:
134 --   Internal Row Handler Use Only.
135 --
136 -- {End Of Comments}
137 -- ----------------------------------------------------------------------------
138 Procedure delete_validate
139   (p_rec              in hr_amm_shd.g_rec_type
140   );
141 --
142 end hr_amm_bus;