Concurrent Program

FND_REQUEST or FND_DELIVERY to Email Oracle Concurrent Request Output

Emailing concurrent request output is a common requirement in any business. You can email a concurrent request output in Oracle Apps using Delivery Options while submitting the requestor using API FND_REQUEST.ADD_DELIVERY_OPTION or FND_DELIVERY. You should use this API when you are submitting a concurrent request from the backend using PL/SQL. I will explain how to […]

FND_REQUEST or FND_DELIVERY to Email Oracle Concurrent Request Output Read More »

Why you get program exited with status 127 error in Oracle Apps concurrent program

Oracle apps provide an option to define a concurrent program with a host as an execution option. For Linux, you can create a shell script and define the program on it. Many times a new developer ends with a Program exited with status 127 error while running the host-based concurrent program. In this article, let’s explore

Why you get program exited with status 127 error in Oracle Apps concurrent program Read More »

FND_FILE – create log and output file in Concurrent Program (Oracle Apps)

FND_FILE is a built-in package provided in Oracle Apps/E-Business Suite to write log and output files in PL/SQL concurrent program. This is actually a wrapper on UTL_FILE to write files on the Unix server. You can open the log and output file using navigation View -> Requests -> Find. Select the respective request on the

FND_FILE – create log and output file in Concurrent Program (Oracle Apps) Read More »

Operating Unit Mode parameter in Concurrent Program – MOAC (Multi-Organization Access Control)

Recently upgraded from Oracle Applications (apps) version 11.5.10 (11i) to 12.1.3. (R12). You observed that your concurrent programs not working, you are not able to see any value in some of the parameters of concurrent programs? Is anything wrong with Upgrade? No. There is nothing wrong with the upgrade. Oracle E-Business suite introduced MOAC (Multi-Organization Access

Operating Unit Mode parameter in Concurrent Program – MOAC (Multi-Organization Access Control) Read More »

Concurrent program executable options in Oracle Apps

You might have noticed Executable options field while defining a concurrent program in Oracle Apps. What is the significance of executable options? Introduction Executable options allow passing runtime parameter to executable. Mostly it is used for executable based on Oracle Report or XML Publisher. In this article, let’s see the significance of executable options field

Concurrent program executable options in Oracle Apps Read More »