enable fnd debug messages

2
1. Enable FND Debug messages: -> Navigate Responsibility: System Administrator > Profile > System -> Query for: User: User submitting the Report Profile: FND:%Debug% 2. Set the following Profile values at the user level: FND: Debug Log Enabled Yes FND: Debug Log Filename <empty> FND: Debug Log Level STATEMENT FND: 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 current log sequence in the FND table, and note the result as before_value: select max(log_sequence) from fnd_log_messages where user_id=(select user_id from fnd_user where user_name='&USER'); 3494871 3496177 5. Login with user, and reproduce the issue. Once this is reproduced, log out, to avoid unnecessary information in logs. 6. Run the following SQL query to get the current log sequence in the FND table, and note the result as after_value: select max(log_sequence) from fnd_log_messages where user_id=(select user_id from fnd_user where user_name='&USER'); 7. Disable FND Debug messages by setting Profile value FND: Debug Log Enabled to No. 8. Replace in the following query before_value with before_value result from Step 4 and after_value with after_value result from Step 6: select log_sequence,module,message_text

Upload: ajay-singh

Post on 07-Sep-2015

225 views

Category:

Documents


1 download

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.