enable fnd debug messages

Post on 07-Sep-2015

225 Views

Category:

Documents

1 Downloads

Preview:

Click to see full reader

DESCRIPTION

FND

TRANSCRIPT

1. Enable FND Debug messages:-> Navigate Responsibility: System Administrator > Profile > System-> Query for:User: User submitting the ReportProfile: FND:%Debug%

2. Set the following Profile values at the user level:

FND: Debug Log Enabled YesFND: Debug Log Filename FND: Debug Log Level STATEMENTFND: Debug Log Module %At site level set:FND: Debug Log Mode Asynchronous with Cross-Tier Sequencing.

3. Save.

4. Run the following SQL query to get the currentlog sequence in the FND table, and note the resultas before_value:

select max(log_sequence) from fnd_log_messageswhere user_id=(select user_id from fnd_userwhere user_name='&USER');34948713496177

5. Login with user, and reproduce the issue.Once this is reproduced, log out, to avoidunnecessary information in logs.

6. Run the following SQL query to get the currentlog sequence in the FND table, and note the resultas after_value:

select max(log_sequence) from fnd_log_messageswhere user_id=(select user_id from fnd_userwhere user_name='&USER');

7. Disable FND Debug messages by setting Profile valueFND: Debug Log Enabled to No.

8. Replace in the following query before_value with before_value resultfrom Step 4 and after_value with after_value result from Step 6:

select log_sequence,module,message_textfrom fnd_log_messageswhere log_sequence > before_valueand log_sequence < after_value ;

9. After modifying the above query run it, export the outputin an Excel file, and attach with the SR.

top related