DBA Data[Home] [Help]

APPS.PQP_PL_VEHICLE_REPOSITORY dependencies on HR_UTILITY

Line 69: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'PL') THEN

65: ) is
66: Begin
67:
68: /* Added for GSI Bug 5472781 */
69: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'PL') THEN
70: hr_utility.trace('PL not installed.Leaving create_pl_vehicle');
71: return;
72: END IF;
73: -- Check for Vehicle Ownership other then private

Line 70: hr_utility.trace('PL not installed.Leaving create_pl_vehicle');

66: Begin
67:
68: /* Added for GSI Bug 5472781 */
69: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'PL') THEN
70: hr_utility.trace('PL not installed.Leaving create_pl_vehicle');
71: return;
72: END IF;
73: -- Check for Vehicle Ownership other then private
74:

Line 80: hr_utility.set_message(800,'HR_375837_VRE_PL_VEHICLE');

76: -- Check for mandatory nature of fields Official Identification number, Identification number and Engine number
77:
78: If P_VRE_INFORMATION1 is null or P_VRE_INFORMATION3 is null or P_VEHICLE_ID_NUMBER is null Then
79:
80: hr_utility.set_message(800,'HR_375837_VRE_PL_VEHICLE');
81: --Ensure that you enter a vehicle card identification number, vehicle body number, and an engine number.
82: hr_utility.raise_error;
83:
84: End if;

Line 82: hr_utility.raise_error;

78: If P_VRE_INFORMATION1 is null or P_VRE_INFORMATION3 is null or P_VEHICLE_ID_NUMBER is null Then
79:
80: hr_utility.set_message(800,'HR_375837_VRE_PL_VEHICLE');
81: --Ensure that you enter a vehicle card identification number, vehicle body number, and an engine number.
82: hr_utility.raise_error;
83:
84: End if;
85: -- End of Mandatory check
86:

Line 97: --hr_utility.set_location('End of Vehicle Ownership check',30);

93: -- if Multiple Message detection is enabled and at least
94: -- one error has been found then abort further validation.
95: hr_multi_message.end_validation_set;
96:
97: --hr_utility.set_location('End of Vehicle Ownership check',30);
98: -- End of Vehicle Ownership check
99: End create_pl_vehicle;
100: -- End of create_pl_vehicle
101:

Line 167: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'PL') THEN

163: ,P_VRE_INFORMATION19 in VARCHAR2
164: ,P_VRE_INFORMATION20 in VARCHAR2) is
165: Begin
166: /* Added for GSI Bug 5472781 */
167: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'PL') THEN
168: hr_utility.trace('PL not installed.Leaving update_pl_vehicle');
169: return;
170: END IF;
171: -- Check for Vehicle Ownership other then private

Line 168: hr_utility.trace('PL not installed.Leaving update_pl_vehicle');

164: ,P_VRE_INFORMATION20 in VARCHAR2) is
165: Begin
166: /* Added for GSI Bug 5472781 */
167: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'PL') THEN
168: hr_utility.trace('PL not installed.Leaving update_pl_vehicle');
169: return;
170: END IF;
171: -- Check for Vehicle Ownership other then private
172:

Line 177: hr_utility.set_message(800,'HR_375837_VRE_PL_VEHICLE');

173: If P_VEHICLE_OWNERSHIP <> 'PL_PC' Then
174: -- Check for mandatory nature of fields Date From,Official Identification number, Identification number and Engine number
175:
176: If P_VRE_INFORMATION1 is null or P_VRE_INFORMATION3 is null or P_VEHICLE_ID_NUMBER is null Then
177: hr_utility.set_message(800,'HR_375837_VRE_PL_VEHICLE');
178: --Ensure that you enter a vehicle card identification number, vehicle body number, and an engine number.
179: hr_utility.raise_error;
180: End if;
181: -- End of Mandatory check

Line 179: hr_utility.raise_error;

175:
176: If P_VRE_INFORMATION1 is null or P_VRE_INFORMATION3 is null or P_VEHICLE_ID_NUMBER is null Then
177: hr_utility.set_message(800,'HR_375837_VRE_PL_VEHICLE');
178: --Ensure that you enter a vehicle card identification number, vehicle body number, and an engine number.
179: hr_utility.raise_error;
180: End if;
181: -- End of Mandatory check
182:
183: End if;