DBA Data[Home] [Help]

APPS.BEN_BATCH_RANGES_API dependencies on HR_UTILITY

Line 30: hr_utility.set_location('Entering:'|| l_proc, 10);

26: l_object_version_number ben_batch_ranges.object_version_number%TYPE;
27: --
28: begin
29: --
30: hr_utility.set_location('Entering:'|| l_proc, 10);
31: --
32: -- Issue a savepoint if operating in validation only mode
33: --
34: savepoint create_batch_ranges;

Line 36: hr_utility.set_location(l_proc, 20);

32: -- Issue a savepoint if operating in validation only mode
33: --
34: savepoint create_batch_ranges;
35: --
36: hr_utility.set_location(l_proc, 20);
37: --
38: -- Process Logic
39: --
40: ben_ran_ins.ins

Line 49: hr_utility.set_location(l_proc, 60);

45: ,p_ending_person_action_id => p_ending_person_action_id
46: ,p_object_version_number => l_object_version_number
47: ,p_effective_date => trunc(p_effective_date));
48: --
49: hr_utility.set_location(l_proc, 60);
50: --
51: -- When in validation only mode raise the Validate_Enabled exception
52: --
53: if p_validate then

Line 62: hr_utility.set_location(' Leaving:'||l_proc, 70);

58: --
59: p_range_id := l_range_id;
60: p_object_version_number := l_object_version_number;
61: --
62: hr_utility.set_location(' Leaving:'||l_proc, 70);
63: --
64: exception
65: --
66: when hr_api.validate_enabled then

Line 79: hr_utility.set_location(' Leaving:'||l_proc, 80);

75: -- when validation only mode is being used.)
76: --
77: p_range_id := null;
78: p_object_version_number := null;
79: hr_utility.set_location(' Leaving:'||l_proc, 80);
80: --
81: when others then
82: --
83: -- A validation or unexpected error has occured

Line 115: hr_utility.set_location('Entering:'|| l_proc, 10);

111: l_object_version_number ben_batch_ranges.object_version_number%TYPE;
112: --
113: begin
114: --
115: hr_utility.set_location('Entering:'|| l_proc, 10);
116: --
117: -- Issue a savepoint if operating in validation only mode
118: --
119: savepoint update_batch_ranges;

Line 121: hr_utility.set_location(l_proc, 20);

117: -- Issue a savepoint if operating in validation only mode
118: --
119: savepoint update_batch_ranges;
120: --
121: hr_utility.set_location(l_proc, 20);
122: --
123: -- Process Logic
124: --
125: l_object_version_number := p_object_version_number;

Line 136: hr_utility.set_location(l_proc, 60);

132: ,p_ending_person_action_id => p_ending_person_action_id
133: ,p_object_version_number => l_object_version_number
134: ,p_effective_date => trunc(p_effective_date));
135: --
136: hr_utility.set_location(l_proc, 60);
137: --
138: -- When in validation only mode raise the Validate_Enabled exception
139: --
140: if p_validate then

Line 148: hr_utility.set_location(' Leaving:'||l_proc, 70);

144: -- Set all output arguments
145: --
146: p_object_version_number := l_object_version_number;
147: --
148: hr_utility.set_location(' Leaving:'||l_proc, 70);
149: --
150: exception
151: --
152: when hr_api.validate_enabled then

Line 163: hr_utility.set_location(' Leaving:'||l_proc, 80);

159: -- Only set output warning arguments
160: -- (Any key or derived arguments must be set to null
161: -- when validation only mode is being used.)
162: --
163: hr_utility.set_location(' Leaving:'||l_proc, 80);
164: --
165: when others then
166: --
167: -- A validation or unexpected error has occured

Line 190: hr_utility.set_location('Entering:'|| l_proc, 10);

186: l_object_version_number ben_batch_ranges.object_version_number%TYPE;
187: --
188: begin
189: --
190: hr_utility.set_location('Entering:'|| l_proc, 10);
191: --
192: -- Issue a savepoint if operating in validation only mode
193: --
194: savepoint delete_batch_ranges;

Line 196: hr_utility.set_location(l_proc, 20);

192: -- Issue a savepoint if operating in validation only mode
193: --
194: savepoint delete_batch_ranges;
195: --
196: hr_utility.set_location(l_proc, 20);
197: --
198: -- Process Logic
199: --
200: l_object_version_number := p_object_version_number;

Line 207: hr_utility.set_location(l_proc, 60);

203: (p_range_id => p_range_id
204: ,p_object_version_number => l_object_version_number
205: ,p_effective_date => p_effective_date);
206: --
207: hr_utility.set_location(l_proc, 60);
208: --
209: -- When in validation only mode raise the Validate_Enabled exception
210: --
211: if p_validate then

Line 215: hr_utility.set_location(' Leaving:'||l_proc, 70);

211: if p_validate then
212: raise hr_api.validate_enabled;
213: end if;
214: --
215: hr_utility.set_location(' Leaving:'||l_proc, 70);
216: --
217: exception
218: --
219: when hr_api.validate_enabled then

Line 255: hr_utility.set_location('Entering:'|| l_proc, 10);

251: l_proc varchar2(72) := g_package||'lck';
252: --
253: begin
254: --
255: hr_utility.set_location('Entering:'|| l_proc, 10);
256: --
257: ben_ran_shd.lck
258: (p_range_id => p_range_id
259: ,p_object_version_number => p_object_version_number);

Line 261: hr_utility.set_location(' Leaving:'||l_proc, 70);

257: ben_ran_shd.lck
258: (p_range_id => p_range_id
259: ,p_object_version_number => p_object_version_number);
260: --
261: hr_utility.set_location(' Leaving:'||l_proc, 70);
262: --
263: end lck;
264: --
265: end ben_batch_ranges_api;