DBA Data[Home] [Help]

APPS.AME_CALLING_APPS_API dependencies on AME_ACTION_TYPES

Line 486: from ame_action_types aat

482: aat.created_by,
483: aat.last_updated_by,
484: aat.start_date,
485: aat.end_date
486: from ame_action_types aat
487: where aat.start_date =
488: (select max(start_date)
489: from ame_action_types aat2
490: where aat.action_type_id = aat2.action_type_id)

Line 489: from ame_action_types aat2

485: aat.end_date
486: from ame_action_types aat
487: where aat.start_date =
488: (select max(start_date)
489: from ame_action_types aat2
490: where aat.action_type_id = aat2.action_type_id)
491: and ((end_date is null)
492: or (aat.start_date <> aat.end_date))
493: order by aat.action_type_id;