DBA Data[Home] [Help]

APPS.HR_RATING_LEVELS_API dependencies on FND_MESSAGE

Line 100: fnd_message.set_name('PER', 'HR_52693_NO_GLOB_RAT_LEVL');

96: --
97: -- ngundura global rating levels should not be allowed if
98: -- Cross business group profile is set to N
99: if fnd_profile.value('HR_CROSS_BUSINESS_GROUP') = 'N' and p_business_group_id is null then
100: fnd_message.set_name('PER', 'HR_52693_NO_GLOB_RAT_LEVL');
101: fnd_message.raise_error;
102: end if;
103: -- Call Before Process User Hook
104: --

Line 101: fnd_message.raise_error;

97: -- ngundura global rating levels should not be allowed if
98: -- Cross business group profile is set to N
99: if fnd_profile.value('HR_CROSS_BUSINESS_GROUP') = 'N' and p_business_group_id is null then
100: fnd_message.set_name('PER', 'HR_52693_NO_GLOB_RAT_LEVL');
101: fnd_message.raise_error;
102: end if;
103: -- Call Before Process User Hook
104: --
105: begin

Line 1171: fnd_message.set_name('PER','HR_51928_APT_RSC_NOT_EXIST');

1167: open csr_rsc;
1168: fetch csr_rsc into l_rating_scale_id;
1169: if csr_rsc%NOTFOUND then
1170: close csr_rsc;
1171: fnd_message.set_name('PER','HR_51928_APT_RSC_NOT_EXIST');
1172: fnd_message.raise_error;
1173: end if;
1174: close csr_rsc;
1175: hr_utility.trace('l_rating_scale_id : ' || l_rating_scale_id);

Line 1172: fnd_message.raise_error;

1168: fetch csr_rsc into l_rating_scale_id;
1169: if csr_rsc%NOTFOUND then
1170: close csr_rsc;
1171: fnd_message.set_name('PER','HR_51928_APT_RSC_NOT_EXIST');
1172: fnd_message.raise_error;
1173: end if;
1174: close csr_rsc;
1175: hr_utility.trace('l_rating_scale_id : ' || l_rating_scale_id);
1176: end if;

Line 1205: fnd_message.set_name('PER','HR_52251_CEL_COMP_ID_INVL');

1201: open csr_comp;
1202: fetch csr_comp into l_competence_id;
1203: if csr_comp%NOTFOUND then
1204: close csr_comp;
1205: fnd_message.set_name('PER','HR_52251_CEL_COMP_ID_INVL');
1206: fnd_message.raise_error;
1207: end if;
1208: close csr_comp;
1209: hr_utility.trace('l_competence_id : ' || l_competence_id);

Line 1206: fnd_message.raise_error;

1202: fetch csr_comp into l_competence_id;
1203: if csr_comp%NOTFOUND then
1204: close csr_comp;
1205: fnd_message.set_name('PER','HR_52251_CEL_COMP_ID_INVL');
1206: fnd_message.raise_error;
1207: end if;
1208: close csr_comp;
1209: hr_utility.trace('l_competence_id : ' || l_competence_id);
1210: end if;

Line 1238: fnd_message.set_name('PER','HR_449168_NO_UPDATE_STEP_VALUE');

1234: else
1235: hr_utility.set_location(l_proc,70);
1236:
1237: if (p_step_value is not NULL and p_step_value <> l_step_value) then
1238: fnd_message.set_name('PER','HR_449168_NO_UPDATE_STEP_VALUE');
1239: fnd_message.raise_error;
1240: else
1241: update_rating_level
1242: (p_language_code => l_language_code

Line 1239: fnd_message.raise_error;

1235: hr_utility.set_location(l_proc,70);
1236:
1237: if (p_step_value is not NULL and p_step_value <> l_step_value) then
1238: fnd_message.set_name('PER','HR_449168_NO_UPDATE_STEP_VALUE');
1239: fnd_message.raise_error;
1240: else
1241: update_rating_level
1242: (p_language_code => l_language_code
1243: ,p_validate => p_validate