如何启用及查看Oracle EBS 诊断日志(Dialogic Log)


如何启用及查看Oracle EBS 诊断日志(Dialogic Log)
  1. o Set profile options at USER level:  
  2.   
  3. FND: Debug Log Enabled : Yes  
  4. FND: Debug Log Level : Statement  
  5. FND: Log Module : %  
  6.   
  7. o Run:  
  8. select max(log_sequence) from fnd_log_messages ; — start  
  9.   
  10. o Reproduce the issue (Support References Balances return no data)   
  11.   
  12. o Run:  
  13. select max(log_sequence) from fnd_log_messages ; — end  
  14.   
  15. o Run the following to get full FND log:  
  16.   
  17. select * from fnd_log_messages where log_sequence between <start> and <end>;   

相关内容