• FND_CONCURRENT.WAIT_FOR_REQUEST的说明


    以下部分英文说明来自Oracle EBS Developer's Guide

    1: function FND_CONCURRENT.WAIT_FOR_REQUEST

       2:  (request_id IN number default NULL,
       3:            interval   IN number default 60,
       4:            max_wait   IN number default 0,
       5:            phase      OUT varchar2,
       6:            status     OUT varchar2,
       7:            dev_phase  OUT varchar2,
       8:            dev_status OUT varchar2,
       9:            message    OUT varchar2) return  
      10:  boolean;

    Description  Waits for request completion, then returns the request phase/status and completion message to the caller. Goes to sleep between checks for request completion.


    Arguments (input)
    request_id            The request ID of the request to wait on.

    interval                  Number of seconds to wait between checks (i.e., number of  seconds to sleep.)

    max_wait             The maximum time in seconds to wait for the request's completion.


    Arguments (output)
    phase                   The user-friendly request phase from the FND_LOOKUPS table.

    status                   The user-friendly request status from the FND_LOOKUPS table.

    dev_phase          The request phase as a constant string that can be used for program logic comparisons.

    dev_status          The request status as a constant string that can be used for program logic comparisons.

    message              The completion message supplied if the request has already completed.

    dev_phase有Pending,Running,Complete,Inactive等几种,每种对应不同的Dev-Status,比如Complete阶段后就有Normal,Error,Warning,Cancelled,Terminated等几种状态。

  • 相关阅读:
    strcmp()比较函数和strcasecmp()和strnatcmp()
    substr()函数
    改变字符串中的字母大小写
    explode()与相反函数 implode() 和join()
    PHP nl2br() 函数
    PHP trim() 函数
    PHP的count(数组)和strlen(字符串)的内部实现
    变量处理函数库
    php中定义数组的方法
    80端口的烦恼:[3]清除NT Kernel占用80端口
  • 原文地址:https://www.cnblogs.com/echochen/p/2049537.html
Copyright © 2020-2023  润新知