DBA Data[Home] [Help]

PACKAGE: APPS.IRC_APA_BUS

Source


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