DBA Data[Home] [Help]

APPS.HR_NO_JOB_API dependencies on HR_UTILITY

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

89: from per_business_groups pbg
90: where pbg.business_group_id = p_business_group_id;
91: --
92: begin
93: hr_utility.set_location('Entering:'|| l_proc, 5);
94: --
95: -- Validation in addition to Row Handlers
96: --
97: -- Check that the specified business group is valid.

Line 104: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');

100: fetch csr_bg
101: into l_legislation_code;
102: if csr_bg%notfound then
103: close csr_bg;
104: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
105: hr_utility.raise_error;
106: end if;
107: close csr_bg;
108: --

Line 105: hr_utility.raise_error;

101: into l_legislation_code;
102: if csr_bg%notfound then
103: close csr_bg;
104: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
105: hr_utility.raise_error;
106: end if;
107: close csr_bg;
108: --
109: -- Check that the legislation of the specified business group is 'NO'.

Line 112: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');

108: --
109: -- Check that the legislation of the specified business group is 'NO'.
110: --
111: if l_legislation_code <> 'NO' then
112: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
113: hr_utility.set_message_token('LEG_CODE','NO');
114: hr_utility.raise_error;
115: end if;
116:

Line 113: hr_utility.set_message_token('LEG_CODE','NO');

109: -- Check that the legislation of the specified business group is 'NO'.
110: --
111: if l_legislation_code <> 'NO' then
112: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
113: hr_utility.set_message_token('LEG_CODE','NO');
114: hr_utility.raise_error;
115: end if;
116:
117: hr_utility.set_location(l_proc, 6);

Line 114: hr_utility.raise_error;

110: --
111: if l_legislation_code <> 'NO' then
112: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
113: hr_utility.set_message_token('LEG_CODE','NO');
114: hr_utility.raise_error;
115: end if;
116:
117: hr_utility.set_location(l_proc, 6);
118: --

Line 117: hr_utility.set_location(l_proc, 6);

113: hr_utility.set_message_token('LEG_CODE','NO');
114: hr_utility.raise_error;
115: end if;
116:
117: hr_utility.set_location(l_proc, 6);
118: --
119: -- Call the person business process
120: --
121: hr_job_api.create_job

Line 193: hr_utility.set_location(' Leaving:'||l_proc, 7);

189: ,p_job_definition_id => p_job_definition_id
190: ,p_name => p_name
191: );
192: --
193: hr_utility.set_location(' Leaving:'||l_proc, 7);
194: end create_no_job;
195:
196: --
197: -- ----------------------------------------------------------------------------

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

279: from per_jobs_v pj
280: where pj.job_id = p_job_id);
281: --
282: begin
283: hr_utility.set_location('Entering:'|| l_proc, 5);
284: --
285: -- Validation in addition to Row Handlers
286: --
287: -- Check that the specified business group is valid.

Line 294: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');

290: fetch csr_bg
291: into l_legislation_code;
292: if csr_bg%notfound then
293: close csr_bg;
294: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
295: hr_utility.raise_error;
296: end if;
297: close csr_bg;
298: --

Line 295: hr_utility.raise_error;

291: into l_legislation_code;
292: if csr_bg%notfound then
293: close csr_bg;
294: hr_utility.set_message(801, 'HR_7208_API_BUS_GRP_INVALID');
295: hr_utility.raise_error;
296: end if;
297: close csr_bg;
298: --
299: -- Check that the legislation of the specified business group is 'NO'.

Line 302: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');

298: --
299: -- Check that the legislation of the specified business group is 'NO'.
300: --
301: if l_legislation_code <> 'NO' then
302: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
303: hr_utility.set_message_token('LEG_CODE','NO');
304: hr_utility.raise_error;
305: end if;
306:

Line 303: hr_utility.set_message_token('LEG_CODE','NO');

299: -- Check that the legislation of the specified business group is 'NO'.
300: --
301: if l_legislation_code <> 'NO' then
302: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
303: hr_utility.set_message_token('LEG_CODE','NO');
304: hr_utility.raise_error;
305: end if;
306:
307: hr_utility.set_location(l_proc, 6);

Line 304: hr_utility.raise_error;

300: --
301: if l_legislation_code <> 'NO' then
302: hr_utility.set_message(801, 'HR_7961_PER_BUS_GRP_INVALID');
303: hr_utility.set_message_token('LEG_CODE','NO');
304: hr_utility.raise_error;
305: end if;
306:
307: hr_utility.set_location(l_proc, 6);
308: --

Line 307: hr_utility.set_location(l_proc, 6);

303: hr_utility.set_message_token('LEG_CODE','NO');
304: hr_utility.raise_error;
305: end if;
306:
307: hr_utility.set_location(l_proc, 6);
308: --
309: -- Call the person business process
310: --
311:

Line 382: hr_utility.set_location(' Leaving:'||l_proc, 7);

378: ,p_valid_grades_changed_warning => p_valid_grades_changed_warning
379: ,p_effective_date => p_effective_date
380: );
381: --
382: hr_utility.set_location(' Leaving:'||l_proc, 7);
383: end update_no_job;
384:
385: --
386: end hr_no_job_api;