DBA Data[Home] [Help]

APPS.PQH_TTM_INS dependencies on HR_UTILITY

Line 52: hr_utility.set_location('Entering:'||l_proc, 5);

48: --
49: l_proc varchar2(72) := g_package||'insert_dml';
50: --
51: Begin
52: hr_utility.set_location('Entering:'||l_proc, 5);
53: p_rec.object_version_number := 1; -- Initialise the object version
54: --
55: --
56: -- Insert the row into: pqh_transaction_templates

Line 76: hr_utility.set_location(' Leaving:'||l_proc, 10);

72: p_rec.object_version_number
73: );
74: --
75: --
76: hr_utility.set_location(' Leaving:'||l_proc, 10);
77: Exception
78: When hr_api.check_integrity_violated Then
79: -- A check constraint has been violated
80: pqh_ttm_shd.constraint_error

Line 138: hr_utility.set_location('Entering:'||l_proc, 5);

134: --
135: Cursor C_Sel1 is select pqh_transaction_templates_s.nextval from sys.dual;
136: --
137: Begin
138: hr_utility.set_location('Entering:'||l_proc, 5);
139: --
140: --
141: -- Select the next sequence number
142: --

Line 147: hr_utility.set_location(' Leaving:'||l_proc, 10);

143: Open C_Sel1;
144: Fetch C_Sel1 Into p_rec.transaction_template_id;
145: Close C_Sel1;
146: --
147: hr_utility.set_location(' Leaving:'||l_proc, 10);
148: End pre_insert;
149: --
150: -- ----------------------------------------------------------------------------
151: -- |-----------------------------< post_insert >------------------------------|

Line 188: hr_utility.set_location('Entering:'||l_proc, 5);

184: --
185: l_proc varchar2(72) := g_package||'post_insert';
186: --
187: Begin
188: hr_utility.set_location('Entering:'||l_proc, 5);
189: --
190: --
191: -- Start of API User Hook for post_insert.
192: --

Line 219: hr_utility.set_location(' Leaving:'||l_proc, 10);

215: --
216: -- End of API User Hook for post_insert.
217: --
218: --
219: hr_utility.set_location(' Leaving:'||l_proc, 10);
220: End post_insert;
221: --
222: -- ----------------------------------------------------------------------------
223: -- |---------------------------------< ins >----------------------------------|

Line 234: hr_utility.set_location('Entering:'||l_proc, 5);

230: --
231: l_proc varchar2(72) := g_package||'ins';
232: --
233: Begin
234: hr_utility.set_location('Entering:'||l_proc, 5);
235: --
236: -- Call the supporting insert validate operations
237: --
238: pqh_ttm_bus.insert_validate(p_rec

Line 273: hr_utility.set_location('Entering:'||l_proc, 5);

269: l_rec pqh_ttm_shd.g_rec_type;
270: l_proc varchar2(72) := g_package||'ins';
271: --
272: Begin
273: hr_utility.set_location('Entering:'||l_proc, 5);
274: --
275: -- Call conversion function to turn arguments into the
276: -- p_rec structure.
277: --

Line 301: hr_utility.set_location(' Leaving:'||l_proc, 10);

297: --
298: p_transaction_template_id := l_rec.transaction_template_id;
299: p_object_version_number := l_rec.object_version_number;
300: --
301: hr_utility.set_location(' Leaving:'||l_proc, 10);
302: End ins;
303: --
304: end pqh_ttm_ins;