If somehow, you are not able to access Oracle EBS front-end then you can use below scripts to Start/Stop Oracle EBS Workflow Mailer Components from Back-end Database:
Get the details of Oracle EBS Workflow Mailer Components:
Get the details of Oracle EBS Workflow Mailer Components:
col component_name for a20; col COMPONENT_STATUS for a20; select COMPONENT_NAME, COMPONENT_STATUS,Component_Id from fnd_svc_components;
Connect to APPS schema then execute below to Start Workflow Mailer Component:
declare l_Component_Id number :=10006; --Enter workflow Component_Id which needs to be started l_errcode number; l_errstr varchar2(4000); begin FND_SVC_COMPONENT.Start_Component(l_Component_Id, l_errcode, l_errstr); commit; end; /
Connect to APPS schema then execute below to Stop Workflow Mailer Component:
declare l_Component_Id number :=10006; --Enter workflow Component_Id which needs to be stopped l_errcode number; l_errstr varchar2(4000); begin FND_SVC_COMPONENT.Stop_Component(l_Component_Id, l_errcode, l_errstr); commit; end; /
Is this supported by Oracle ? Can you please share the metalink ID
ReplyDelete