DBA Data[Home] [Help]

PACKAGE: APPS.HR_HTL_BUS

Source


1 Package hr_htl_bus AUTHID CURRENT_USER as
2 /* $Header: hrhtlrhi.pkh 120.0 2005/05/31 00:48 appldev noship $ */
3 --
4 --
5 --
6 -- ----------------------------------------------------------------------------
7 -- |---------------------------< insert_validate >----------------------------|
8 -- ----------------------------------------------------------------------------
9 -- {Start of comments}
10 --
11 -- Description:
12 --   This procedure controls the execution of all insert business rules
13 --   validation.
14 --
15 -- Prerequisites:
16 --   This private procedure is called from ins procedure.
17 --
18 -- In Parameters:
19 --   A Pl/Sql record structure.
20 --
21 -- Post Success:
22 --   Processing continues.
23 --
24 -- Post Failure:
25 --   If a business rules fails the error will not be handled by this procedure
26 --   unless explicity coded.
27 --
28 -- Developer Implementation Notes:
29 --   For insert, your business rules should be executed from this procedure
30 --   and should ideally (unless really necessary) just be straight procedure
31 --   or function calls. Try and avoid using conditional branching logic.
32 --
33 -- Access Status:
34 --   Internal Row Handler Use Only.
35 --
36 -- {End of comments}
37 -- ----------------------------------------------------------------------------
38 Procedure insert_validate
39   (p_rec                          in hr_htl_shd.g_rec_type,
40   p_hierarchy_id               in number
41   );
42 --
43 -- ----------------------------------------------------------------------------
44 -- |---------------------------< update_validate >----------------------------|
45 -- ----------------------------------------------------------------------------
46 -- {Start Of Comments}
47 --
48 -- Description:
49 --   This procedure controls the execution of all update business rules
50 --   validation.
51 --
52 -- Prerequisites:
53 --   This private procedure is called from upd procedure.
54 --
55 -- In Parameters:
56 --   A Pl/Sql record structure.
57 --
58 -- Post Success:
59 --   Processing continues.
60 --
61 -- Post Failure:
62 --   If a business rules fails the error will not be handled by this procedure
63 --   unless explicity coded.
64 --
65 -- Access Status:
66 --   Internal Row Handler Use Only.
67 --
68 -- {End Of Comments}
69 -- ----------------------------------------------------------------------------
70 Procedure update_validate
71   (p_rec                          in hr_htl_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 hr_htl_shd.g_rec_type
108   );
109 --
110 end hr_htl_bus;