DBA Data[Home] [Help]

APPS.AME_CALLING_APPS_API dependencies on AME_ATTRIBUTES

Line 497: from ame_attributes

493: order by aat.action_type_id;
494: -- REJECTION_RESPONSE
495: cursor getRejectionAttributeId is
496: select attribute_id
497: from ame_attributes
498: where name = ame_util.rejectionResponseAttribute
499: and (sysdate between start_date
500: and nvl(end_date - (1/86400),sysdate));
501: -- USE_WORKFLOW

Line 504: from ame_attributes

500: and nvl(end_date - (1/86400),sysdate));
501: -- USE_WORKFLOW
502: cursor getUseWorkflowId is
503: select attribute_id
504: from ame_attributes
505: where name = ame_util.useWorkflowAttribute
506: and (sysdate between start_date
507: and nvl(end_date - (1/86400),sysdate));
508: --REPEAT_SUBSTITUTIONS

Line 511: from ame_attributes

507: and nvl(end_date - (1/86400),sysdate));
508: --REPEAT_SUBSTITUTIONS
509: cursor getRepeatSubAttributeId is
510: select attribute_id
511: from ame_attributes
512: where name = 'REPEAT_SUBSTITUTIONS'
513: and (sysdate between start_date
514: and nvl(end_date - (1/86400),sysdate));
515: authorityRuleTypeCount integer :=0;