并发管理的并发请求表 fnd_concurrent_requests,这个表有三个时间列
Posted wangchuangyunhai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了并发管理的并发请求表 fnd_concurrent_requests,这个表有三个时间列相关的知识,希望对你有一定的参考价值。
并发管理的并发请求表fnd_concurrent_requests,这个表存在三个时间:
requested_start_date --The date and time when users want the request to start running(用户希望请求开始运行的日期和时间)
request_date --Concurrent request submission date(并发请求提交日期)
ACTUAL_START_DATE --The actual time and date when the request started running(请求开始运行的实际时间和日期)
问题:请求启动时间与请求时间相比,有时候启动时间小于请求时间,有时候启动时间大于请求时间
解决:查看请求状态,请求状态的对应关系是--
PENDING(待定) Normal(正常) Request is waiting for the next available manager.(请求正在等待下一个可用的管理器。)
PENDING(待定) Standby(正在等待准备) Program to run request is incompatible with other program(s) currently running.(运行请求的程序与当前运行的其他程序不兼容。)
PENDING(待定) Scheduled(调度) Request is scheduled to start at a future time or date.(请求计划在将来的时间或日期开始。)
PENDING(待定) Waiting(等待中) A child request is waiting for its Parent request to mark it ready to run. For example, a report in a report set that runs sequentially must wait for a prior report to complete.(子请求正在等待其父请求将其标记为准备运行。 例如,按顺序运行的报表集中的报表必须等待先前的报表完成。)
当为待定正常时候,启动时间大于请求时间,说明计划请求已经到了提交时间,但是要等待管理器才能开始。ACTUAL_START_DATE无值
当为待定正在等待时候,启动时间小于请求时间,说明计划请求请求已经开始时间已经到了,但是需要等待其他请求完成才能提交。ACTUAL_START_DATE无值
当为运行正常的时候,启动时间等于请求时间。ACTUAL_START_DATE有值
以上是关于并发管理的并发请求表 fnd_concurrent_requests,这个表有三个时间列的主要内容,如果未能解决你的问题,请参考以下文章