0% found this document useful (0 votes)
2K views

Sending Output of Concurrent Programs Via Email

The document describes how to configure a concurrent program in Oracle Applications to send its output as an email attachment. It involves creating a shell script, executable, and concurrent program that takes parameters like the request ID, output file type, email ID, and subject. Calling the concurrent program will trigger sending the output file to the specified email. A lookup table can control which programs' outputs get emailed and to which addresses.
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2K views

Sending Output of Concurrent Programs Via Email

The document describes how to configure a concurrent program in Oracle Applications to send its output as an email attachment. It involves creating a shell script, executable, and concurrent program that takes parameters like the request ID, output file type, email ID, and subject. Calling the concurrent program will trigger sending the output file to the specified email. A lookup table can control which programs' outputs get emailed and to which addresses.
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Sending Output of Concurrent Programs as Email Attmt

Blog : http://oracleapps-atechniciansview.blogspot.com

Author : Ashish Harbhajanka Sending Output Of Concurrent Programs Via Email

Email : [email protected]

While working on Oracle Applications E- Business Suite it is a very common requirement that we want to send the output of a concurrent program as an email attachment to specific email id.

This requirement can be easily achieved by creating a shell script which will take the output file and send email to the subscribers.

For this you have to follow the below mentioned steps: a) Create a Executable with execution file type as Host. b) Create a Concurrent program which will have parameters as Request ID(for normal request whose output is stored in fnd_concurrent requests) , Output Request ID ( for XML based concurrent requests where otput is stored in fnd_conc_request_outputs), Attachment type( LOG/OUT for Log file and output file respectively, Email Id ( email id to whom request needs to be send, Email Subject (Email Subject)

Now whenever you will call this concurrent program passing the correct parameters you will be able to send the output to email id.

Moreover, in order to have the control you can have flexibility to control which concureent programs output you want to send via email and the corresponding email id create a lookup

Lookup Type : XXC_GET_SUBSCRIBERS

Code : 10,20,30 ..etc Meaning : 10,20,30...etc Description : Concurrent program Name whose output needs to be send Tag : Email ID to which the concurrent program output will be send.

Attaching the shell script program for ready reference.

Please save the above file in desktop and open with textpad , wordpad, notepad.

You might also like