SELECT b.component_name,
c.parameter_name,
a.parameter_value
FROM fnd_svc_comp_param_vals a,
fnd_svc_components b,
fnd_svc_comp_params_b c
WHERE b.component_id = a.component_id
AND b.component_type = c.component_type
AND c.parameter_id = a.parameter_id
AND c.encrypted_flag = 'N'
AND b.component_name like '%Mailer%'
AND c.parameter_name in ('OUTBOUND_SERVER', 'REPLYTO')
ORDER BY c.parameter_name;
select component_status
from apps.fnd_svc_components
where component_id =
(select component_id
From Apps.Fnd_Svc_Components
where component_name = 'Workflow Notification Mailer');
select running_processes
from apps.fnd_concurrent_queues
Where Concurrent_Queue_Name = 'WFMLRSVC';
select message_type, mail_status, count(*) from wf_notifications
where status = 'OPEN'
Group By Message_Type, Mail_Status
No comments:
Post a Comment