DBA Data[Home] [Help]

APPS.HR_PROCESS_PERSON_SS dependencies on HR_PERINFO_UTIL_WEB

Line 2317: raise hr_perinfo_util_web.g_no_changes;

2313: 'YES',
2314: null,
2315: null);
2316: else
2317: raise hr_perinfo_util_web.g_no_changes;
2318: GOTO no_transaction;
2319: end if;
2320:
2321: ELSE

Line 2323: hr_utility.set_location('raise hr_perinfo_util_web.g_no_changes:'||l_proc,60);

2319: end if;
2320:
2321: ELSE
2322:
2323: hr_utility.set_location('raise hr_perinfo_util_web.g_no_changes:'||l_proc,60);
2324: raise hr_perinfo_util_web.g_no_changes;
2325: GOTO no_transaction;
2326:
2327:

Line 2324: raise hr_perinfo_util_web.g_no_changes;

2320:
2321: ELSE
2322:
2323: hr_utility.set_location('raise hr_perinfo_util_web.g_no_changes:'||l_proc,60);
2324: raise hr_perinfo_util_web.g_no_changes;
2325: GOTO no_transaction;
2326:
2327:
2328: END IF;

Line 3533: WHEN hr_perinfo_util_web.g_no_changes THEN

3529: rollback to applicant_hire;
3530: g_applicant_hire := false;
3531: end if;
3532: --
3533: WHEN hr_perinfo_util_web.g_no_changes THEN
3534: hr_utility.set_location('Exception:g_no_changes'||l_proc,570);
3535: p_error_message := hr_java_conv_util_ss.get_formatted_error_message(
3536: p_error_message => l_error_message,
3537: p_attr_name => 'Page',

Line 3547: WHEN hr_perinfo_util_web.g_past_effective_date THEN

3543: g_applicant_hire := false;
3544: end if;
3545: --
3546: -- Bug Fix : 3048836
3547: WHEN hr_perinfo_util_web.g_past_effective_date THEN
3548: hr_utility.set_location('Exception:g_past_effective_date'||l_proc,575);
3549: p_error_message := hr_java_conv_util_ss.get_formatted_error_message(
3550: p_error_message => l_error_message);
3551:

Line 3552: WHEN hr_perinfo_util_web.g_past_current_start_date THEN

3548: hr_utility.set_location('Exception:g_past_effective_date'||l_proc,575);
3549: p_error_message := hr_java_conv_util_ss.get_formatted_error_message(
3550: p_error_message => l_error_message);
3551:
3552: WHEN hr_perinfo_util_web.g_past_current_start_date THEN
3553: hr_utility.set_location('Exception:g_past_current_start_date'||l_proc,580);
3554: p_error_message := hr_java_conv_util_ss.get_formatted_error_message(
3555: p_error_message => l_error_message);
3556:

Line 4009: WHEN hr_perinfo_util_web.g_past_current_Start_date THEN

4005: p_error_message := hr_java_conv_util_ss.get_formatted_error_message(
4006: p_error_message => p_error_message);
4007: END IF;
4008: --
4009: WHEN hr_perinfo_util_web.g_past_current_Start_date THEN
4010: hr_utility.set_location('Exception:g_past_current_Start_date'||l_proc,570);
4011: ROLLBACK TO process_basic_details;
4012: p_error_message := hr_java_conv_util_ss.get_formatted_error_message(
4013: p_error_message => p_error_message,

Line 4018: WHEN hr_perinfo_util_web.g_past_effective_date THEN

4014: p_attr_name => 'EffectiveStartDate',
4015: p_app_short_name => 'PER',
4016: p_message_name => 'HR_PERINFO_INVALID_ED_01');
4017: --
4018: WHEN hr_perinfo_util_web.g_past_effective_date THEN
4019: hr_utility.set_location('Exception:g_past_effective_date'||l_proc,575);
4020: ROLLBACK TO process_basic_details;
4021: hr_utility.set_message(800,'HR_PERINFO_PAST_EFFECTIVE_DATE');
4022: hr_utility.set_message_token('EFFECTIVE_DATE',

Line 4026: WHEN hr_perinfo_util_web.g_no_changes THEN

4022: hr_utility.set_message_token('EFFECTIVE_DATE',
4023: get_max_effective_date(p_person_id));
4024: hr_utility.raise_error;
4025: --
4026: WHEN hr_perinfo_util_web.g_no_changes THEN
4027: hr_utility.set_location('Exception:g_no_changes'||l_proc,580);
4028: ROLLBACK TO process_basic_details;
4029: p_error_message := hr_java_conv_util_ss.get_formatted_error_message(
4030: p_error_message => p_error_message,

Line 4193: IF hr_perinfo_util_web.isDateLessThanCreationDate

4189: -- Bug Fix 3048836 : checking if the effective date entered by user <
4190: -- hire date or the current record's start date.
4191:
4192: hr_utility.set_location('Entering:'||l_proc, 5);
4193: IF hr_perinfo_util_web.isDateLessThanCreationDate
4194: (p_date => p_effective_date
4195: ,p_person_id => p_person_id) THEN
4196: -- The effective Date is less than the creation date of the
4197: -- Person.

Line 4199: RAISE hr_perinfo_util_web.g_past_effective_date;

4195: ,p_person_id => p_person_id) THEN
4196: -- The effective Date is less than the creation date of the
4197: -- Person.
4198: hr_utility.set_location('The EffDate 4199: RAISE hr_perinfo_util_web.g_past_effective_date;
4200: END IF;
4201: IF hr_perinfo_util_web.isLessThanCurrentStartDate
4202: (p_effective_date => p_effective_date
4203: ,p_person_id => p_person_id

Line 4201: IF hr_perinfo_util_web.isLessThanCurrentStartDate

4197: -- Person.
4198: hr_utility.set_location('The EffDate 4199: RAISE hr_perinfo_util_web.g_past_effective_date;
4200: END IF;
4201: IF hr_perinfo_util_web.isLessThanCurrentStartDate
4202: (p_effective_date => p_effective_date
4203: ,p_person_id => p_person_id
4204: ,p_ovn => p_object_version_number) THEN
4205: hr_utility.set_location('The EffDate

Line 4206: RAISE hr_perinfo_util_web.g_past_current_start_date;

4202: (p_effective_date => p_effective_date
4203: ,p_person_id => p_person_id
4204: ,p_ovn => p_object_version_number) THEN
4205: hr_utility.set_location('The EffDate 4206: RAISE hr_perinfo_util_web.g_past_current_start_date;
4207: END IF;
4208:
4209:
4210: hr_utility.set_location('Opening and Fetching gc_get_cur_person_data :'||l_proc,20);

Line 5496: When hr_perinfo_util_web.g_past_effective_date then

5492: RETURN l_rec_changed;
5493:
5494:
5495: EXCEPTION
5496: When hr_perinfo_util_web.g_past_effective_date then
5497: hr_utility.set_location('Exception:past_effective_date'||l_proc,555);
5498: hr_utility.set_message(applid=> 800,l_message_name=>'HR_PERINFO_PAST_EFFECTIVE_DATE');
5499: hr_utility.set_message_token('EFFECTIVE_DATE',
5500: get_max_effective_date(p_person_id));

Line 5501: raise hr_perinfo_util_web.g_past_effective_date;

5497: hr_utility.set_location('Exception:past_effective_date'||l_proc,555);
5498: hr_utility.set_message(applid=> 800,l_message_name=>'HR_PERINFO_PAST_EFFECTIVE_DATE');
5499: hr_utility.set_message_token('EFFECTIVE_DATE',
5500: get_max_effective_date(p_person_id));
5501: raise hr_perinfo_util_web.g_past_effective_date;
5502:
5503: When hr_perinfo_util_web.g_past_current_start_date then
5504: hr_utility.set_location('Exception:past_current_start_date'||l_proc,565);
5505: hr_utility.set_message(applid=> 800,l_message_name=>'HR_PERINFO_PAST_EFFECTIVE_DATE');

Line 5503: When hr_perinfo_util_web.g_past_current_start_date then

5499: hr_utility.set_message_token('EFFECTIVE_DATE',
5500: get_max_effective_date(p_person_id));
5501: raise hr_perinfo_util_web.g_past_effective_date;
5502:
5503: When hr_perinfo_util_web.g_past_current_start_date then
5504: hr_utility.set_location('Exception:past_current_start_date'||l_proc,565);
5505: hr_utility.set_message(applid=> 800,l_message_name=>'HR_PERINFO_PAST_EFFECTIVE_DATE');
5506: hr_utility.set_message_token('EFFECTIVE_DATE',
5507: get_max_effective_date(p_person_id));

Line 5508: raise hr_perinfo_util_web.g_past_current_start_date;

5504: hr_utility.set_location('Exception:past_current_start_date'||l_proc,565);
5505: hr_utility.set_message(applid=> 800,l_message_name=>'HR_PERINFO_PAST_EFFECTIVE_DATE');
5506: hr_utility.set_message_token('EFFECTIVE_DATE',
5507: get_max_effective_date(p_person_id));
5508: raise hr_perinfo_util_web.g_past_current_start_date;
5509:
5510:
5511: When g_data_error THEN
5512: