-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathFND Application Context File.sql
More file actions
27 lines (26 loc) · 1.03 KB
/
FND Application Context File.sql
File metadata and controls
27 lines (26 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*************************************************************************/
/* */
/* (c) 2010-2024 Enginatics GmbH */
/* www.enginatics.com */
/* */
/*************************************************************************/
-- Report Name: FND Application Context File
-- Description: Context XML files retrieved from the database
-- Excel Examle Output: https://www.enginatics.com/example/fnd-application-context-file/
-- Library Link: https://www.enginatics.com/reports/fnd-application-context-file/
-- Run Report: https://demo.enginatics.com/
select
focf.name,
focf.version,
focf.path,
focf.last_synchronized,
decode(focf.ctx_type,'D','Database','A','Application') type,
focf.edit_comments,
focf.text
from
fnd_oam_context_files focf
where
focf.status='S' and
focf.name not in ('TEMPLATE','METADATA')
order by
focf.ctx_type