DBA Data[Home] [Help]

APPS.FND_AUDIT_REPORT dependencies on FND_APPLICATION

Line 92: from fnd_audit_groups g, fnd_audit_tables t, fnd_tables b, fnd_application a

88: where g.group_name = nvl(p_group_name, g.group_name);
89:
90: cursor c1 (p_group_name varchar2) is
91: select g.group_name, b.table_name, g.audit_group_id, t.table_id, a.application_short_name
92: from fnd_audit_groups g, fnd_audit_tables t, fnd_tables b, fnd_application a
93: where g.audit_group_id = t.audit_group_id
94: and t.table_id = b.table_id
95: and g.group_name = p_group_name
96: and t.table_app_id = a.application_id;