DBA Data[Home] [Help]

PACKAGE: APPS.PAY_ETM_BUS

Source


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