DBA Data[Home] [Help]

APPS.PER_MX_VALIDATE_ID dependencies on HR_GENERAL

Line 41: hr_general2.init_fndload(800).

37: 02-AUG-2004 sdahiya 115.3 3804076 Procedure COMPARE_ID should not
38: compare identifiers for
39: format validations if both are null.
40: 16-MAR-2005 ardsouza 115.4 4147647 Commented out calls to
41: hr_general2.init_fndload(800).
42: 10-MAY-2006 vpandya 115.5 5176823 Changed compare_id:
43: Removed appl id from mesg token.
44: *****************************************************************************/
45:

Line 67: hr_general.decode_lookup('MX_ACTION_TOKEN', 'ERROR'));

63: null;
64: ELSE
65: hr_utility.set_message(800, p_message);
66: hr_utility.set_message_token('ACTION',
67: hr_general.decode_lookup('MX_ACTION_TOKEN', 'ERROR'));
68: hr_utility.raise_error;
69: END IF;
70: END IF;
71: --

Line 91: -- hr_general2.init_fndload(800); -- Bug 4147647

87:
88: BEGIN
89: l_proc_name := glb_proc_name ||'VALIDATE_RFC_ID';
90: hr_utility.trace('Entering '||l_proc_name);
91: -- hr_general2.init_fndload(800); -- Bug 4147647
92: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'MX') THEN
93: hr_utility.trace('Mexico legislation not installed. Not performing validation checks.');
94: RETURN;
95: END IF;

Line 139: -- hr_general2.init_fndload(800); -- Bug 4147647

135: hr_utility.trace('Social Security ID not available for validation.');
136: RETURN;
137: END IF;
138:
139: -- hr_general2.init_fndload(800); -- Bug 4147647
140: per_mx_validations.check_ss (p_per_information3,
141: p_person_id,
142: HR_MX_UTILITY.GET_BG_FROM_PERSON(p_person_id),
143: p_warning,

Line 167: -- hr_general2.init_fndload(800); -- Bug 4147647

163:
164: BEGIN
165: l_proc_name := glb_proc_name ||'VALIDATE_FGA_ID';
166: hr_utility.trace('Entering '||l_proc_name);
167: -- hr_general2.init_fndload(800); -- Bug 4147647
168: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'MX') THEN
169: hr_utility.trace('Mexico legislation not installed. Not performing validation checks.');
170: RETURN;
171: END IF;

Line 201: -- hr_general2.init_fndload(800); -- Bug 4147647

197:
198: BEGIN
199: l_proc_name := glb_proc_name ||'VALIDATE_MS_ID';
200: hr_utility.trace('Entering '||l_proc_name);
201: -- hr_general2.init_fndload(800); -- Bug 4147647
202: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'MX') THEN
203: hr_utility.trace('Mexico legislation not installed. Not performing validation checks.');
204: RETURN;
205: END IF;

Line 242: -- hr_general2.init_fndload(800); -- Bug 4147647

238: hr_utility.trace('Social Security Medical Center ID not available for validation.');
239: RETURN;
240: END IF;
241:
242: -- hr_general2.init_fndload(800); -- Bug 4147647
243: per_mx_validations.check_imc(p_per_information4);
244: hr_utility.trace('Leaving '||l_proc_name);
245: END VALIDATE_IMC_ID;
246: