DBA Data[Home] [Help]

PACKAGE: APPS.PER_QTT_BUS

Source


1 Package per_qtt_bus as
2 /* $Header: peqttrhi.pkh 120.0 2005/05/31 16:17:31 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
28 --   and should ideally (unless really necessary) just be straight procedure
29 --   or 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 per_qtt_shd.g_rec_type
38   ,p_qualification_type_id        in per_qualification_types_tl.qualification_type_id%TYPE default null
39   );
40 --
41 -- ----------------------------------------------------------------------------
42 -- |---------------------------< update_validate >----------------------------|
43 -- ----------------------------------------------------------------------------
44 -- {Start Of Comments}
45 --
46 -- Description:
47 --   This procedure controls the execution of all update business rules
48 --   validation.
49 --
50 -- Prerequisites:
51 --   This private procedure is called from upd procedure.
52 --
53 -- In Parameters:
54 --   A Pl/Sql record structure.
55 --
56 -- Post Success:
57 --   Processing continues.
58 --
59 -- Post Failure:
60 --   If a business rules fails the error will not be handled by this procedure
61 --   unless explicity coded.
62 --
63 -- Access Status:
64 --   Internal Row Handler Use Only.
65 --
66 -- {End Of Comments}
67 -- ----------------------------------------------------------------------------
68 Procedure update_validate
69   (p_rec                          in per_qtt_shd.g_rec_type
70   );
71 --
72 -- ----------------------------------------------------------------------------
73 -- |---------------------------< delete_validate >----------------------------|
74 -- ----------------------------------------------------------------------------
75 -- {Start Of Comments}
76 --
77 -- Description:
78 --   This procedure controls the execution of all delete business rules
79 --   validation.
80 --
81 -- Prerequisites:
82 --   This private procedure is called from del procedure.
83 --
84 -- In Parameters:
85 --   A Pl/Sql record structure.
86 --
87 -- Post Success:
88 --   Processing continues.
89 --
90 -- Post Failure:
91 --   If a business rules fails the error will not be handled by this procedure
92 --   unless explicity coded.
93 --
94 -- Developer Implementation Notes:
95 --   For delete, your business rules should be executed from this procedure
96 --   and should ideally (unless really necessary) just be straight procedure
97 --   or function calls. Try and avoid using conditional branching logic.
98 --
99 -- Access Status:
100 --   Internal Row Handler Use Only.
101 --
102 -- {End Of Comments}
103 -- ----------------------------------------------------------------------------
104 Procedure delete_validate
105   (p_rec              in per_qtt_shd.g_rec_type
106   );
107 --
108 -- ----------------------------------------------------------------------------
109 -- |---------------------------< validate_translation >------------------------|
110 -- ----------------------------------------------------------------------------
111 -- {Start Of Comments}
112 --
113 -- Description:
114 --   This procedure performs the validation for the MLS widget.
115 --
116 -- Prerequisites:
117 --   This procedure is called from from the MLS widget.
118 --
119 -- In Parameters:
120 --
121 -- Post Success:
122 --   Processing continues.
123 --
124 -- Post Failure:
125 --   If a business rules fails the error will not be handled by this procedure
126 --
127 -- Developer Implementation Notes:
128 --
129 -- Access Status:
130 --   MLS Widget Only.
131 --
132 -- {End Of Comments}
133 -- ----------------------------------------------------------------------------
134 Procedure validate_translation
135   (p_qualification_type_id          in number
136   ,p_language                       in varchar2
137   ,p_name                           in varchar2
138   );
139 --
140 end per_qtt_bus;