DBA Data[Home] [Help]

APPS.INV_ORG dependencies on HR_UTILITY

Line 47: hr_utility.set_location('inv_org.inv_predel_validation',1);

43: -- Local Variable
44: v_dummy varchar2(1);
45: --
46: begin
47: hr_utility.set_location('inv_org.inv_predel_validation',1);
48: select 1
49: into v_dummy
50: from sys.dual
51: where exists(select 'exists'

Line 59: hr_utility.set_message(801,'HR_6890_INV_MTL_P_EXISTS');

55: -- If got through then error
56: --
57: -- Note don't forget to change both the application_id and
58: -- the message name of this message.
59: hr_utility.set_message(801,'HR_6890_INV_MTL_P_EXISTS');
60: hr_utility.raise_error;
61: --
62: exception
63: when no_data_found then null;

Line 60: hr_utility.raise_error;

56: --
57: -- Note don't forget to change both the application_id and
58: -- the message name of this message.
59: hr_utility.set_message(801,'HR_6890_INV_MTL_P_EXISTS');
60: hr_utility.raise_error;
61: --
62: exception
63: when no_data_found then null;
64: end inv_predel_validation;