KIMYONG: Outbound Workflow Notification Event Message 를 tracking하는 방법

Purpose
Outbound Workflow Notification Event Message 가 발송됐으나 user가 받아보지 못한경우 가 발생했으나 user
이를 tracking하는 방법을 알아보고자 한다.
Solution
1. notification 이 발송될때 oracle.apps.wf.notification.send event발생한다
event key 로 Notification ID 를 사용한다.
2. 다음 조건에서만 The e-mail notification이 발송된다.
i) Notification status is OPEN or CANCELED
ii) Notification mail_status is MAIL or INVALID
SELECT status, mail_status
FROM wf_notifications
WHERE notification_id = '&nid';
iii) Recipient Role has a valid e-mail address and notification preference is in the format MAIL%
SELECT email_address,
nvl(WF_PREF.get_pref(name, 'MAILTYPE'),notification_preference)
FROM wf_roles
WHERE name = upper('&recipient_role');
iv) Workflow Deferred Agent Listener is running
v) Workflow Notification Mailer is running
3. e-mail로 발송되기전 message가 2번 정지한다.
Raised --> WF_DEFERRED Queue --> Processed by Deferred Agent Listener --> WF_NOTIFICATION_OUT Queue --> Processed by Notification Mailer and sent as e-mail
4. oracle.apps.wf.notification.send을 dispatch 할때 error가 발생하면
message 는WF_ERROR queue에 enqueue되고 .
Error Agent Listener 가 WF_XML.Error_Rule 을 수행하는 oracle.apps.wf.notification.send 의
ERROR subscription 을 dispatch합니다.
5. notification id 와 WF_DEFERRED and WF_NOTIFICATION_OUT queue 의 message stauts 등을 확인하기 위해 $FND_TOP/sql/wfmlrdbg.sql 를 수행합니다.
PROCESSED in WF_DEFERRED - The message is enqueued to WF_NOTIFICATION_OUT
PROCESSED in WF_NOTIFICATION_OUT - The message is sent as e-mail
READY in WF_DEFERRED - Check if Deferred Agent Listener is running
READY in WF_NOTIFICATION_OUT - Check if Notification Mailer is running
6. notification id 의 outbound XML message 를 분석합니다.
. The wfmlrdbg.sql output provides the XML message generated by WF_XML.Generate at the time the script is run. If the original XML message used by the mailer is required to be analyzed following SQL may be used.
SELECT tab.user_data.text_lob text_lob
FROM applsys.aq$wf_notification_out tab
WHERE dbms_lob.instr(tab.user_data.text_lob,'&1') > 0
7. 필요하다면 WF_NOTIFICATION_OUT queue 를 rebuild 합니다.
The wfntfqup.sql script rebuilds the WF_NOTIFICATION_OUT queue by dropping and recreating
that queue, removing pending notification messages from the WF_DEFERRED queue, and
repopulating the WF_NOTIFICATION_OUT queue from the Oracle Workflow Notification System
tables.
Wfntfqup.sql Version >=115.9
If you have implemented Oracle Alert and the WF_NOTIFICATION_OUT queue contains any pending
alert e-mail messages, those messages must be processed before the queue can be rebuilt. The
wfntfqup.sql script checks the queue for any alert e-mail messages and, if it finds any, the
script returns an error message that specifies how many alert e-mail messages are pending
and indicates that these messages must be processed before the script can run.
Wfntfqup.sql Version <= 115.8
If you have implemented Oracle Alert and the WF_NOTIFICATION_OUT queue contains any pending
alert e-mail messages, those messages must be processed before the queue can be rebuilt. The
wfntfqup.sql script checks the queue for any alert e-mail messages and, if it finds any,
exits without performing any changes.
Stop Notification Mailer, rebuild Mailer Queue using $FND_TOP/patch/115/sql/wfntfqup.sql.
Reference
Note 433359.1

Thanks for your update.
I have checked as per the metalink doc "242941.1" . i am getting below message only for IMAP.
*C:\prod\scripts>%AFJVAPRG% -classpath %AF_CLASSPATH% -Dprotocol=imap  -Ddbcfile=
c:\prod\prodappl\fnd\11.5.0\secure\PROD_qlng-s-012\prod.dbc -Dserver=qlng-s-003.
qalhatlng.int -Dport=995 -Dconnect_timeout=120 -Ddebug=Y -Daccount=oracle1@qlng
.om -Dpassword=System123 -DdebugMailSession=Y oracle.apps.fnd.wf.mailer.Mailer
MLRTST : oracle.apps.fnd.cp.gsc.Logger.Logger(String, int) : Logging to System.o
ut until necessary parameters are retrieved for Logger to be properly started.
DEBUG: getProvider() returning javax.mail.Provider[STORE,imap,com.sun.mail.imap.
IMAPStore,Sun Microsystems, Inc]*
Kindly suggest need to any setup in ms exchange server or firewall level.
Thanks

Similar Messages

  • Capture event oracle.apps.wf.notification.receive.message

    Hi,
    I am trying to capture the event oracle.apps.wf.notification.receive.message.
    Whenever system receives an email response of a notification, I want to insert some values to a table.
    I have created subscription on this event and calling a package procedure which inserts the data into table.
    Now, If I test the event from the business events screen itself, subscription is working (i.e. inserting the data into table).
    However, when I am replying a notification, I can see that event is fired (from system administratoin->workflow->agent activity), but values are not being inserted in the table.
    My package procedure has pragma autonomous transaction and commit.
    Also, I have tried various combinations of event being Local or external.
    Any thoughts why the subscription is not coming in action?
    Thanks,
    Abdul Wahid

    One Update.
    I tried to fire some different event and registered this function with that.
    Its working with this event.
    Does that mean that oracle.apps.wf.notification.receive.message event is not being fired?

  • Oracle.apps.wf.notification.receive.message event subscription

    Hi,
    I have created a custom test subscription for the above event.I have simply created a rule function which inserts values in a custom table to show that the event is being fired.
    I tested from workflow responsibility, and yes, event is being captured and values are being inserted in the custom table. Means, from test subscription, its working.
    However, now I am trying to respond an notification from email(actual testing of the event). The notificatoin gets processed, but my function is not being called. In other words, possibly my event subscription is not being fired, seeded one is working though.
    I checked WF_NOTIFICATION_IN table. The email responses are received here and their state also shows from 0 to 2 changing. Also, the DEQ_TIME column also has values.
    So the question is how to know why my subscription is not being fired?
    Thanks,
    Abdul Wahid

    One Update.
    I tried to fire some different event and registered this function with that.
    Its working with this event.
    Does that mean that oracle.apps.wf.notification.receive.message event is not being fired?

  • Workflow notification is not tiggered for IDoc of message type 'WPUWBW'

    Hi All,
            I would like to know the setting up of workflow notification for IDoc message type 'WPUWBW' (idoc of different message type is getting notified). Please provide pointers and also the steps for the above issue.
    Regards,
    PSS

    Hi Ferry,
    System checks for the IDOC version and then calls the EXIT if the versions are different .Following is the code snippet that ensures the above thing in include LBD11F0T :
      Change IDOC version if target <> current version.
      IF  F_EXCEPTION-MSGTY IS INITIAL
        AND (    F_IDOC_CONTROL-IDOCTP <> TARGET_IDOCTP
              OR F_IDOC_CONTROL-CIMTYP <> TARGET_CIMTYP ).
        PERFORM CHANGE_IDOC_VERSION TABLES   T_IDOC_DATA
                                    USING    TARGET_IDOCTP
                                             TARGET_CIMTYP
                                    CHANGING F_IDOC_CONTROL
                                             CHANGED_FLAG
                                             F_EXCEPTION.
      ENDIF.                               "End of  if subrc = 0
    Have you tested it ? Pls suggest if I am wrong somewhere.
    Thanks and Regards
    Gurpreet Singh

  • Workflow and processing with event messages

    Are there any examples available on using the event message datatype.
    We are using Interconnect and Workflow 2.6. Interconnect passes data to workflow in the form of the event message. Are there any examples/samples available on how to extract individual data elements from the message, and being able to re-set the values.

    You might want to have a look at the Event System Demonstration process. A description is here:
    http://otn.oracle.com/docs/products/ias/doc_library/90200doc_otn/integrate.902/a95265/demo39.htm
    You can also refer to the following white papers:
    Getting Started with the Oracle Workflow Business Event System and Advanced Queuing
    http://otn.oracle.com/products/integration/workflow/workflow_wp_bes.pdf
    Oracle Workflow Release 2.6.2 Business Event System and PL/SQL Development Guidelines
    http://otn.oracle.com/products/integration/workflow/wfbesdevgdln.pdf
    Regards,
    Clara
    Are there any examples available on using the event message datatype.
    We are using Interconnect and Workflow 2.6. Interconnect passes data to workflow in the form of the event message. Are there any examples/samples available on how to extract individual data elements from the message, and being able to re-set the values.

  • Workflow Notification Mailer in 11i

    Hi,
    I configured workflow notification mailer in 11i,
    (a) only outbound Mail Configuration, I enabeld that
    (b) started workflow Mailer Service Concurrent Manager
    (c) started workflow agent listener service concurrent manager
    Once I did the above, I am getting mails from Oracle Alerts..its nice..
    But I want to know, the following configuration in workflow mailer wizard
    ---> Inbound Mailer Configuaration ( IMAP), Can I give same SMTP mail server name in this...
    can anybody describe this, what for this configuration ( Inbound Mailer Service)....

    Notification mailers can also process e-mail responses from users, using the Internet Message Access Protocol (IMAP). A notification mailer uses a Java-based e-mail parser to interpret the text of each message and create an XML representation of it.
    A notification mailer uses three folders in your response mail account for response processing: one to receive incoming messages, one to store processed messages, and one to store discarded messages.
    A notification mailer does the following to process response messages:
    Logs into its IMAP e-mail account.
    Checks the inbox folder for messages. If a message exists, the notification mailer reads the message, checking for the notification ID (NID) and node identifier in the NID line.
    If the message is not a notification response, meaning it does not contain an NID line, the notification mailer moves the message to the discard folder and treats it as an unsolicited message. For the first unsolicited message from a particular e-mail address, the notification mailer also sends a warning message back to the sender of the message.
    However, to avoid sending unnecessary warnings due to bounced or auto-reply messages, each mailer node stores a list of e-mail addresses from which it has received unsolicited mail, and does not send any further warning messages to those addresses. Instead, if the node receives a second unsolicited message from a particular address, the notification mailer discards the message and raises the oracle.apps.wf.mailer.unsolicited event. You can optionally define a subscription to this event if you want to perform some other action in response to the second unsolicited message. For all subsequent unsolicited messages, the notification mailer simply discards the message.
    For more Info Please refer Oracle Workflow Administrator's Guide
    Hope it helps!
    Chetan

  • Message Tracking - Determing what happens to specific email

    Good afternoon all!  I have a situation with a client Exchange 2010 server.  They have a front end/back end exchange setup.  They are running this on Server 2008 R2.  Mail is setup and working great.  They have ONE specific email
    they receive on a nightly basis.  This email makes it through the front end spam solution, then passes the receive connector.  In the message tracking logs I see the message is received.  It is sent to a distribution group.  Other email
    that is sent to the distribution group will have a corresponding expand and deliver logs.  This particular email does not have anything further than receive.  No other logs to identify why it is not being delivered or dropped or anything.  I
    have run the following command to ensure I have the full information:
    [PS] C:\Program Files\Microsoft\Exchange Server\V14\Scripts>get-exchangeserver | where {$_.isHubTransportServer -eq $tru
    e -or $_.isMailboxServer -eq $true} | Get-MessageTrackinglog -MessageId "[email protected]" | fl
    RunspaceId              : e5feafd8-bb88-414d-ad8f-7841df4ad30d
    Timestamp               : 10/24/2014 12:20:44 AM
    ClientIp                : *.*.*.* (Front End IP)
    ClientHostname          : frontend.spam.solution
    ServerIp                : 192.168.10.240
    ServerHostname          : Exch2010.domain.local
    SourceContext           : 08D1BC5A8D9DC4B6;2014-10-24T05:20:43.396Z;0
    ConnectorId             : Exch2010\Default Exch2010
    Source                  : SMTP
    EventId                 : RECEIVE
    InternalMessageId       : 3816
    MessageId               : <[email protected]>
    Recipients              :
    {[email protected]}
    RecipientStatus         : {}
    TotalBytes              : 5091
    RecipientCount          : 1
    RelatedRecipientAddress :
    Reference               :
    MessageSubject          : Delivery Status Notification (Failure)
    Sender                  :
    [email protected]
    ReturnPath              : <>
    MessageInfo             : 00A: NTS:
    MessageLatency          :
    MessageLatencyType      : None
    EventData               : {[FirstForestHop, Exch2010.domain.local]}
    There are no further logs on this message.  For those that will read the delivery status notification.  This message is a bounce back message that they are not receiving.  I did change the Default Properties on the remote domains, so that
    Allow external out-of-office messages and legacy out-of-office messages is selected as well as under message format: Allow Auto replies, Allow Auto Forward, Allow Delivery Reports, Allow Non-Delivery Reports are also all selected.
    I am lost on where to figure out what happens to this email after the receive connector gets it.  Messages normally have other messages that show additional information; however this message just dies there.
    Any ideas or help would be greatly appreciated!
    Thanks
    Jason

    Thanks for the reply.  I actually started with searches for anything going to that distribution group.  I used the GUI version, then went to the shell.  Neither was able to produce anything beyond receive.  I thought maybe the group was
    not setup properly to get emails from the outside, but after testing from my email address directly to the group, I see normal behavior it expands then delivers to the store.  With these particular emails, they only ever have the event of receive nothing
    further.  Any ideas where to look when that happens?
    Thanks
    Jason

  • Arabic Charecters looks like garbage in notification mailer messages

    Hi,
    We successfully configured notification mailer ( inbound & outbound). we receiving email messages in English correctly but when we get Arabic email message, Arabic characters looks like garbage. i already tried to check RESET_NLS and restart the mailer but still Arabic characters unreadable.
    Could you please Help?
    Thanks in advance.
    Ibrahim.

    Hi Ibrahim,
    ORA-06512: at "APPS.WF_EVENT", line 1564
    ORA-06512: at line 1
    [Dec 23, 2013 1:32:31 PM AST]:1387794751156:-1:-1:HRMDBHVQRDCW1:10.34.244.34:-1:-1:1:20420:SYSADMIN(0):-1:Thread[inboundThreadGroup2,5,inboundThreadGroup]:10.34.244.34:18401:1387794751156:777:ERROR:[SVC-GSM-WFALSNRSVC-345051-10021 : oracle.apps.fnd.wf.bes.AgentListenerProcessor.read()]:Could not executeUpdate() on { CALL   WF_EVENT.LISTEN  (  p_agent_name => :1, p_wait => :2, p_correlation => :3, p_deq_condition => null, p_message_count => :4, p_max_error_count => :5  )} -> java.sql.SQLException: ORA-20002: 3802: Agent does not exist.
    ORA-06512: at "APPS.WF_EVENT", line 1564
    ORA-06512: at line 1
    Please see if the following doc helps you:
    Workflow Deferred Agent Listener Cannot be Started After Upgrading to RDBMS 11g (Doc ID 1072604.1)
    Workflow Agent Listener Service WF_DEFERRED Will Not Start, Mailer May Be Down (Doc ID 958178.1)
    Workflow mailer notification errors with Ora-08103 Object No Longer Exists Error In Wf_xml_generate (Doc ID 1302169.1)
    Thanks &
    Best Regards,

  • Problem with the Workflow Notification Mailer

    Hi Community,
    Recently we have just installed the E-Business Suite release 12.0.4 from e-delivery.oracle.com for Linux x86-64 using the VISION Demo database, in order to see and test the release for a future upgrade of our Production environment.
    The installation was succesful and we setting up the Workflow Notification Mailer with the data of our SMTP server in order to outbound notifications to that server.
    Now, In order to continue testing that instance, we have just executed the scripts to stop de APPS tier and to start the APPS tier, and it seems that the workflow notification mailer can not establish network connection with the e-mail server (Exchange server) after starting the APPS tier.
    The Linux server has defined in its hosts file the Exchange e-mail server, and from operating system, we can establish a ping connection.
    Any help will be appreciated.
    Luis.

    Hi,
    I had the same issue and I found that Oracle Workflow does not attach files. The solution is to create a table with blob, clob, ordsys, etc data types and reference to the file from a notification and a message.
    I did an interface with java to read the document, and then put the link in the oracle workflow message. The link opened the file.
    So, for any workflow development is recomended to use your own Entity-Relation Model, including the process number and the files attached to that process.
    Regards,
    Santiago Meneses
    [email protected]
    Quito-Ecuador

  • Unable to start Workflow Notification Mailer

    Hi
    we are using oracle11i(11.5.10.2) with Database version 10.2.0.3 .
    i am unable to start Workflow Notification Mailer. please verify below log information.
    13/05/2009 AST 10:34:23 طµ]:1242200063297:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:appsbkp:10.6.1.51:-1:-1:UNEXPECTED:[SVC-GSM-WFMLRSVC-17109-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProcessor.initOutbound()]:FormatterException -> oracle.apps.fnd.wf.mailer.FormatterException: NoRouteToHostException when initializing OutboundFormatter -> java.net.NoRouteToHostException: Unable to estabish Web Session -> Unable to verify established session -> verifySession -> WebAppsContext is null
    [13/05/2009 AST 10:34:23 طµ]:1242200063297:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:appsbkp:10.6.1.51:-1:-1:ERROR:[SVC-GSM-WFMLRSVC-17109-10006 : oracle.apps.fnd.cp.gsc.Processor.run()]:performInit() failed
    [13/05/2009 AST 10:34:23 طµ]:1242200063297:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:appsbkp:10.6.1.51:-1:-1:ERROR:[SVC-GSM-WFMLRSVC-17109-10006 : oracle.apps.fnd.cp.gsc.Processor.performError(ProcessorException)]:Maximum number of errors have occurred for this processing thread.
    [13/05/2009 AST 10:35:06 طµ]:1242200106875:Thread[ComponentMonitor,5,main]:0:-1:appsbkp:10.6.1.51:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-17109 : oracle.apps.fnd.cp.gsc.SvcComponentMonitor.startAutomaticComponents()]:Starting automatic component 10006
    [13/05/2009 AST 10:35:11 طµ]:1242200111125:Thread[BES Dispatch Thread,5,main]:0:-1:appsbkp:10.6.1.51:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-17109 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.onBusinessEvent(BusinessEvent)]:(BusinessEvent{name=oracle.apps.fnd.cp.gsc.SvcComponent.start, key=SVC:13-05-2009, priority=50, correlationId=null, sendDate=Wed May 13 10:35:07 AST 2009, receiveDate=null, From Agent:  , To Agent:  , Last Subscription=  , Error Message=null, Error Stack=null, BES_PAYLOAD_OBJECT=false, CONTAINER_PROCESS_ID=17109, [email protected], CONTAINER_TYPE=GSM, COMPONENT_ID=10006})
    [13/05/2009 AST 10:35:21 طµ]:1242200121125:Thread[BES Dispatch Thread,5,main]:0:-1:appsbkp:10.6.1.51:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-17109 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.handleComponentEvent(int, String, String)]:Successfully retrieved component details from the database
    [13/05/2009 AST 10:35:23 طµ]:1242200123312:Thread[BES Dispatch Thread,5,main]:0:-1:appsbkp:10.6.1.51:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-17109 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.onBusinessEvent(BusinessEvent)]:Successfully handled component event, oracle.apps.fnd.cp.gsc.SvcComponent.start, for component 10006
    [13/05/2009 AST 10:35:23 طµ]:1242200123344:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:appsbkp:10.6.1.51:-1:-1:UNEXPECTED:[fnd.wf.mailer.URLMIMEContent]:oracle.apps.fnd.wf.common.GenericHTMLContentParser.GenericHTMLContentParser(Log, int, int, int) Unable to establish a WebSession
    [13/05/2009 AST 10:35:23 طµ]:1242200123344:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:appsbkp:10.6.1.51:-1:-1:UNEXPECTED:[SVC-GSM-WFMLRSVC-17109-10006 : oracle.apps.fnd.wf.mailer.NotificationFormatter.initialize(Connection, NLSContext, Logger, Properties)]:NoRouteToHostException when initializing OutboundFormatter
    [13/05/2009 AST 10:35:23 طµ]:1242200123344:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:appsbkp:10.6.1.51:-1:-1:UNEXPECTED:[SVC-GSM-WFMLRSVC-17109-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProcessor.initOutbound()]:FormatterException -> oracle.apps.fnd.wf.mailer.FormatterException: NoRouteToHostException when initializing OutboundFormatter -> java.net.NoRouteToHostException: Unable to estabish Web Session -> Unable to verify established session -> verifySession -> WebAppsContext is null
    [13/05/2009 AST 10:35:23 طµ]:1242200123344:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:appsbkp:10.6.1.51:-1:-1:ERROR:[SVC-GSM-WFMLRSVC-17109-10006 : oracle.apps.fnd.cp.gsc.Processor.run()]:performInit() failed
    [13/05/2009 AST 10:35:23 طµ]:1242200123344:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:appsbkp:10.6.1.51:-1:-1:ERROR:[SVC-GSM-WFMLRSVC-17109-10006 : oracle.apps.fnd.cp.gsc.Processor.performError(ProcessorException)]:Maximum number of errors have occurred for this processing thread.
    [13/05/2009 AST 10:36:06 طµ]:1242200166891:Thread[ComponentMonitor,5,main]:0:-1:appsbkp:10.6.1.51:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-17109 : oracle.apps.fnd.cp.gsc.SvcComponentMonitor.startAutomaticComponents()]:Starting automatic component 10006
    [13/05/2009 AST 10:36:11 طµ]:1242200171125:Thread[BES Dispatch Thread,5,main]:0:-1:appsbkp:10.6.1.51:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-17109 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.onBusinessEvent(BusinessEvent)]:(BusinessEvent{name=oracle.apps.fnd.cp.gsc.SvcComponent.start, key=SVC:13-05-2009, priority=50, correlationId=null, sendDate=Wed May 13 10:36:07 AST 2009, receiveDate=null, From Agent:  , To Agent:  , Last Subscription=  , Error Message=null, Error Stack=null, BES_PAYLOAD_OBJECT=false, CONTAINER_PROCESS_ID=17109, [email protected], CONTAINER_TYPE=GSM, COMPONENT_ID=10006})
    [13/05/2009 AST 10:36:21 طµ]:1242200181125:Thread[BES Dispatch Thread,5,main]:0:-1:appsbkp:10.6.1.51:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-17109 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.handleComponentEvent(int, String, String)]:Successfully retrieved component details from the database
    [13/05/2009 AST 10:36:23 طµ]:1242200183391:Thread[BES Dispatch Thread,5,main]:0:-1:appsbkp:10.6.1.51:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-17109 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.onBusinessEvent(BusinessEvent)]:Successfully handled component event, oracle.apps.fnd.cp.gsc.SvcComponent.start, for component 10006
    [13/05/2009 AST 10:36:23 طµ]:1242200183422:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:appsbkp:10.6.1.51:-1:-1:UNEXPECTED:[fnd.wf.mailer.URLMIMEContent]:oracle.apps.fnd.wf.common.GenericHTMLContentParser.GenericHTMLContentParser(Log, int, int, int) Unable to establish a WebSession
    [13/05/2009 AST 10:36:23 طµ]:1242200183422:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:appsbkp:10.6.1.51:-1:-1:UNEXPECTED:[SVC-GSM-WFMLRSVC-17109-10006 : oracle.apps.fnd.wf.mailer.NotificationFormatter.initialize(Connection, NLSContext, Logger, Properties)]:NoRouteToHostException when initializing OutboundFormatter
    [13/05/2009 AST 10:36:23 طµ]:1242200183422:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:appsbkp:10.6.1.51:-1:-1:UNEXPECTED:[SVC-GSM-WFMLRSVC-17109-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProcessor.initOutbound()]:FormatterException -> oracle.apps.fnd.wf.mailer.FormatterException: NoRouteToHostException when initializing OutboundFormatter -> java.net.NoRouteToHostException: Unable to estabish Web Session -> Unable to verify established session -> verifySession -> WebAppsContext is null
    [13/05/2009 AST 10:36:23 طµ]:1242200183422:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:appsbkp:10.6.1.51:-1:-1:ERROR:[SVC-GSM-WFMLRSVC-17109-10006 : oracle.apps.fnd.cp.gsc.Processor.run()]:performInit() failed
    [13/05/2009 AST 10:36:23 طµ]:1242200183422:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:appsbkp:10.6.1.51:-1:-1:ERROR:[SVC-GSM-WFMLRSVC-17109-10006 : oracle.apps.fnd.cp.gsc.Processor.performError(ProcessorException)]:Maximum number of errors have occurred for this processing thread.
    [13/05/2009 AST 10:37:06 طµ]:1242200226891:Thread[ComponentMonitor,5,main]:0:-1:appsbkp:10.6.1.51:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-17109 : oracle.apps.fnd.cp.gsc.SvcComponentMonitor.startAutomaticComponents()]:Starting automatic component 10006
    [13/05/2009 AST 10:37:11 طµ]:1242200231125:Thread[BES Dispatch Thread,5,main]:0:-1:appsbkp:10.6.1.51:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-17109 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.onBusinessEvent(BusinessEvent)]:(BusinessEvent{name=oracle.apps.fnd.cp.gsc.SvcComponent.start, key=SVC:13-05-2009, priority=50, correlationId=null, sendDate=Wed May 13 10:37:07 AST 2009, receiveDate=null, From Agent:  , To Agent:  , Last Subscription=  , Error Message=null, Error Stack=null, BES_PAYLOAD_OBJECT=false, CONTAINER_PROCESS_ID=17109, [email protected], CONTAINER_TYPE=GSM, COMPONENT_ID=10006})
    [13/05/2009 AST 10:37:21 طµ]:1242200241125:Thread[BES Dispatch Thread,5,main]:0:-1:appsbkp:10.6.1.51:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-17109 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.handleComponentEvent(int, String, String)]:Successfully retrieved component details from the database
    [13/05/2009 AST 10:37:23 طµ]:1242200243375:Thread[BES Dispatch Thread,5,main]:0:-1:appsbkp:10.6.1.51:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-17109 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.onBusinessEvent(BusinessEvent)]:Successfully handled component event, oracle.apps.fnd.cp.gsc.SvcComponent.start, for component 10006
    [13/05/2009 AST 10:37:23 طµ]:1242200243391:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:appsbkp:10.6.1.51:-1:-1:UNEXPECTED:[fnd.wf.mailer.URLMIMEContent]:oracle.apps.fnd.wf.common.GenericHTMLContentParser.GenericHTMLContentParser(Log, int, int, int) Unable to establish a WebSession
    [13/05/2009 AST 10:37:23 طµ]:1242200243391:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:appsbkp:10.6.1.51:-1:-1:UNEXPECTED:[SVC-GSM-WFMLRSVC-17109-10006 : oracle.apps.fnd.wf.mailer.NotificationFormatter.initialize(Connection, NLSContext, Logger, Properties)]:NoRouteToHostException when initializing OutboundFormatter
    [13/05/2009 AST 10:37:23 طµ]:1242200243391:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:appsbkp:10.6.1.51:-1:-1:UNEXPECTED:[SVC-GSM-WFMLRSVC-17109-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProcessor.initOutbound()]:FormatterException -> oracle.apps.fnd.wf.mailer.FormatterException: NoRouteToHostException when initializing OutboundFormatter -> java.net.NoRouteToHostException: Unable to estabish Web Session -> Unable to verify established session -> verifySession -> WebAppsContext is null
    [13/05/2009 AST 10:37:23 طµ]:1242200243391:Thread[outboundThreadGroup1,5,outboundThreadGroup]:0:-1:appsbkp:10.6.1.51:-1:-1:ERROR:[SVC-GSM-WFMLRSVC-17109-10006 : oracle.apps.fnd.cp.gsc.Processor.run()]:performInit() failed
    [13/05/2009 AST 10:37:23 طµ]:1242200243391:Thread[outboundThreadGroup1,5,outboundThreadGroup
    Thanks
    With Regards
    Umair

    Hi Umair,
    oracle.apps.fnd.wf.mailer.FormatterException: NoRouteToHostException when initializing OutboundFormatter -> java.net.NoRouteToHostException: Unable to estabish Web Session -> Unable to verify established session -> verifySession -> WebAppsContext is nullPlease check the connectivity with the mail server.
    Anchorage :)

  • Workflow notification mailer not working properly

    Hi,
    I got the following error and I have restart the services but still facing the same problem, Please advice
    Definition
    ID 10006 Name Workflow Notification Mailer
    Startup Mode Automatic Container Type Oracle Applications GSM
    Inbound Agent Workflow Notification In Queue Outbound Agent Workflow Notification Out Queue
    Correlation ID
    Status Information This automatic Service Component has been restarted the maximum of 10 times after stopping with error. Thus, it has been system deactivated -> oracle.apps.fnd.cp.gsc.SvcComponentContainerException: Could not start component; performing rollback -> oracle.apps.fnd.cp.gsc.SvcComponentException: Validation failed for the following parameters -> {OUTBOUND_SERVER=Unable to make a network connection.}. Parameters were -> {INBOUND_MAX_IGNORE_SIZE=1000, INBOUND_MAX_LOOKUP_CACHE_SIZE=100, ATTACH_IMAGES=Y, ALLOW_FORWARDED_RESPONSE=Y, INBOUND_UNSOLICITED_THRESHOLD=2, NODENAME=WFMAIL, SEND_UNSOLICITED_WARNING=Y, AUTOCLOSE_FYI=Y, INBOUND_PROTOCOL=IMAP, PROCESSOR_READ_TIMEOUT_CLOSE=Y, ATTACHED_URLS=WFMAIL:ATTACHED_URLS, TEST_ADDRESS=NONE, PROCESSOR_OUT_THREAD_COUNT=1, EXPUNGE_ON_CLOSE=Y, ATTACH_STYLESHEET=Y, OUTBOUND_CONNECTION_TIMEOUT=120, INBOUND_MAX_RET_EMAIL_SIZE=100, MAX_INVALID_ADDR_LIST_SIZE=100, PROCESSOR_MAX_LOOP_SLEEP=60, SEND_ACCESS_KEY=N, PROCESSOR_IN_THREAD_COUNT=1, FRAMEWORK_APP=1, CLOSED=WFMAIL:CLOSED, INBOUND_FETCH_SIZE=100, SUMMARY=WFMAIL:SUMMARY, ENABLE_STYLESHEET=N, PROCESSOR_ERROR_LOOP_SLEEP=60, OPEN_MAIL_FYI=WFMAIL:OPEN_MAIL_FYI, FRAMEWORK_RESP=20420, ALTERNATE_EMAIL_PARSER=oracle.apps.fnd.wf.mailer.DirectEmailParser, INBOUND_PASSWORD=_@@#$@4@8$@8#0488$89668$$@98!8$6@@0#9@9 `99%@*B+#B&|8B*^&, HTTP_USER_AGENT=Mozilla/4.76, RESET_NLS=N, PROCESS=PROCESS, OPEN_MAIL_DIRECT=WFMAIL:OPEN_MAIL_DIRECT, PROCESSOR_LOOP_SLEEP=5, MESSAGE_FORMATTER=oracle.apps.fnd.wf.mailer.NotificationFormatter, [email protected], FRAMEWORK_USER=0, CANCELED=WFMAIL:CANCELED, OUTBOUND_PROTOCOL=SMTP, [email protected], DISCARD=DISCARD, FROM=Workflow Mailer, PROCESSOR_DEFER_EVTDATA_READ=Y, SEND_CANCELED_EMAIL=Y, WARNING=WFMAIL:WARNING, PROCESSOR_MAX_ERROR_COUNT=10, INBOUND_CONNECTION_TIMEOUT=200, HTMLAGENT=http://erp.arabtecconstruction.com:8009/, INBOX=INBOX, OPEN_INVALID_MORE_INFO=WFMAIL:OPEN_INVALID_MORE_INFO, INBOUND_SERVER=mail.arabtecuae.com, OUTBOUND_                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Please post the details of the application release, database version and OS.
    Validation failed for the following parameters -> {OUTBOUND_SERVER=Unable to make a network connection.}. Please see these docs.
    Unable To Make A Network Connection For IMAP Username/Password In Workflow Mailer Configuration [ID 784247.1]
    Workflow Cannot Connect to IMAP Sever: "Unable to Make a Network Connection" [ID 577592.1]
    Error Validation Error Has Occurred: Unable To Make A Network Connection During Mailer Setup [ID 834054.1]
    How to Perform a Meaningful SMTP Telnet Test to Troubleshoot Java Mailer For Sending Email Notifications [ID 753845.1]
    How to Troubleshoot 'Validation failed' Errors when Starting the Mailer [ID 463354.1]
    Unable To Connect To The Mail Account. Check The Host, User Name And Password [ID 1123684.1]
    Workflow Mailer Will Not Start Stays In Starting Status [ID 837893.1]
    Mailer cannot Connect to IMAP Server on Oracle Applications R12.1.1 [ID 1300542.1]
    Java Mailer not Starting Error in Handling Component Event [ID 297725.1]
    Inbound Processing Is Not Happening While Approving/Rejecting From Emails [ID 418931.1]
    Unable To Start Notification Mailer After Upgrade To 10.2.0.3 [ID 725852.1]
    Thanks,
    Hussein

  • Error when trying to access the RBAC User editor and Message tracking

    Hi,
    I am getting an error when trying to access the RBAC User editor and Message tracking on the Web Mgmt interface. I verified that the admin account trying to access is in the Organization Management group and has the correct Role Assignment Policy applied.
    I searched through this thread below and saw that matching the msExchRoleLink and msExchUserLink attributes fixed the issue. 
    https://social.technet.microsoft.com/Forums/exchange/en-US/fc568cc6-8691-4127-b70b-bcc82f9b1f7f/first-2010-cas-server-no-administrator-rights-emc-permissions-gone?forum=exchange2010
    However I have another environment where this is not the case and works just fine; the msExchUserLink attribute has a value of CN=Organization Management,OU=Microsoft Exchange Security Groups,DC=Domain,DC=Local which is different as per the issue outlined in
    the above thread so I am not convinced that this will work and also don’t want to blindly edit something in adsiedit without being sure.
    I then checked the event logs on the server and saw the below error logged;
    Current user: 'Domain/Server Services Accounts/administrator'
    Request for URL 'https://server.domain.com/ecp/default.aspx?p=AdminDeliveryReports&exsvurl=1' failed with the following error:
    System.Web.HttpUnhandledException: Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> Microsoft.Exchange.Management.ControlPanel.UrlNotFoundOrNoAccessException: The page may not be available or you might not have permission to open the
    page. Please contact your administrator for the required credentials. For new credentials to take effect, you have to close this window and log on again.
       at Microsoft.Exchange.Management.ControlPanel._Default.CreateNavTree()
       at Microsoft.Exchange.Management.ControlPanel._Default.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
       --- End of inner exception stack trace ---
       at System.Web.UI.Page.HandleError(Exception e)
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
       at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
       at System.Web.UI.Page.ProcessRequest()
       at System.Web.UI.Page.ProcessRequest(HttpContext context)
       at ASP.default_aspx.ProcessRequest(HttpContext context)
       at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
       at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    Microsoft.Exchange.Management.ControlPanel.UrlNotFoundOrNoAccessException: The page may not be available or you might not have permission to open the page. Please contact your administrator for the required credentials. For new credentials to take effect, you
    have to close this window and log on again.
       at Microsoft.Exchange.Management.ControlPanel._Default.CreateNavTree()
       at Microsoft.Exchange.Management.ControlPanel._Default.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    I then had a look at the IIS permissions for ecp and owa. The account did not have permissions so I added them there but still got the same error. I’ve also tried all of the above with a newly-created account but still got the same issue.
    Any ideas as to what the above event log is specifically referring to?

    Hi,
    From your description, I would like to clarify the following thing:
    If you want to search message tracking logs, the account you use should be a member of the role groups below:
    Organization Management role group, Records Management role group, Recipient Management role group.
    Hope this can be helpful to you.
    Best regards,
    Amy Wang
    TechNet Community Support

  • How to get response of Workflow Notification Email from MS Outlook Express.

    Hi All,
    I have two questions:
    1. Our business users had a requirement to approve or reject the Workflow Notification Emails form their Email account on MS Outlook Express. When they perform action from MS Outlook Express it sends email to wfmailer but no action perform in aplication. The notification inbox in application shows this notification as OPEN notification and the requested function also shows 'Waiting for Approval'.
    2. I need to hide Request Information button/link from the email notification send through Workflow mailer to user. There are three actions button available in email notification Apprve, Reject and Request Information. I need to have only two button Approve and Reject. How to hide Request Information button.
    If any one have idea regarding my questions please hlep.
    Regards,
    Saquib

    You can follow the Workflow developer guide to create message attribute as shown in below link
    http://www-apps.us.oracle.com/wf/doc/wfr1213/wfdg/html/T361836T361983.htm#2806969
    1. For the notification message for which you want the more info link to be hidden, define the message attribute with name '#HIDE_MOREINFO', type as 'text' and set value as 'Y'

  • No data found for region error on Workflow notification page

    Hi !
    For workflow, I have created a Non Form Function in Oracle Applications and linked the region to display in the notification. This region's type is StackLayout.
    I created an attribute of type Document and assigned it the value in the form
    JSP:/OA_HTML/OA.jsp?OAFunc=WF_FUNC
    then I added this attribute in the notification message attribute with the Source as Send and Frame Traget as Full Window. Now when the workflow starts, the region does not populate and error shows that there is no data found for this region.
    Am I doing something wrong? Any ideas?
    Thanks.

    Hi,
    We have a unique problem.....for timecard approval notification the HXC_TIMECARD form function is calling embedded Timecard region in the workflow notification.....in the HTML call the AprvNtfRN is called as shown below.
    OA.jsp?page=/oracle/apps/hxc/selfservice/approval/webui/AprvNtfRN&akRegionApplicationId=809
    Now the issue is that the email displays uneven format i..e timecard details like project and task name are vertical instead of horizontal.
    Is there a way to code HTML in AprvNtfRN so that the format is obtained as desired?

  • #ATTACHMENTS handler in workflow notification for multiple attachments

    I would like to attach multiple documents to a workflow notification. The number of attachments are not known at design time.
    I see that #ATTACHMENTS handler is used for purpose, but I am not clear how to use it with PLSQLBLOB usage.
    How to return multiple documents to the #ATTACHMENTS special handler using PLSQLBLOB?
    Created a message attribute of Type=Document and gave internal name as #ATTACHMENTS. Now time to set a PLSQLBLOB function, but to attach multiple documents. Not sure how ....
    Note, I do seem some examples with FND:entity usage which shows attachments fine in the worklist, but the attachments are not shown in the email when using workflow mailer due to limitations with FND usage. Using PLSQLBLOB Document, I'm able to show attachments in both worklist and email, but each document attribute can handle only one attachment file. The number of attachments are not known at design time. I would like to use #ATTACHMENTS handler but for PLSQLBLOB usage.
    Can some throw more light on #ATTACHMENTS tag with PLSQLBLOB usage for multiple attachments?
    Thanks!

    hi Sanni
    please view this page.It is not direct answer. But it might help
    https://sites.google.com/site/shareapps4u/learning-topic/workflow-tutorial/how-to-attach-document-with-notification
    I have a similar requirement like yours.I need to attach the document when user sends reply to a notification.
    Can you please guide me in that.
    I appreciate your help in this. I heard that Oracle Standard functionality does not support this.
    Appreciate your help
    kp

Maybe you are looking for

  • IPhone 4S opening App Store in iPad's version.

    So this is how it looks :<

  • Tomcat HTTP Request problems

    Hi there, We have a client application which sends MULTIPART post (1 MB file size) to a HTTP server (Tomcat) and the clients are sometimes sending about 1000 or more simultaneous messages) and we get back an exception from at the client side like thi

  • TESTING OF WATER

    Dear Gurus, My client test water once a day,for different parameters,sample of water is collected from five different points and each of which is tested.can i map the above scenario by 1) creating material master : Water 2) assign inspection type 89

  • SetVisible does not have same functionality as deprecated show

    I want to remove deprecated methods from my code, but I'm a bit stumped. I have a modal dialog that uses Dialog.show, which does not return until the dialog is hidden or disposed. This blocks processing until the user responds to the dialog. The sugg

  • Non stock material views

    Can any one tell me what should be the views in standard for non stock material, i feel basic and purchasing only confirm me plzz