DBA Data[Home] [Help]

PACKAGE: APPS.HXC_TBB_BUS

Source


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