DBA Data[Home] [Help]

PACKAGE: APPS.IRC_INP_BUS

Source


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