DBA Data[Home] [Help]

PACKAGE: APPS.HXC_TKGQC_BUS

Source


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