OA_SUBMIT_REQUEST

Sends a request for executing a concurrent program in Oracle Applications.

Syntax

OA_SUBMIT_REQUEST

 

Syntax

Description/Format

APPLICATION=

The name of application to which the program that should run belongs.
Format: script literal

PROGRAM=

The name of the concurrent program that should run.
Format: script literal

DESCRIPTION=

A description of concurrent process. This description is shown online in the concurrent request form.
Format: script literal

ARG1=
:
ARGn=

Any parameters for the concurrent program.
These could be functions, constants, keywords etc.
Example: chr(0), ZERO, 'abc', NAME_IN('ORDERS.ORDER_ID'), 123
Format: script literal

Comments

This script element creates a process request for a concurrent program in Oracle Applications and monitors the execution. AE recognizes the end of the concurrent process with the help of the phase and the accompanying status.

The parameters for ARG1 to ARGn must be put in double quotation marks that are followed by single quotation marks (unless they are variables).

Examples

In the following example, the concurrent program "MYPROG" should be executed in Oracle Applications. Additionally, the description and a second parameter will be passed on.

OA_SUBMIT_REQUEST APPLICATION='FND',PROGRAM='MYPROG',DESCRIPTION="'Sunday run of AE'",ARG1="'602'"

The following example shows the usage of quotation marks with the parameter ARG1.

OA_SUBMIT_REQUEST APPLICATION='FND',PROGRAM='FNDPRNEV',ARG1="'PRINTER'"

 

See also: