DBA Data[Home] [Help]

APPS.PQH_DST_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_dflt_budget_sets

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

68: p_rec.object_version_number
69: );
70: --
71: --
72: hr_utility.set_location(' Leaving:'||l_proc, 10);
73: Exception
74: When hr_api.check_integrity_violated Then
75: -- A check constraint has been violated
76: pqh_dst_shd.constraint_error

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

130: --
131: Cursor C_Sel1 is select pqh_dflt_budget_sets_s.nextval from sys.dual;
132: --
133: Begin
134: hr_utility.set_location('Entering:'||l_proc, 5);
135: --
136: --
137: -- Select the next sequence number
138: --

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

139: Open C_Sel1;
140: Fetch C_Sel1 Into p_rec.dflt_budget_set_id;
141: Close C_Sel1;
142: --
143: hr_utility.set_location(' Leaving:'||l_proc, 10);
144: End pre_insert;
145: --
146: -- ----------------------------------------------------------------------------
147: -- |-----------------------------< post_insert >------------------------------|

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

179: --
180: l_proc varchar2(72) := g_package||'post_insert';
181: --
182: Begin
183: hr_utility.set_location('Entering:'||l_proc, 5);
184: --
185: --
186: -- Start of API User Hook for post_insert.
187: --

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

207: --
208: -- End of API User Hook for post_insert.
209: --
210: --
211: hr_utility.set_location(' Leaving:'||l_proc, 10);
212: End post_insert;
213: --
214: -- ----------------------------------------------------------------------------
215: -- |---------------------------------< ins >----------------------------------|

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

221: --
222: l_proc varchar2(72) := g_package||'ins';
223: --
224: Begin
225: hr_utility.set_location('Entering:'||l_proc, 5);
226: --
227: -- Call the supporting insert validate operations
228: --
229: pqh_dst_bus.insert_validate(p_rec);

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

255: l_rec pqh_dst_shd.g_rec_type;
256: l_proc varchar2(72) := g_package||'ins';
257: --
258: Begin
259: hr_utility.set_location('Entering:'||l_proc, 5);
260: --
261: -- Call conversion function to turn arguments into the
262: -- p_rec structure.
263: --

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

280: --
281: p_dflt_budget_set_id := l_rec.dflt_budget_set_id;
282: p_object_version_number := l_rec.object_version_number;
283: --
284: hr_utility.set_location(' Leaving:'||l_proc, 10);
285: End ins;
286: --
287: end pqh_dst_ins;