I remember, 30th July 2006 is the first day Atul started blogging with his first post
http://becomeappsdba.blogspot.com/2006/07/how-2-become-oracle-apps-dba.html
In past 2 years, there is tremondous reponse from viewers from all over the world. I would like to congratulate and wish him all the best on this great occasion.
Today I want to post the Workflow Notification Mailer Configuration using Autoconfig for Outbound Processing in 11i. Oracle Workflow Notification Mailer is a Java Program, which is used to send e-mails and recive responses through e-mails for workflow notification system. Internally it is done through JavaMail API. If your workflow users want to get workflow notification mails, you need to configure workflow notification Mailer. Normally I have seen everybody configuring the same from Workflow Mailer Configuration Wizard using Oracle Application Manager. But Here I want to post simple procedure configuring the same using Autoconfig.
Note: If you are going to configure only one Workflow Notification Mailer and having smtp server running on default Port Number 25, then the following procedure is simple to configure. If it is not, then you have to configure Workflow Notification Mailer using Mailer Configuration Wizard using OAM.
If you configure through Mailer configuration wizard through OAM, Autoconfig overwrites its configuration. Because By default Autoconfig Context file contains smtp server name as Application Tier Hostname/Concurrent Manager Node Hostname. When you run autoconfig, it overwrites the smtp server hostname what you have configured through OAM with the value in Autoconfig Context File. I feel the following is the simple procedure to follow, which worked for me.(1) Take backup of existing Autoconfig Context Filelogin as APPLMGR User
$cd $APPL_TOP/admin
$cp <SID>_<hostname>.xml <SID>_<hostname>.xml.orig
(2) Edit the Autoconfig Context file with SMTP server name
$vi <SID>_<hostname>.xml
search for smtp and give smtp server details
s_smtphost ==> SMTP Server Host Name
s_smtpdomainname ==> SMTP Server Domain Name
Note: Above Same procedure can also be done by editing above context variables
in OAM > Site Map > System Configuration> Applications Autoconfig Context File
(3) Run the autoconfig
$cd $COMMON_TOP/admin/scripts/<SID>_<hostname>
$sh adautocfg.sh
(4) Bounce the Apache Service
$cd $COMMON_TOP/admin/scripts/<SID>_<hostname>
$sh adapcctl.sh stop apps/<apps password>
$sh adapcctl.sh start apps/<apps passwod>
(4) Start the following workflow Concurrent Managers
If the following Concurrent Managers are not activated or started before, activate and srart them
(a) Workflow Agent Listener Service
This is the seeded Workflow Notification Mailer Service component belongs to a container named Workflow Agent Listener Service
(b) Workflow Mailer Service
This is also seeded agent listener service component required for Workflow Mailer Processing
The above Services can be started using
(1) Using OAM > Site MAP > Wofkflow > Home > Service Components
or
(2) Using System Administrator Responsibility > Concurrent > Manager > Administer
That’s the procedure I did it and configured successfully workflow Notification Mailer.
Reference:
(1) Oracle Workflow Adminstrator’s Guide
http://download.oracle.com/docs/cd/B25284_01/current/acrobat/115wfag.pdf
(2) Oracle Workflow User’s Guide
http://download.oracle.com/docs/cd/B25284_01/current/acrobat/115wfug.pdf
(3) Note:313954.1 Autoconfig Overwriting The SMTP Server Name For The Java Mailer
Popularity: 13% [?]




Good hands-on exercises (installation, patching, cloning), very experienced trainer worth every penny
17 users commented in " Workflow Notification Mailer Configuration using Autoconfig for Outbound Processing "
Follow-up comment rss or Leave a TrackbackHow to make sure after configuring the Workflow Mailer , it does not send all the previous notification ?
James,
As mentioned in post http://onlineappsdba.com/index.php/2008/07/16/oracle-workflow-notification-mailer-outbound-processing
Workflow mailer sends emails only if
a) Notification status is OPEN or CANCELED and
b) Notification mail_status is MAIL or INVALID and
c) Recipient Role has a valid e-mail address and Notification Preference is in the format MAIL%
d) Workflow Deferred Agent Listener is running
e) Workflow Notification Mailer is running
If you donot want to send any previous notification
mail_status in table wf_notifications for all such notification to SENT .
Please try this on test first.
Thanks a lot.
–James
Hi James,
If you dont want to get the previous notifications in mail,find out the notifications which are waiting to be mailed.
issue the following query as apps user.
SQL> select notification_id, status, mail_status, begin_date
from WF_NOTIFICATIONS
where status = ‘OPEN’ and mail_status = ‘MAIL’;
The above query will show you the notification which are in waiting to be mailed.
If you dont want to get those notifications in mail, set MAIL_STATUS=’SENT’
sql> update WF_NOTIFICATIONS set mail_status = ‘SENT’ where mail_status = ‘MAIL’;
Once you set the mail status as ‘SENT’, Notification mailer will not pick up these records.
Hope the above helps.
Good Luck.
Regards,
Subbarao
Hi SubbaRao,
I am surprised that you remember dates. Thanks a lot for your wishes.
Thank you Atul.
Hi,
I need to change workflow from address..
I will explain every thing.
This is my current workflow mail.
From: Workflow Mailer - MLI[SMTP:NOBODY@MSWSLX04.MACSTEELUSA.COM]
Sent: Thursday, December 11, 2008 5:14:43 PM
To: Danny Cho
Subject: Action Required: Message for Testing Notification Mailer Auto forwarded by a Rule
I want to remove the From: workflow Mailer and replace our custom name. Please help me on this.
Quick reply is appriciated.
Thanks
Venkat
Hi Autul,
when Iam trying to start WF it is showing as
Name Actul Target
Workflow Agent Listener Service 0 1
Workflow Mailer 0 1
Workflow Mailer Service 0 1
Regards
Kumar
Autl,
When iam checking APPLCSF/logs iam getting following error, please help me
status=Running, de
buglevel= Error Done.wferr:
- WFXXX_DB_CONNECT CODE=1017 CONNECT=APPS
Application Object Library: Concurrent Processing version 11.5
Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
Oracle Workflow Notification Mailer Concurrent Manager started : 31-DEC-2008 18:42:26
+—————————————————————————+
cpid=741379, logfile=/oraprod/oracle/finprdcomn/
admin/log/orauat_CNDAAIOEWRFR08/
WFMAILER741379.txtparams=, status=Running, de
buglevel= Error Done.wferr:
- WFXXX_DB_CONNECT CODE=1017 CONNECT=APPS
~
Kumar,
It seems you are trying to start WF from administer concurrent manager screen.
Use OAM to start/stop WF
check metalink note # 405485.1 WFXXX_DB_CONNECT CODE=1017 CONNECT=Apps when Trying to Start Workflow Mailer
Hi,
I have a requirement where i need to supress mails been sent from a particular item type.
Hence i would like to know if its possible to update the mail status immmediately to SENT for that particualr notification?
AS in once the workflow returns to my code just after sending the notification i am updating the status. WIll the window between these two events let the mailer pick up the reords and send them?
Thanks a lot
Priya
HI
I have a requirement to send output of concurrent request via mail.
Now when I set a notifcation its coming as url
like
Request number 12558616 (Active Users) completed at 09:23:25 on
09-JUN-09 with a status of Normal. This request was submitted by SYSADMIN. The report may be viewed at the following URL :
http://test.oradom.com:8000/OA_CGI/FNDWRR.exe?temp_id=1406994154.
I would like to get detailed output in the mail.
I am sure it was coming for some other clients.
But I am not sure what configuration changes are required for this setting.
I changed the Preference and tried out ..but was not working.
Any clue?
Thank
Hi,
There is a metalink note, can you check and see if it helps, I did not try this before.
How To Send Concurrent Request Output via Email?
https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=811716.1
Regards,
SubbaRao
Hi Recently change the IMAP server name through OAM. Since then Workflow mailer start to play up. We do cold backup. After the cold back Notification mailer does not start autometically. So every morning we have to start it manually. Once start it stays up all day till the next backup start.
I ran statement level trace, could not find anything unusual.
Any idead?
Regards
Kavi
Edit the configuration
Workflow Notification mailer –> edit –>. change configuration to automatic startup for IMAP server
Hi atul
i have already activated the notification mailer but how can i set email-address to send mail to user.i want to send mail to hotmail account.notification mailer is in running mode
Leave A Reply