DBA Data[Home] [Help]

PACKAGE: APPS.IRC_ISS_BUS

Source


1 Package irc_iss_bus as
2 /* $Header: irissrhi.pkh 120.0.12000000.1 2007/03/23 11:38:34 vboggava noship $ */
3 --
4 -- ---------------------------------------------------------------------------
5 -- |----------------------< set_security_group_id >--------------------------|
6 -- ---------------------------------------------------------------------------
7 -- Removed as per the code review comments
8 --
9 --
10 -- ---------------------------------------------------------------------------
11 -- |---------------------< return_legislation_code >-------------------------|
12 -- ---------------------------------------------------------------------------
13 -- Removed as per the code review comments
14 --
15 --
16 -- ----------------------------------------------------------------------------
17 -- |---------------------------< insert_validate >----------------------------|
18 -- ----------------------------------------------------------------------------
19 -- {Start of comments}
20 --
21 -- Description:
22 --   This procedure controls the execution of all insert business rules
23 --   validation.
24 --
25 -- Prerequisites:
26 --   This private procedure is called from ins procedure.
27 --
28 -- In Parameters:
29 --   A Pl/Sql record structure.
30 --
31 -- Post Success:
32 --   Processing continues.
33 --
34 -- Post Failure:
35 --   If a business rules fails the error will not be handled by this procedure
36 --   unless explicity coded.
37 --
38 -- Developer Implementation Notes:
39 --   For insert, your business rules should be executed from this procedure
40 --   and should ideally (unless really necessary) just be straight procedure
41 --   or function calls. Try and avoid using conditional branching logic.
42 --
43 -- Access Status:
44 --   Internal Row Handler Use Only.
45 --
46 -- {End of comments}
47 -- ----------------------------------------------------------------------------
48 Procedure insert_validate
49   (p_rec                          in irc_iss_shd.g_rec_type
50   );
51 --
52 -- ----------------------------------------------------------------------------
53 -- |---------------------------< update_validate >----------------------------|
54 -- ----------------------------------------------------------------------------
55 -- {Start Of Comments}
56 --
57 -- Description:
58 --   This procedure controls the execution of all update business rules
59 --   validation.
60 --
61 -- Prerequisites:
62 --   This private procedure is called from upd procedure.
63 --
64 -- In Parameters:
65 --   A Pl/Sql record structure.
66 --
67 -- Post Success:
68 --   Processing continues.
69 --
70 -- Post Failure:
71 --   If a business rules fails the error will not be handled by this procedure
72 --   unless explicity coded.
73 --
74 -- Access Status:
75 --   Internal Row Handler Use Only.
76 --
77 -- {End Of Comments}
78 -- ----------------------------------------------------------------------------
79 Procedure update_validate
80   (p_rec                          in irc_iss_shd.g_rec_type
81   );
82 --
83 -- ----------------------------------------------------------------------------
84 -- |---------------------------< delete_validate >----------------------------|
85 -- ----------------------------------------------------------------------------
86 -- {Start Of Comments}
87 --
88 -- Description:
89 --   This procedure controls the execution of all delete business rules
90 --   validation.
91 --
92 -- Prerequisites:
93 --   This private procedure is called from del procedure.
94 --
95 -- In Parameters:
96 --   A Pl/Sql record structure.
97 --
98 -- Post Success:
99 --   Processing continues.
100 --
101 -- Post Failure:
102 --   If a business rules fails the error will not be handled by this procedure
103 --   unless explicity coded.
104 --
105 -- Developer Implementation Notes:
106 --   For delete, your business rules should be executed from this procedure
107 --   and should ideally (unless really necessary) just be straight procedure
108 --   or function calls. Try and avoid using conditional branching logic.
109 --
110 -- Access Status:
111 --   Internal Row Handler Use Only.
112 --
113 -- {End Of Comments}
114 -- ----------------------------------------------------------------------------
115 Procedure delete_validate
116   (p_rec              in irc_iss_shd.g_rec_type
117   );
118 --
119 end irc_iss_bus;