DBA Data[Home] [Help]

PACKAGE: APPS.HR_CTX_BUS

Source


1 Package hr_ctx_bus as
2 /* $Header: hrctxrhi.pkh 120.0 2005/05/30 23:30 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_ctx_shd.g_rec_type
37   );
38 --
39 -- ----------------------------------------------------------------------------
40 -- |---------------------------< update_validate >----------------------------|
41 -- ----------------------------------------------------------------------------
42 -- {Start Of Comments}
43 --
44 -- Description:
45 --   This procedure controls the execution of all update business rules
46 --   validation.
47 --
48 -- Prerequisites:
49 --   This private procedure is called from upd procedure.
50 --
51 -- In Parameters:
52 --   A Pl/Sql record structure.
53 --
54 -- Post Success:
55 --   Processing continues.
56 --
57 -- Post Failure:
58 --   If a business rules fails the error will not be handled by this procedure
59 --   unless explicity coded.
60 --
61 -- Access Status:
62 --   Internal Row Handler Use Only.
63 --
64 -- {End Of Comments}
65 -- ----------------------------------------------------------------------------
66 Procedure update_validate
67   (p_rec                          in hr_ctx_shd.g_rec_type
68   );
69 --
70 -- ----------------------------------------------------------------------------
71 -- |---------------------------< delete_validate >----------------------------|
72 -- ----------------------------------------------------------------------------
73 -- {Start Of Comments}
74 --
75 -- Description:
76 --   This procedure controls the execution of all delete business rules
77 --   validation.
78 --
79 -- Prerequisites:
80 --   This private procedure is called from del procedure.
81 --
82 -- In Parameters:
83 --   A Pl/Sql record structure.
84 --
85 -- Post Success:
86 --   Processing continues.
87 --
88 -- Post Failure:
89 --   If a business rules fails the error will not be handled by this procedure
90 --   unless explicity coded.
91 --
92 -- Developer Implementation Notes:
93 --   For delete, your business rules should be executed from this procedure
94 --   and should ideally (unless really necessary) just be straight procedure
95 --   or function calls. Try and avoid using conditional branching logic.
96 --
97 -- Access Status:
98 --   Internal Row Handler Use Only.
99 --
100 -- {End Of Comments}
101 -- ----------------------------------------------------------------------------
102 Procedure delete_validate
103   (p_rec              in hr_ctx_shd.g_rec_type
104   );
105 --
106 end hr_ctx_bus;