zoukankan      html  css  js  c++  java
  • 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等几种状态。

  • 相关阅读:
    hihocoder1238 Total Highway Distance(树形dp)
    POJ2104 K-th Number(主席树)
    ansible安装使用入门
    TIDB资料收集
    elasticssearch+kibanna入门(撰写中)
    fabric-sdk-java在IDEA中的使用
    安装hyperledger fabric V1.0.1
    fabric读书笔记
    fabric默认样例的分析
    在eclipse中安装go编辑器阅读fabric代码
  • 原文地址:https://www.cnblogs.com/echochen/p/2049537.html
Copyright © 2011-2022 走看看