DBA Data[Home] [Help]

APPS.AME_ATY_SHD dependencies on AME_ACTION_TYPE_CONFIG

Line 413: from ame_action_type_config

409: nvl(end_date - ame_util.oneSecond, p_start_date);
410: --
411: Cursor C_Sel5 is
412: select count(*)
413: from ame_action_type_config
414: where action_type_id = p_action_type_id and
415: p_start_date between start_date and
416: nvl(end_date - ame_util.oneSecond, p_start_date);
417: l_child_count integer;

Line 458: -- ame_action_type_config

454: fnd_message.set_name('PAY','HR_7215_DT_CHILD_EXISTS');
455: fnd_message.set_token('TABLE_NAME','ame_mandatory_attributes');
456: hr_multi_message.add;
457: End If;
458: -- ame_action_type_config
459: Open C_Sel5;
460: Fetch C_Sel5 into l_child_count;
461: Close C_Sel5;
462: If l_child_count > 0 then

Line 464: fnd_message.set_token('TABLE_NAME','ame_action_type_config');

460: Fetch C_Sel5 into l_child_count;
461: Close C_Sel5;
462: If l_child_count > 0 then
463: fnd_message.set_name('PAY','HR_7215_DT_CHILD_EXISTS');
464: fnd_message.set_token('TABLE_NAME','ame_action_type_config');
465: hr_multi_message.add;
466: End If;
467: --
468: End child_rows_exist;