$FND_TOP/sql/wfver.sql
check workflow status.
set linesize 120
set pagesize 50
column COMPONENT_NAME format a45
column STARTUP_MODE format a15
column COMPONENT_STATUS format a15
select fsc.COMPONENT_NAME,fsc.STARTUP_MODE,fsc.COMPONENT_STATUS,fcq.last_update_date
from APPS.FND_CONCURRENT_QUEUES_VL fcq, fnd_svc_components fsc
where fsc.concurrent_queue_id = fcq.concurrent_queue_id(+)
order by COMPONENT_STATUS , STARTUP_MODE , COMPONENT_NAME;
col value format a20select p.parameter_id,p.parameter_name,v.parameter_value valuefrom apps.fnd_svc_comp_param_vals_v v,apps.fnd_svc_comp_params_b p,apps.fnd_svc_components cwhere c.component_type = ‘WF_MAILER’and v.component_id = c.component_idand v.parameter_id = p.parameter_idand p.parameter_name in ( ‘INBOUND_SERVER’,’ACCOUNT’, ‘REPLYTO’)order by p.parameter_name;
set linesize 170
col name format a40
col email_address format a80
select name, email_address from apps.wf_local_roles where email_address like ‘% %’;select name, email_address from apps.wf_local_roles where email_address like ‘%%’;
“If this retuning Row The there’s bad Email”
How to know mail sent to a user with details:
select name, display_name, notification_preference, email_addressfrom wf_local_roles where name = ”;
To see failed, open notifications
SELECT message_type, COUNT(1)
FROM apps.wf_notifications
WHERE 1 = 1 AND mail_status = ‘FAILED’ AND status = ‘OPEN’
GROUP BY message_type;
To check if email address, notification preference, display_name
select DISPLAY_NAME, NOTIFICATION_PREFERENCE from wf_users where EMAIL_ADDRESS = ‘HR@domainname.com‘ and STATUS = ‘ACTIVE’ and DISPLAY_NAME = ‘xxxxx’;select DISPLAY_NAME, NOTIFICATION_PREFERENCE, EMAIL_ADDRESS from wf_users where NOTIFICATION_PREFERENCE=’MAILTEXT’ and STATUS = ‘ACTIVE’;select distinct(count(*)) from wf_users where NOTIFICATION_PREFERENCE=’MAILTEXT’ and STATUS = ‘ACTIVE’ and EMAIL_ADDRESS = ‘HR@Domainname.com‘;
Thank you
Osama mustafa
Thanks for sharing your thoughts and articles. Your great.andreahttp://www.triciajoy.com
LikeLike
You have done a great work. Thanks for making this blog. You helped me a lot on my research topic. Keep it up guys!Sayhttp://www.imarksweb.org
LikeLike