Sie sind auf Seite 1von 1

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
FND: Debug Log
FND: Debug Log
FND: Debug Log
At site level set:
FND: Debug Log

Enabled Yes
Filename <empty>
Level STATEMENT
Module %
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
from fnd_log_messages
where log_sequence > before_value
and log_sequence < after_value ;
9. After modifying the above query run it, export the output
in an Excel file, and attach with the SR.

Das könnte Ihnen auch gefallen