DBA Data[Home] [Help]

PACKAGE: APPS.AME_AGL_BUS

Source


1 Package ame_agl_bus AUTHID CURRENT_USER as
2 /* $Header: amaglrhi.pkh 120.0 2005/09/02 03:49 mbocutt noship $ */
3 --
4 
5 --
6 --
7 -- ----------------------------------------------------------------------------
8 -- |---------------------------< insert_validate >----------------------------|
9 -- ----------------------------------------------------------------------------
10 -- {Start of comments}
11 --
12 -- Description:
13 --   This procedure controls the execution of all insert business rules
14 --   validation.
15 --
16 -- Prerequisites:
17 --   This private procedure is called from ins procedure.
18 --
19 -- In Parameters:
20 --   A Pl/Sql record structure.
21 --
22 -- Post Success:
23 --   Processing continues.
24 --
25 -- Post Failure:
26 --   If a business rules fails the error will not be handled by this procedure
27 --   unless explicity coded.
28 --
29 -- Developer Implementation Notes:
30 --   For insert, your business rules should be executed from this procedure
31 --   and should ideally (unless really necessary) just be straight procedure
32 --   or function calls. Try and avoid using conditional branching logic.
33 --
34 -- Access Status:
35 --   Internal Row Handler Use Only.
36 --
37 -- {End of comments}
38 -- ----------------------------------------------------------------------------
39 Procedure insert_validate
40   (p_rec                          in ame_agl_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 -- Access Status:
66 --   Internal Row Handler Use Only.
67 --
68 -- {End Of Comments}
69 -- ----------------------------------------------------------------------------
70 Procedure update_validate
71   (p_rec                          in ame_agl_shd.g_rec_type
72   );
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 structure.
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
98 --   and should ideally (unless really necessary) just be straight procedure
99 --   or 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
107   (p_rec              in ame_agl_shd.g_rec_type
108   );
109 --
110 end ame_agl_bus;