DBA Data[Home] [Help]

PACKAGE: APPS.PQH_RLT_BUS

Source


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