DBA Data[Home] [Help]

PACKAGE: APPS.HR_ITL_BUS

Source


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