How to enable debug log in Oracle apps EBS
•By admin
How to enable debug log in Oracle apps EBS
fnd debug log enabled
How to enable debug mode in Oracle Apps R12
How to enable Debug for Concurrent program in Oracle apps
Debug profile option in Oracle apps
Set below profile option values to debug everything :
FND: Debug Log Enabled YES
FND: Debug Log Filename NULL
FND: Debug Log Level STATEMENT
FND: Debug Log Module %
Set below profile option values to debug ONLY Receivables :
FND: Debug Log Enabled YES
FND: Debug Log Filename NULL
FND: Debug Log Level STATEMENT
FND: Debug Log Module ar%
SQL Querysql
1--Run the below query before running test case and note down the sequence number
2
3SELECT MAX(LOG_SEQUENCE) before_seq
4FROM FND_LOG_MESSAGES;
5
6--Run your test case
7
8--Run the below query after running test case and note down the sequence number
9
10SELECT MAX(LOG_SEQUENCE) after_seq
11FROM FND_LOG_MESSAGES;
12
13-- Retrieve the debug messages for a concurrent REQUEST ID:
14
15SELECT log.module, log.message_text message
16FROM fnd_log_messages log,
17 fnd_log_transaction_context con
18WHERE con.transaction_id = &request_id
19AND con.transaction_type = 'REQUEST'
20AND con.transaction_context_id = log.transaction_context_id
21ORDER BY log.log_sequence;
22
23-- Otherwise, retrieve debug messages using a log_sequence range:
24
25SELECT module, message_text
26FROM fnd_log_messages
27WHERE log_sequence between &before_seq and &after_seq
28ORDER BY log_sequence;Related posts:
- Register a test concurrent program from backend in Oracle EBS
- Supervisor Hierarchy and Approval Limits in Oracle EBS R12
- Query to find vacation rules in Oracle R12
- View java class source in oracle database
- Load Java source code in oracle database
- Query to find all APIs of Oracle Apps modules
- OAF customizations queries
- Oracle apps list of concurrent programs in a Request Set
- Query to get Organization Hierarchy in Oracle apps
- Oracle apps query to find incompatible programs blocking a concurrent request
- Form function attached to which responsibility and user
- Query to find the responsibility attached to user in oracle apps