zoukankan      html  css  js  c++  java
  • EBS调试

    一、在请求中的调试:

    1、用系统函数fnd_file.PUT_LINE(),然后在请求的查看日志中就可以看到

          例如: fnd_file.PUT_LINE(fnd_file.log, l_customer_type);    其中l_customer_type就是要查看的变量。

    2、先建一张表,然后在程序中执行插入语句,将着眼查看的变量插入表中

          例如:insert into zzx_log values ('l_count_fle', l_count_fle);其中,l_count_fle就是要查看的标量

    一、在FORM中的调试:

    1、用系统函数fnd_message.set_string(),或fnd_message.debug() 然后当执行到这个断点的时候,会弹出窗口显示调试信息

           例如:fnd_message.set_string('存在匹配差异:' || :control.match_diff ||  ',无法继续');

  • 相关阅读:
    服务管理器
    自动启动管理器
    进程管理器
    进程模块查看器
    无DLL远程注入
    远程DLL注入
    U盘免疫
    WSAAsyncSelect Demo
    select Demo
    校正系统时间
  • 原文地址:https://www.cnblogs.com/quanweiru/p/2739193.html
Copyright © 2011-2022 走看看