DBA Data[Home] [Help]

APPS.HR_CANCEL_HIRE_API dependencies on HR_UTILITY

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

88:
89: --
90: begin
91:
92: hr_utility.set_location('Entering:'|| l_proc, 10);
93: --
94: -- Issue a savepoint
95: --
96: savepoint cancel_hire;

Line 129: hr_utility.set_message(800,'HR_449773_POS_NOT_CRRNT');

125:
126: fnd_message.set_name('PER','HR_6346_EMP_ASS_NO_POS');
127: fnd_message.raise_error;
128: else
129: hr_utility.set_message(800,'HR_449773_POS_NOT_CRRNT');
130: hr_utility.raise_error;
131: end if;
132: --bug no 5105026 ends here
133: END IF;

Line 130: hr_utility.raise_error;

126: fnd_message.set_name('PER','HR_6346_EMP_ASS_NO_POS');
127: fnd_message.raise_error;
128: else
129: hr_utility.set_message(800,'HR_449773_POS_NOT_CRRNT');
130: hr_utility.raise_error;
131: end if;
132: --bug no 5105026 ends here
133: END IF;
134:

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

286: p_requisition_warning := l_requisition_warning;
287: p_budget_warning := l_budget_warning;
288: p_payment_warning := l_payment_warning;
289:
290: hr_utility.set_location(' Leaving:'||l_proc, 70);
291:
292: exception
293: when hr_api.validate_enabled then
294: --

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

300: -- Only set output warning arguments
301: -- (Any key or derived arguments must be set to null
302: -- when validation only mode is being used.)
303: --
304: hr_utility.set_location(' Leaving:'||l_proc, 80);
305: when others then
306: --
307: -- A validation or unexpected error has occured
308: --

Line 310: hr_utility.set_location(' Leaving:'||l_proc, 90);

306: --
307: -- A validation or unexpected error has occured
308: --
309: rollback to cancel_hire;
310: hr_utility.set_location(' Leaving:'||l_proc, 90);
311: raise;
312:
313: end cancel_hire;
314: --