DBA Data[Home] [Help]

APPS.PER_MX_VALIDATE_ID dependencies on PER_MX_VALIDATIONS

Line 77: Purpose : This procedure acts as wrapper for per_mx_validations.check_rfc.

73:
74:
75: /*******************************************************************************
76: Name : validate_rfc_id
77: Purpose : This procedure acts as wrapper for per_mx_validations.check_rfc.
78: *******************************************************************************/
79:
80: PROCEDURE VALIDATE_RFC_ID(
81: p_per_information2 per_all_people_f.per_information2%type,

Line 102: per_mx_validations.check_rfc (p_per_information2,

98: hr_utility.trace('RFC ID not available for validation.');
99: RETURN;
100: END IF;
101:
102: per_mx_validations.check_rfc (p_per_information2,
103: p_person_id,
104: HR_MX_UTILITY.GET_BG_FROM_PERSON(p_person_id),
105: p_warning,
106: p_valid_rfc_id);

Line 115: Purpose : This procedure acts as wrapper for per_mx_validations.check_ss

111: END VALIDATE_RFC_ID;
112:
113: /*******************************************************************************
114: Name : validate_ss_id
115: Purpose : This procedure acts as wrapper for per_mx_validations.check_ss
116: *******************************************************************************/
117:
118: PROCEDURE VALIDATE_SS_ID(
119: p_per_information3 per_all_people_f.per_information3%type,

Line 140: per_mx_validations.check_ss (p_per_information3,

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,
144: p_valid_ss);

Line 154: Purpose : This procedure acts as wrapper for per_mx_validations.check_fga

150:
151:
152: /*******************************************************************************
153: Name : validate_fga_id
154: Purpose : This procedure acts as wrapper for per_mx_validations.check_fga
155: *******************************************************************************/
156:
157: PROCEDURE VALIDATE_FGA_ID(
158: p_per_information5 per_all_people_f.per_information5%type,

Line 178: per_mx_validations.check_fga (p_per_information5,

174: hr_utility.trace('Federal Government Affiliation ID not available for validation.');
175: RETURN;
176: END IF;
177:
178: per_mx_validations.check_fga (p_per_information5,
179: p_person_id,
180: HR_MX_UTILITY.GET_BG_FROM_PERSON(p_person_id),
181: p_warning);
182: hr_utility.trace('Leaving '||l_proc_name);

Line 188: Purpose : This procedure acts as wrapper for per_mx_validations.check_ms

184:
185:
186: /*******************************************************************************
187: Name : validate_ms_id
188: Purpose : This procedure acts as wrapper for per_mx_validations.check_ms
189: *******************************************************************************/
190:
191: PROCEDURE VALIDATE_MS_ID(
192: p_per_information6 per_all_people_f.per_information6%type,

Line 212: per_mx_validations.check_ms (p_per_information6,

208: hr_utility.trace('Military Service ID not available for validation.');
209: RETURN;
210: END IF;
211:
212: per_mx_validations.check_ms (p_per_information6,
213: p_person_id,
214: HR_MX_UTILITY.GET_BG_FROM_PERSON(p_person_id),
215: p_warning);
216: hr_utility.trace('Leaving '||l_proc_name);

Line 222: Purpose : This procedure acts as wrapper for per_mx_validations.check_imc

218:
219:
220: /*******************************************************************************
221: Name : validate_imc_id
222: Purpose : This procedure acts as wrapper for per_mx_validations.check_imc
223: *******************************************************************************/
224:
225: PROCEDURE VALIDATE_IMC_ID(
226: p_per_information4 per_all_people_f.per_information4%type) AS

Line 243: per_mx_validations.check_imc(p_per_information4);

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:
247:

Line 250: Purpose : This procedure acts as wrapper for per_mx_validations.check_regstrn_id

246:
247:
248: /*******************************************************************************
249: Name : validate_regn_id
250: Purpose : This procedure acts as wrapper for per_mx_validations.check_regstrn_id
251: *******************************************************************************/
252:
253: PROCEDURE VALIDATE_REGN_ID(
254: p_disability_id number,

Line 271: per_mx_validations.check_regstrn_id(p_registration_id,

267: hr_utility.trace('Registration ID not available for validation.');
268: RETURN;
269: END IF;
270:
271: per_mx_validations.check_regstrn_id(p_registration_id,
272: p_disability_id);
273: hr_utility.trace('Leaving '||l_proc_name);
274: END VALIDATE_REGN_ID;
275: