Oracle EBS WIP模块Debug Log收集方法

php中文网
发布: 2016-06-07 17:15:33
原创
1276人浏览过

How to generate WIP debug log files in ONLINE cases? For 11.5.10 and above, the WIP debug log files will be created if

how to generate wip debug log files in online cases?
for 11.5.10 and above, the wip debug log files will be created if
    1. fnd: debug log filename = (make sure this is null)
    2. fnd: debug log enabled = yes
    3. fnd: debug log level = statement
    4. fnd: debug log module = wip%
to get the log file, run the following sql script. this will create an output called moveon.txt
        set pagesize 500
        col message_text format a99
        spool moveon.txt
        select message_text from fnd_log_messages where audsid=&audsid order by log_sequence;
    spool off
       to get the audsid in online cases
        navigate to help > about oracle applications 
·        note audsid under database server and use it in the above sql.
        to get the log messages for mobile applications
               1. get the maximum log sequence number using the following sql just before performing the test case and make a note of it.
                     select max(log_sequence)  from fnd_log_messages;
               2. to get the log file,run the following sql script.
                   set pagesize 500
                   col message_text format a99
                   spool log.txt
           select message_text from fnd_log_messages where log_sequence > &log_sequence;
           use the log_sequence number which is obtained from the point 1.           
note: for 11.5.9 and prior, there will be no wip debug log files generated for online cases.

how to generate wip log files in background cases?
     for 11.5.10 and above, the wip debug log files will be created if
     1.  fnd: debug log filename = (make sure this is null)
     2.  fnd: debug log enabled= yes
     3.  fnd: debug log level = statement
     4.  fnd: debug log module = wip%
          to get the log file, run the following sql script. this will create an output called movebg.txt
            set pagesize 500
            col message_text format a99
            spool movebg.txt
            select message_text from fnd_log_messages where audsid=(select oracle_session_id from fnd_concurrent_requests where   
          request_id = &concurrent_request_id) order by log_sequence;
            spool off
    for 11.5.9 and prior, the wip debug log files will be created if
      1.  tp: wip concurrent message level = message level 2
      2.  tp: wip debug directory = "valid directory from v$parameter"
               you can use the following query to find out a valid directory.
                select value from v$parameter where name=utl_file_dir;
     3.  tp:wip debug file = "valid filename"
     4.  mrp: debug mode = yes

linux

最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号