50% found this document useful (2 votes)
3K views

AME

This document contains SQL queries to select all records from various tables in a database for an application that manages transactions, approvals, and rules. The tables include records of actions, action types, approvals, attributes, conditions, configurations, exceptions, help information, items, rules, and more. Some queries filter by a specific user ID or time period.

Uploaded by

rv90470
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
50% found this document useful (2 votes)
3K views

AME

This document contains SQL queries to select all records from various tables in a database for an application that manages transactions, approvals, and rules. The tables include records of actions, action types, approvals, attributes, conditions, configurations, exceptions, help information, items, rules, and more. Some queries filter by a specific user ID or time period.

Uploaded by

rv90470
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

select * from AME_ACTIONS

select * from AME_ACTIONS_TL


select * from AME_ACTION_TYPES
select * from AME_ACTION_TYPES_TL
select * from AME_ACTION_TYPE_CONFIG
select * from AME_ACTION_TYPE_USAGES
select * from AME_ACTION_USAGES
select * from AME_APPROVALS_HISTORY
select * from AME_APPROVAL_GROUPS
select * from AME_APPROVAL_GROUPS_TL
select * from AME_APPROVAL_GROUP_CONFIG
select * from AME_APPROVAL_GROUP_ITEMS
select * from AME_APPROVAL_GROUP_MEMBERS
select * from AME_APPROVER_TYPES
select * from AME_APPROVER_TYPE_USAGES
select * from AME_ATTRIBUTES
select * from AME_ATTRIBUTES_TL
select * from AME_ATTRIBUTE_USAGES
select * from AME_CALLING_APPS
select * from AME_CALLING_APPS_TL
select * from AME_CONDITIONS
select * from AME_CONDITION_USAGES
select * from AME_CONFIG_VARS
select * from AME_CONFIG_VARS_TL
select * from AME_EXCEPTIONS_LOG
select * from AME_FIELD_HELP
select * from AME_HELP
select * from AME_ITEM_CLASSES
select * from AME_ITEM_CLASSES_TL
select * from AME_ITEM_CLASS_USAGES

select * from AME_MANDATORY_ATTRIBUTES


select * from AME_REC_ACCESS_TRANS
select * from AME_RULES
where last_updated_by = 31326
order by creation_date desc
where TRUNC(creation_date)>= TRUNC(SYSDATE)-10
select * from AME_RULES_TL
where last_updated_by = 31326
and language = 'US'
select * from AME_RULE_USAGES
where last_updated_by = 31326
order by creation_date desc
select * from AME_STRING_VALUES
select * from AME_TEMP_DELETIONS
select * from AME_TEMP_HANDLER_STATES
select * from AME_TEMP_INSERTIONS
select * from AME_TEMP_OLD_APPROVER_LISTS
select * from AME_TEMP_TRANSACTIONS
select * from AME_TEMP_TRANS_ATT_VALUES
select * from AME_TEMP_TRANS_LOCKS
select * from AME_TEST_TRANSACTIONS
select * from AME_TEST_TRANS_ATT_VALUES
select * from AME_TRANS_APPROVAL_HISTORY
select * from AME_TXN_APPROVERS

You might also like