DBA Data[Home] [Help]

PACKAGE: APPS.IRC_IOS_BUS

Source


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