DBA Data[Home] [Help]

APPS.AME_ATR_BUS dependencies on HR_MULTI_MESSAGE

Line 82: if hr_multi_message.exception_add

78: end if;
79: end if;
80: exception
81: when app_exception.application_exception then
82: if hr_multi_message.exception_add
83: (p_associated_column1 => 'ATTRIBUTE_ID') then
84: hr_utility.set_location(' Leaving:'|| l_proc, 50);
85: raise;
86: end if;

Line 142: if hr_multi_message.exception_add

138: fnd_message.raise_error;
139: end if;
140: exception
141: when app_exception.application_exception then
142: if hr_multi_message.exception_add
143: (p_associated_column1 => 'ATTRIBUTE_TYPE') then
144: hr_utility.set_location(' Leaving:'|| l_proc, 50);
145: raise;
146: end if;

Line 208: if hr_multi_message.exception_add

204: end if;
205: close c_sel1;
206: exception
207: when app_exception.application_exception then
208: if hr_multi_message.exception_add
209: (p_associated_column1 => 'ITEM_CLASS_ID') then
210: hr_utility.set_location(' Leaving:'|| l_proc, 50);
211: raise;
212: end if;

Line 278: if hr_multi_message.exception_add

274: end if;
275: close c_sel1;
276: exception
277: when app_exception.application_exception then
278: if hr_multi_message.exception_add
279: (p_associated_column1 => 'NAME') then
280: hr_utility.set_location(' Leaving:'|| l_proc, 50);
281: raise;
282: end if;

Line 358: if hr_multi_message.exception_add

354: end if;
355: close c_sel2;
356: exception
357: when app_exception.application_exception then
358: if hr_multi_message.exception_add
359: (p_associated_column1 => 'ATTRIBUTE_ID') then
360: hr_utility.set_location(' Leaving:'|| l_proc, 50);
361: raise;
362: end if;

Line 410: hr_multi_message.add;

406: Close C_Sel1;
407: If l_child_count >0 then
408: fnd_message.set_name('AME','AME_400523_ATT_ATTR_USG_EXIST');
409: fnd_message.set_token('TABLE_NAME','ame_attribute_usages');
410: hr_multi_message.add;
411: End If;
412: -- ame_mandatory_attributes
413: Open C_Sel2;
414: Fetch C_Sel2 into l_child_count;

Line 419: hr_multi_message.add;

415: Close C_Sel2;
416: If l_child_count >0 then
417: fnd_message.set_name('AME','AME_400170_ATT_MAND_CANT_DEL');
418: fnd_message.set_token('TABLE_NAME','ame_mandatory_attributes');
419: hr_multi_message.add;
420: End If;
421: -- ame_conditions
422: Open C_Sel3;
423: Fetch C_Sel3 into l_child_count;

Line 428: hr_multi_message.add;

424: Close C_Sel3;
425: If l_child_count >0 then
426: fnd_message.set_name('AME','AME_400524_ATT_COND_EXIST');
427: fnd_message.set_token('TABLE_NAME','ame_conditions');
428: hr_multi_message.add;
429: End If;
430: --
431: End chk_usages_exist;
432: --