Capturing the Actual Responder for a notification sent to a Distribution List in Outlook

Hello All,
Morning , need some guidance on the issue mentioned below which we are currently facing.
We had a requirement to send Oracle Workflow Notification to a Distribution List maintained within Microsoft Outlook Mail client/server. The email address of the users which are part of the DL would be setup in this DL . lets say this DL has the
mailing address as : [email protected] which has 4 users in it let's say Oracle Apps FND users : A (email id - [email protected]), B (email id - [email protected]) , C(email id - [email protected]) , D (email id - [email protected]) with their respective email address . This email address within Oracle Apps would be linked at the FND User setup as well as in the HRMS Employee Setup --. Official details section
For this we created a ad hoc role name : 'Role_abcd' as below , then set ad hoc role attribute as shown below ( in the display name and email address we specify the email address created for the Distribution List )
wf_directory.createadhocrole
                                       (role_name                    => 'Role_abcd',
                                        role_display_name            => 'Role_abcd',
                                        notification_preference      => 'MAILATTH'
wf_directory.setadhocroleattr
                                      (role_name                    => 'Role_abcd',
                                       display_name                 => '[email protected]',
                                       email_address                => '[email protected]',
                                       notification_preference      => 'MAILATTH'  );
Finally we set the Notification Performer
Item Attribute (Next_Approver) and assign the role name ('Role_abcd') created above to this performer :
wf_engine.setitemattrtext (itemtype      => p_in_itemtype,
                                       itemkey       => p_in_itemkey,
                                       aname         => 'NEXT_APPROVER',
                                       avalue        => 'Role_abcd' );
Now we are able to successfully send the workflow notifications to this Outlook DL and all the 4 users : A,B,C & D would get the same notification to their email address mentioned as a part of the DL.
Issue :
Now lets say user A Approves this notification from email notification itself using mail id : [email protected] , In this scenario the Responder name which is getting captured in the wf_notifications table is not consistent , sometimes it is getting populated as : email:[email protected] and sometimes as the value for the recipient role/original recipient itself : Role_abcd .This appears to be wrong
Ideally this responder column in wf_notifications table should get populated as  ( email:[email protected] ) so that we could identify as to which person within the DL has responded to the notification.
Could someone please help as to how this could be acheived (to identify the actual responder for workflow notification sent to a Outlook Distribution List
Thanks

The following is the criteria when responding notification from email.
1. If there is no user/role exists for the email address from which the notification is responded, the responder column value will be in the form 'email:[email protected]'.
2. If there is only one user/role exists for the email address, then responder column value will be populated with that particular user/role.
3. If there are multiple user/roles with the same email address, then responder column value will be populated with the user in the following preference order
     PER -> FND_USR -> OTHERS
What is the customer code lne.
The fix mentioned in step3 was given in 12.1.3 only. The earlier versions have the responder column value will be in the form 'email:[email protected]' if there are multiple users exists for the same email address.

Similar Messages

  • How can I set a specific email notification for an email sent to a distribution list I am a member of?

    I have an iPhone 5 running iOS 7. For my job I need to be able to have my phone to get notificaitons from work. I need to be able to have a notification for emails sents to distribution lists that I am a part of. Basically I need to be able to set the notification based on the Sent To: field and not the From: field. Anyone have any ideas?

    Create the group. Drag in the folks you want to include in the group. Right click on the group and choose "Edit Distribution List" and a window will pop up showing which addresses are selected in bold, and those that are not selected in plain text. Just click on the emails you want to use and it switches the selected address.

  • How to find the Actual Responder Name Displayed in a Notification

    Hi,
    Where are the details of the Actual Responder Details stored in the case of the below scenario
    If a notification for one user was closed by another user through access to the first user's worklist, the name of the second user, who actually took the action, is displayed as the responder.
    I am only able to find the Original Recipeint username in the wf_notifications table.
    But where will the details of the Actual Responder name displayed in the notification be stored.
    When I use the "wf_notification.Responder" function, I get the Original Recipeint username of the user but not the one who acted on the notification. Is there ANY way by which I can get the Actual responder user name who acted on the notification
    select responder from wf_notifications where notification_id = <nid> also gives me the Original Recipeint username of the user but not the one who acted on the notification
    Please help.
    Regards,
    Kalyan

    Hi Alejandro,
    Thanks for the response.
    Both the RESPONDER and the ORIGINAL_RECIPIENT Column show the same username.
    The User who is approving the Notifications is having the access to the Worklist of the Original User through proxy.
    He is the proxy of the Original User.
    I think WF_ENGINE.context_proxy will store the actual user name who responds to the notification. But where does this actually store , i am not able to get.
    We Need to find out the both the user names (one who received the notification , and the one who has approved it (in our case it is the user who has been set as a proxy and has access to the original user's work list) for the closed notifications.
    In the Work flow Notification , it shows both the Original Recipeint and also the Actual Responder Name.
    Regards,
    Kalyan

  • How to capture the Actual approver from BADI :BBP_WFL_APPROV_BADI

    If the approval branch(index) has 5 approvers and  If any one of them is approving,
    the APPROVAL_HISTORY_TABLE has all the 5 approvers of that branch.
    User1 is one of the 5 users.When he is approving,the approval table has all the 5 approvers and no where the actual approver of that branch is  captured.
    Can  we capture the actual approver based on Sy-Uname?
    Or is there any other specific solution?please suggest.

    Hello Kittu,
    Here is below process for BBP_WFL_APPROV_BADI BAdI call by function modul:
    BBP_WFL_DIN_APPR_CONTAINER_SET > BBP_WFL_DIN_APPR_FINALLIST_GET > BBP_WFL_DIN_APPR_CONTAINER_GET > BAdI BBP_WFL_APPROV_BADI.
    Now, check what's happened for first function module local variable lv_actual_index and local table lt_cont_approver
    coming from BAdI parameters ACTUAL_APPROVAL_INDEX and APPROVAL_TABLE.
    Maybe your BAdI method is not correctly implemented.
    Regards.
    Laurent.

  • How to capture the execution plan for a query

    HI All,
    Can anyone please help me in finding out the command to capture the execution plan for a query.
    Execution plan for select * from EMP where <Condtions>
    it is getting executed successfully but i need to get the proper execution plan for the same.
    Thanks

    971830 wrote:
    i want to know where execution plan gets generated??
    in PMON of server process or in shared pool??
    i know that optimixer create execution plan..It is stored in Library Cache (present inside Shared Pool ).
    select * from v$sql_plan;An absolute beautiful white paper :
    Refer this -- www.sagelogix.com/sagelogix/SearchResults/SAGE015052
    Also -- http://www.toadworld.com/KNOWLEDGE/KnowledgeXpertforOracle/tabid/648/TopicID/XPVSP/Default.aspx
    HTH
    Ranit B.

  • Bookmarks are saved yet after using the page icon is still displayed instead of the actual icon for the website. I have followed the directions for "Favicons do not display".

    My bookmarks, on a HP Pavilion dv-7-2273cl notebook, are saved yet the page icon is still displayed after using the bookmark instead of the actual icon for the website. I have followed the directions for "Favicons do not display" without any success. This problem is not experienced on my much older Gateway desktop.

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_places-database-file

  • Where  can i find the actual data for SKC1A

    hi experts,
    my doubt its about  a program that i have to check , but it has a "get skc1a" and it returns some values, some of the appears to be incorrect but i want to see the actual table for the data, because sk1ca its a structure.... the logical db is SDF.
    i looked up to GLT0 but there aren't the fields UM01K, UM02K, UM03K......and these fields are the ones that have some data that i want to know where they get it from???
    please i really apreciate the answer...
    thx in advance

    please chek fm
    READ_SKC1A
    READ_SKC1C

  • Whats the Actual Capacity For The 2 gig?

    Whats the Actual Capacity For The 2 gig? the 4 gigs real capacity is like 3.7 or something what is the actual amount for the 2 gig? does any1 know?

    The capacity they ship is 2 billion bytes. Nothing is being shaved, it's just different measures being used.
    http://docs.info.apple.com/article.html?artnum=60955

  • Unable to open email sent to large distribution lists

    Running: iPhone 4, 8GB iOS 7.04 (Note: This same issue was also observed on an iPhone 5S with iOS 7.1.2.)
    Email account info: GroupWise IMAP
    When attempting to open an email sent to a large distribution list, the email application is extremely slow or crashes. 
    Opening and closing an email sent to a distribution list containing 2301 members is very slow.  When opening an email with a distribution list of 6443 members, the email application hangs for awhile and then closes.

    I just noticed that with an email open, selecting "Hide" on the email headers allows the email and all subsequent emails to open as expected.  However, attempting to view the additional email header information by selecting "[number of additional email contacts] more..." causes the email application to freeze.

  • Redirect internal email sent to a distribution list to another user mailbox

    Dear all,
    We are running on Exchange 2010 and would like to know if it would be possible to redirect email sent to a distribution list to another mailbox if source is internal, meaning from address is *@company.com
    Let me explain: We have a DL like [email protected] and a ticketing system which checks a mailbox [email protected] on a regular basis.
    We would like to redirect only the messages from our users to helpdesk in order to automatically create cases for their problems. 
    Have been checking EMC and ADUC but couldn't find anything related to this.
    Kind regards,
    Tudor.

    Hi,
    Yes, creating transport rule will achieve the goal.
    Glad to know that we have solved this problem.
    Have a nice day : )
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • Since the last IOS update, I still can't drag distribution lists from my contacts to my email.  Apple has been absolutely no help, in spite of contacting them 5 times on this subject.  Any suggestions or help would be greatly appreciated.

    Since the last IOS update, I still can't drag distribution lists from my contacts to my email.  Apple has been absolutely no help, in spite of contacting them 5 times on this subject.  Any suggestions or help would be greatly appreciated.
    I have IOS  7.0.1 and updates are current.
    Pags1970

    No Mac can run any version of iOS, that is for iDevices only.
    Macs run OS X. What version of that do you have?

  • Is this the best design for asynchronous notifications (such as email)? Current design uses Web Site, Azure Service Bus Queue, Table Storage and Cloud Service Worker Role.

    I am asking for feedback on this design. Here is an example user story:
    As a group admin on the website I want to be notified when a user in my group uploads a file to the group.
    Easiest solution would be that in the code handling the upload, we just directly create an email message in there and send it. However, this seems like it isn't really the appropriate level of separation of concerns, so instead we are thinking to have a separate
    worker process which does nothing but send notifications. So, the website in the upload code handles receiving the file, extracting some metadata from it (like filename) and writing this to the database. As soon as it is done handling the file upload it then
    does two things: Writes the details of the notification to be sent (such as subject, filename, etc...) to a dedicated "notification" table and also creates a message in a queue which the notification sending worker process monitors. The entire sequence
    is shown in the diagram below.
    My questions are: Do you see any drawbacks in this design? Is there a better design? The team wants to use Azure Worker Roles, Queues and Table storage. Is it the right call to use these components or is this design unnecessarily complex? Quality attribute
    requirements are that it is easy to code, easy to maintain, easy to debug at runtime, auditable (history is available of when notifications were sent, etc...), monitor-able. Any other quality attributes you think we should be designing for?
    More info:
    We are creating a cloud application (in Azure) in which there are at least 2 components. The first is the "source" component (for example a UI / website) in which some action happens or some condition is met that triggers a second component or "worker"
    to perform some job. These jobs have details or metadata associated with them which we plan to store in Azure Table Storage. Here is the pattern we are considering:
    Steps:
    Condition for job met.
    Source writes job details to table.
    Source puts job in queue.
    Asynchronously:
    Worker accepts job from queue.
    Worker Records DateTimeStarted in table.
    Queue marks job marked as "in progress".
    Worker performs job.
    Worker updates table with details (including DateTimeCompleted).
    Worker reports completion to queue.
    Job deleted from queue.
    Please comment and let me know if I have this right, or if there is some better pattern. For example sake, consider the work to be "sending a notification" such as an email whose template fields are filled from the "details" mentioned in
    the pattern.

    Hi,
    Thanks for your posting.
    This development mode can exclude some errors, such as the file upload complete at the same time... from my experience, this is a good choice to achieve the goal.
    Best Regards,
    Jambor  
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • PO Lead Time cannot capture the time taken for shipping!

    Dear All
    I understand that we have PO lead time = PO Processing Time (Working Day) + Planned Delivery Time (Calendar Day) + GR processing time (working day).
    And this PO lead time will be added on top of my PO Creation Date to defer the actual goods availability date.
    My question:
    1. Planned delivery time is the time taken from vendor place to send out the goods to my warehouse. What if it is overseas purchase where goods leaving vendor's Port will first arrive in my country custom, and it will take 3 days to do clearance. once it is cleared, forwarding agent will delivery goods from my country custom to my warehouse. In this case, how do I capture it in SAP system for the planned delivery time as it has 4 periods of time now
    a. Time taken from vendor's port to reach my country's port
    b. Time taken for my country custom to do clearing
    c. Time taken for forwarding agent to fetch goods from custom to my warehouse
    d. Time taken for unpack, take out , count, inspect and put for use (GR processing time)
    Do I need to use user Exit?
    Thanks
    Edited by: Daimos on Apr 27, 2009 6:52 PM

    Dear dogboy.
    I think we must use feature on the PO Confirmation Control (CC) Key at PO Item Level:
    ED - Estimated Time of Departure from Overseas Port.
    EA - Actual Time of Departure from Overseas Port.
    EA - Estimated Time of Arrival
    AA - Actual Time of Arrival
    And the purchaser will maintain the value of each of the CC Key each time they are notified by the vendor.
    And we need to come out with a Customised Report to capture those CC dates entered so that finance is able to prepare $ in advance if the moment the EA is maintained, meaning the estimated date of arrival at the Custom there.
    But the problem is that PO User Exit is only at the header of Confirmation Control Key but not capture the DATE field we entered for each CC.
    That was the problem I last encountered.

  • Unable to capture the excise duties for intra stocktransfer

    Dear All,
    while doing goods receipt aganist outbound delivery in receiving plant for intracompany(Depo to Depo) unable to capture the excise duties.Please help on this.
    Thanks & regards,
    Bhargav

    Hi Prabhu,
    Excise duties are  are not picking automatically while doing j1ig
    Thanks & Regards,
    Vijaybhaskar

  • Unable to capture the Idle time for BSP page

    Hi Experts,
    I want to capture the Idle time of my BSP page. If that is 5 mins then i have to display the pop up displaying the remaining time.
    Please let me know how to capture the IDLE TIME. not the time after the page is loaded.
    Any suggestion will be helpful.
    Aready checked in SDN but unable to get the solution so posting it.
    Thanks in advance.
    Sravanthi.V

    hi,
    After capturing the idle time iam giving the warning popup to user before 5mins of expiry.Now my requirement is if the user clicks on OK button of popup the page should get refresh. i.e.Idle time should of system should break and we have to get one more hour for expiry.
    Thanks in advance,
    Sravanthi.V

Maybe you are looking for

  • VMware Fusion - Journaled External HDD using MacDrive or NTFS?

    I plan to use VMware Fusion running XP Pro via a Bootcamp partition. Along with this I would like a dedicated external HDD for my windows work files (Premiere Pro etc). The trouble is, I'm not sure what way to go with the formatting of the external H

  • How to make a java program that will give you the list of files in the dir

    How can you make a program in java that will list all the files in a directory with out useing the File,FileWriter,FileReader,InputStreamReader,FileInputStream,RandomAccessFile etc. classes

  • Creating individual pdf files?

    Hello, I have a MacBook with OS-X 10.5.8 I used Excel and Word to create a mail merge Word doc which contains grade reports for 75 students. I need to turn each page into an individual pdf document which I can then email to each individual student. I

  • How do you modify default installation path?

    In the previous versions of AAMEE there was an option to change the default pathway for installation. I d onot see this option in AAMEE 3.0 How can I modify the installation path? All my installs are usually done on a secondary HDD. Also, there is an

  • JMSException Error finding dispatcher

    I have a JMS thin-client (linux) trying to connect to a remote JMS connection factory. The program works on any WebLogic server (8.1.SP6), but not on others. So it would seem to be an IIOP problem. I've gone through the IIOP setup doc's but nothing h