DBA Data[Home] [Help]

APPS.PAY_SBF_INS dependencies on HR_UTILITY

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

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

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

77: p_rec.object_version_number
78: );
79: --
80: --
81: hr_utility.set_location(' Leaving:'||l_proc, 10);
82: Exception
83: When hr_api.check_integrity_violated Then
84: -- A check constraint has been violated
85: pay_sbf_shd.constraint_error

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

139: --
140: Cursor C_Sel1 is select pay_shadow_balance_feeds_s.nextval from sys.dual;
141: --
142: Begin
143: hr_utility.set_location('Entering:'||l_proc, 5);
144: --
145: --
146: -- Select the next sequence number
147: --

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

148: Open C_Sel1;
149: Fetch C_Sel1 Into p_rec.balance_feed_id;
150: Close C_Sel1;
151: --
152: hr_utility.set_location(' Leaving:'||l_proc, 10);
153: End pre_insert;
154: --
155: -- ----------------------------------------------------------------------------
156: -- |-----------------------------< post_insert >------------------------------|

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

188: --
189: l_proc varchar2(72) := g_package||'post_insert';
190: --
191: Begin
192: hr_utility.set_location('Entering:'||l_proc, 5);
193: --
194: hr_utility.set_location(' Leaving:'||l_proc, 10);
195: End post_insert;
196: --

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

190: --
191: Begin
192: hr_utility.set_location('Entering:'||l_proc, 5);
193: --
194: hr_utility.set_location(' Leaving:'||l_proc, 10);
195: End post_insert;
196: --
197: -- ----------------------------------------------------------------------------
198: -- |---------------------------------< ins >----------------------------------|

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

205: --
206: l_proc varchar2(72) := g_package||'ins';
207: --
208: Begin
209: hr_utility.set_location('Entering:'||l_proc, 5);
210: --
211: -- Call the supporting insert validate operations
212: --
213: pay_sbf_bus.insert_validate(p_rec);

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

243: l_rec pay_sbf_shd.g_rec_type;
244: l_proc varchar2(72) := g_package||'ins';
245: --
246: Begin
247: hr_utility.set_location('Entering:'||l_proc, 5);
248: --
249: -- Call conversion function to turn arguments into the
250: -- p_rec structure.
251: --

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

271: --
272: p_balance_feed_id := l_rec.balance_feed_id;
273: p_object_version_number := l_rec.object_version_number;
274: --
275: hr_utility.set_location(' Leaving:'||l_proc, 10);
276: End ins;
277: --
278: end pay_sbf_ins;