Concurrent Request log of the concurrent program where delivery options were set
--
+------------- 2) DELIVER -------------+
Emailing output to xyz@abc.com
..............
..............
One or more post-processing actions failed. Consult the OPP service log for details.
--
Get the OPP service log
-----------------------
SYstem Administrator > Concurrent > Manager > Administer
>> Select Outout Post Processor > Click on 'Processes'
>> Now click on the 'Manager Log' and look for your request id and error details.
OPP log giving below error.
oracle.apps.fnd.cp.opp.PostProcessorException: Unable to determine SMTP server to use: set FND_SMTP_HOST
Fix
---
You just need to set below profile options
(SYstem Administrator > Profile > System)
FND: SMTP Host
FND: SMTP Port
How to get the SMTP Host Name
-----------------------------
Application
-----------
Oracle Application Manager > Workflow
>> Click on the 'Notification Mailers'
>> Click on "Workflow Notification Mailer"
>> Check 'EMail Servers' section
>> Check Outbound EMail Account
>> Get the value 'Outbound Server Name'
Database
--------
select fscpv.parameter_value "SMTP Host Name"
--SMTP protocol uses default port number 25 for outgoing emails
,25 "SMTP Port Number"
,fscpt.description
from fnd_svc_comp_params_tl fscpt
,fnd_svc_comp_param_vals fscpv
where fscpt.parameter_id = fscpv.parameter_id
and fscpt.display_name = 'Outbound Server Name' --'Inbound Server Name'
and fscpt.language = 'US';
Its helpful, Thanks bro
ReplyDeletegreat post
ReplyDelete