DBA Data[Home] [Help]

PACKAGE: APPS.HXC_MCU_BUS

Source


1 Package hxc_mcu_bus AUTHID CURRENT_USER as
2 /* $Header: hxcmcurhi.pkh 120.0 2005/05/29 05:47:17 appldev noship $ */
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 structure.
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_rec                          in hxc_mcu_shd.g_rec_type
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 -- Developer Implementation Notes:
63 --   For update, your business rules should be executed from this procedure and
64 --   should ideally (unless really necessary) just be straight procedure or
65 --   function calls. Try and avoid using conditional branching logic.
66 --
67 -- Access Status:
68 --   Internal Row Handler Use Only.
69 --
70 -- {End Of Comments}
71 -- ----------------------------------------------------------------------------
72 Procedure update_validate
73   (p_rec                          in hxc_mcu_shd.g_rec_type
74   );
75 --
76 -- ----------------------------------------------------------------------------
77 -- |---------------------------< delete_validate >----------------------------|
78 -- ----------------------------------------------------------------------------
79 -- {Start Of Comments}
80 --
81 -- Description:
82 --   This procedure controls the execution of all delete business rules
83 --   validation.
84 --
85 -- Prerequisites:
86 --   This private procedure is called from del procedure.
87 --
88 -- In Parameters:
89 --   A Pl/Sql record structure.
90 --
91 -- Post Success:
92 --   Processing continues.
93 --
94 -- Post Failure:
95 --   If a business rules fails the error will not be handled by this procedure
96 --   unless explicity coded.
97 --
98 -- Developer Implementation Notes:
99 --   For delete, your business rules should be executed from this procedure and
100 --   should ideally (unless really necessary) just be straight procedure or
101 --   function calls. Try and avoid using conditional branching logic.
102 --
103 -- Access Status:
104 --   Internal Row Handler Use Only.
105 --
106 --
107 -- ----------------------------------------------------------------------------
108 Procedure delete_validate
109   (p_rec              in hxc_mcu_shd.g_rec_type
110   );
111 --
112 end hxc_mcu_bus;