Thursday, September 20, 2018

Life cycle of a concurrent request In Oracle Apps

Life cycle of a concurrent request

A concurrent request proceeds through three, possibly four, life cycle stages or phases:
PendingRequest is waiting to be run
RunningRequest is running
CompletedRequest has finished
InactiveRequest cannot be run
Within each phase, a request's condition or status may change. Below appears a listing of each phase and the various states that a concurrent request can go through.

Concurrent Request Phase and Status

PhaseStatusDescription
PENDINGNormalRequest is waiting for the next available manager.
StandbyProgram to run request is incompatible with other program(s) currently running.
ScheduledRequest is scheduled to start at a future time or date.
WaitingA 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.
RUNNINGNormalRequest is running normally.
PausedParent request pauses for all its child requests to complete. For example, a report set pauses for all reports in the set to complete.
ResumingAll requests submitted by the same parent request have completed running. The Parent request is waiting to be restarted.
TerminatingRunning request is terminated, by selecting Terminate in the Status field of the Request Details zone.
COMPLETEDNormalRequest completes normally.
ErrorRequest failed to complete successfully.
WarningRequest completes with warnings. For example, a report is generated successfully but fails to print.
CancelledPending or Inactive request is cancelled, by selecting Cancel in the Status field of the Request Details zone.
TerminatedRunning request is terminated, by selecting Terminate in the Status field of the Request Details zone.
INACTIVEDisabledProgram to run request is not enabled. Contact your system administrator.
On HoldPending request is placed on hold, by selecting Hold in the Status field of the Request Details zone.
No ManagerNo manager is defined to run the request. Check with your system administrator.

No comments:

Post a Comment

SQL Important Queries

  How to delete rows with no where clause The following example deletes  all rows  from the  Person.Person  the table in the AdventureWork...