WorkFlow Reject Notification

Hi ,
I have a requirement like the workflow should be Approved when all the list of people in the Approval list. If any one rejects then it should result in Rejected and notification should be deleted from the rest of the people , who are not responded.
For ex:
4 people in the approval list. Workflow will check all 4 are approved are or not. For suppose one person rejected then approval requested notification should get deleted from the remaining 2 people.
Now.. we are good with the Approva process but when the 2nd person rejected it is not deleting from the rest of 2 people.
Can anyone tell me how to acheive this
Thanks in Advance

Hi,
Build a role (either use a responsibility with the people in it, or use an adhoc role) and send the notification to the role without ticking the expand roles box.
Everyone in the role will see the notification, and as soon as one of them responds, it disappears from everyone's list.
HTH,
Matt

Similar Messages

  • Display Content Workflow reject notification inside webcenter spaces

    dear all
    i want to ask if there is anyway to display content workflow rejected notification inside webcenter spaces
    regards

    dear all
    i want to ask if there is anyway to display content workflow rejected notification inside webcenter spaces
    regards

  • Content Server: Workflow Reject Notification

    When I approve content via content server workflow, email notifications are sent to the person in the next stage of the workflow process. But when I reject content a notification is not sent to the person in the previous step. Has anyone experienced this problem? If so, do you have any suggestions that I can use to resolve this issue?
    Portal 5.02 .netContent Server 5.02
    Thank You,
    Sergio

    Sergio,
    Were you able to figure out why this was happening? I'm experiencing this problem myself. Another problem I'm having is when a step has multiple assignees, e-mails are being sent out to only one of the assignees. Let me know if you know about this one or figured out why rejection notifications were not being sent. Thanks,
    Portal 5.0.4
    Content Server 6.0
    Tania------- Plumtree Domain AD\SergioP wrote on 4/5/05 1:36 PM -------
    When I approve content via content server workflow, email notifications are sent to the person in the next stage of the workflow process. But when I reject content a notification is not sent to the person in the previous step. Has anyone experienced this problem? If so, do you have any suggestions that I can use to resolve this issue?
    Portal 5.02 .netContent Server 5.02
    Thank You,
    Sergio

  • PO change version Approval/Rejection notification to requester

    Dear SRM Gurus,
    We are in stand alone scenarion of SRM 7.0 using process controlled WF.
    We have received an request to send out notification on approval / rejection of and PO change version.
    The PO's are created automaticaly from approved SC's and only the PO change triggers the approval WF.
    I've already checked the IMG: SRM server > cross application > Event and event schema for alert management.
    1. Define events: BUS2201 Purchase order is present with APPROVAL_PROCESS_DOC_APPROVED and APPROVAL_PROCESS_DOC_REJECTED
    2. Define event schema for obj. type BUS2201 event schema PO the APPROVAL_PROCESS_DOC_APPROVED and APPROVAL_PROCESS_DOC_REJECTED with subcategory event APPROVAL_RESULT_NOTIFIC_NEW are set to event category NOTIFIC Message.
    3. Define Recipient of notifications: PM Approve change version of purchase order - User Role CR contact person the options rejection and approval of application object are selected.
    The users I'am using to test are the same as those who receive notifications for SC rejection/approval so I guess it's not connected to SU01 or PPOMA settings.
    Still I don't see notification sent via SOST.
    Any ides what I could check next please?
    Thanks in advance for you help.
    Michal

    Hello Michal,
    did you give the event schema created to corresponding transaction type ?
    If you are expecting to receive notification during approval workflow, check OSS note [1395980 - No notifications of approval sent during approval process|https://websmp101.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=1395980&_NLANG=E]
    For PO, you can also check OSS note [1572957 - PO change version reject notification not sent|https://websmp101.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=1572957&_NLANG=E]
    Regards.
    Laurent.

  • Are there WF Signature Request "Rejected" notifications?

    In GSM WF, we have a step that requires a couple of Signature Requests from different functional areas.  We have noticed that when a signer rejects to "sign" that no email notification is going out to the owner of the step.  This is counter-intuitive to user experience and different than the way Supplier notifications work on SRSA workflows.  Is there a configuration to turn the GSM WFA Signature Request Rejected notification = "ON"?  If there is no configuration option, how have others solved this?  Are your users asking or have asked in the past for notification when another rejects their spec object? 
    Thanks!  --Beckie

    OK, let's go over how this gets implemented:
    NOTE: Remember that this would be a custom solution. We are working on improvements to signature documents for an upcoming release.
    Because Signature Documents have their own workflow, we can add a workflow action (class) that gets triggered when a Signature Document moves from Review to Rejected/Not Approved. The Signature Document workflow is not managed in the UI, so to add a workflow action, we will use a simple database script. The custom Workflow Action class can send an email to the specification owners informing them that a signature document was Rejected, and include some helpful information.
    For example, the email body could look like the following:
    A Signature Document was Rejected for the following specification:
      Spec Number:     5112558-001
      Spec Name:        Papaya Pineapple Juice
      Current Status:  Design
    Signature Document Rejected by:
      User:    John Doe
      Reason:  Missing custom section XYZ details
    Click to view the signature document --> http://<servername>/gsm/BaseForms/frmSignatureDoc.aspx?SpecID=5816d6dc0945-a9b7-43d4-82f0-235b7b6946ff&SigDocID=5769d6654ad6-e77a-4264-bf71-0a45fac4338f
    Steps:
    1. Create a new Visual Studio project (or potentially use an existing one if you already have one for workflow actions or validations)
    2. Add the following PLM for Process DLLs as References (get them from the SharedLibs folder of your release):
    CoreAppPlatform
    DataInteraces
    DataLib
    DataObjects
    GeneralServices
    GSMLib
    LinearWorkflow
    PluginExtensions
    ProdikaCommon
    ProdikaLib
    WorkflowCore
    3. Create a new class that extends the SimpleLinearWorkflowActionBase class (from Xeno.LinearWorkflow). Here is a reference example (note this is an example class and is for demonstration purposes only):
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using Xeno.Data;
    using Xeno.Data.GSM;
    using Xeno.LinearWorkflow;
    using Xeno.LinearWorkflow.WorkflowObjects;
    using Xeno.Prodika.Application;
    using Xeno.Prodika.Common;
    using Xeno.Prodika.Config;
    using Xeno.Prodika.GSMLib.Workflow;
    using Xeno.Prodika.Services;
    namespace SampleWorkflowExtension
        public class SignatureRequestRejectionNotificationAction : SimpleLinearWorkflowActionBase
            public override void Execute(ILinearTransitionContext ctx)
                var transitionContext = (SignatureDocLinearTransitionContext)ctx;
                ISpecificationService specService = GetSpecService();
                if (specService != null)
                    var currentSpec = (IBaseSpec)specService.Current;               
                    var specOwnerUsers = GetSpecOwnerUsers(currentSpec);
                    if (specOwnerUsers.Count > 0)               
                        SendEmailToSpecOwners(specOwnerUsers, transitionContext.SignatureDocument, currentSpec, transitionContext.Comments);
            private static List<IUser> GetSpecOwnerUsers(IBaseSpec currentSpec)
                return (from ISpecOwner specOwner in currentSpec.SpecSummary.Owners.Values
                        select AppPlatformHelper.DataManager.objectFromID(specOwner.OwnerID)).OfType<IUser>().ToList();
            private void SendEmailToSpecOwners(List<IUser> specOwnerUsers, ISignatureDocument sigDoc, IBaseSpec currentSpec, string workflowComments)
                var userService = GetUserService();
                string currentSigDocUserName  = userService.UserContext.User.Firstname + " " + userService.UserContext.User.Lastname;
                var specSummary = currentSpec.SpecSummary;
                var currentUser = userService.UserContext.User.ContainedUser as IUser;
                if (currentUser != null)
                    string from = currentUser.email;
                    string to = StringHelper.Join(specOwnerUsers, x => ((IUser) x).email, ", ");
                    string subject = String.Format("Signature Document Rejected for Spec {0} ",
                                                   currentSpec.SpecSummary.FreeTextName.Name);
                    string body = String.Format(_emailBodyTemplate,
                                                specSummary.SpecNumIssueNum,
                                                specSummary.FreeTextName.Name,
                                                specSummary.WorkflowStatus.Status,
                                                currentSigDocUserName,
                                                workflowComments,
                                                DeploymentConfig.GetAppURL("GSM"),
                                                specSummary.SpecID,
                                                sigDoc.DocId);
                    EmailService().SendMessage(from , to, subject, body);
            //todo: this should be in the database as a translation
            private const string _emailBodyTemplate = @"A Signature Document was Rejected for the following specification:
      Spec Number:     {0}
      Spec Name:       {1}
      Current Status:  {2}
    Signature Document Rejected by:
      User:    {3}
      Reason:  {4}
    Click to view the signature document --> {5}/BaseForms/frmSignatureDoc.aspx?SpecID={6}&SigDocID={7}
            private static ISpecificationService GetSpecService()
                return AppPlatformHelper.ServiceManager.GetServiceByType<ISpecificationService>();
            private static IUserService GetUserService()
                return AppPlatformHelper.ServiceManager.GetServiceByType<IUserService>();           
            private static IEmailService EmailService()
                return AppPlatformHelper.ServiceManager.GetServiceByType<IEmailService>();           
    4. Compile the class and place the dll into web\gsm\bin.
    5. Run the following database script to add the workflow action to the Reject workflow transition, replacing the classname, namespace, and assembly (in green below) name to your classname and assembly name. SigDocRejectSample is just a reference name for this workflow action - you can change it to something more meaningful:
    insert into gsmWorkflowActionTemplates
    values ('57602CF17ABE-9AF7-4E32-9A61-76DF5AA0E09C', 'Class:SampleWorkflowExtension.SignatureRequestRejectionNotificationAction,SampleWorkflowExtension',
    '57574dd649e7-2454-4d84-a0f3-7377d6d2c57f', 'SigDocRejectSample', 0, 0, 0);
    6. Restart the GSM application
    That's it! You should be ready to test it out.
    Note that this sample has the email subject and body written in the class, and written in English. Ideally, to support multiple languages, this should be added to the database, into the commonXLAExtensionCache and commonXLAExtensionCacheItem table. I will write up a followup on that or handle it in an upcoming Dev To Dev.

  • EPM Workflow Email Notifications

    I have inherited an EPM implementation that has EPM Workflow Email Notifications. The email text is not very informative and I want to customize this text to something more meaningful. I have been told this cannot be done, but find this very hard to believe.
    Does anyone know if this can be done? Many thanks, in advance.

    Hi,
    I am assuming these email notifications are sent when the project moves between workflow stages, approval etc.? The short answer is: yes, the text of the email notifications can be updated. However, it depends on how your workflows have been built, which
    tools have been used  (e.g. SharePoint Designer, Visual Studio, 3rd party tool etc.) and the project server version - 2010/2013.
    If you are using project server 2013, check if the workflows have been built using SharePoint Designed (open the PWA in SharePoint designer and check the site workflows)
    Hope this helps
    Paul

  • PO Reject Notification - How to change notification text

    Hello,
    We have setup the PO reject notifiation in SRM 7.0 (event APPROVAL_PROCESS_DOC_REJECTED  Sub Category APPROVAL_RESULT_NOTIFIC_NEW). The PO creator is receving the reject notifications.
    How can the text being sent on the PO reject notification be changed?
    Thanks,
    Zack

    Hi,
    Please check the program /SAPSRM/OFFLINEAPPROVALSEND...
    This is the program you should have been scheduled to send offline emails..You can add your own Notification line under Standard Notification Text in this program..
    Thanks!!
    Bharath

  • Reject Notifications not appearing in list

    Hi Gurus,
    I've enabled AME's for payable Invoice approval. It is working fine but when any user reject the invoice then it is not sending any return reject notification to previous user who has submitted.
    Is there anything do I need to enable for triggering the reject notifications.
    Appreciate your help.
    Regards
    Nagendra

    Is there an Exchange server involved here?  Is Outlook involved here?  If so, which versions?  If Outlook only, I recommend that you post this in the Outlook Forum: 
    http://social.technet.microsoft.com/Forums/en-US/outlook/threads
    By the way, I've never known Exchange or Outlook to support this feature.
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • Role Rejection Notification Issue

    Hi All,
    I have a doubt. Please help.
    When Request is rejected, Notification Event "REJECTED" triggers and mail notification is sent to inform Requestor or User.
    When user has selected 3 roles, out of which 2 are approved and one role is rejected. How to inform the user through mail notification that particular role is REJECTED by the role owner?
    Also I observed one more scenario
    My request has 2 roles with 2 different role owners. Both the owners rejected their respective roles and entered the comments for rejection. But since in LineItem rejection, role owners enters comments at LineItem level and then clicks on SUBMIT button, though both the roles are rejected at role owner stage, request is going to the next stage and getting closed there.
    Because of this the closing notification which we have maintained at 3rd stage is getting triggered though request ended at 2nd stage.
    I assume this is how GRC 10 system is behaving. So wanted to know how other consultants handled Role Rejection notifications in GRC 10.0. because i went through few notes and SAP confirmed that this is the standard behaviour
    1960393 - No detailed user notification for the rejected roles
    1849378 - GRC-10.0- MSMP, rejection notification is not getting triggered in case of 'System and Role' setting at Stage level
    Please provide your valuable inputs.
    Thanks in advance.
    Regards,
    Sai.

    Rejection notification will only be sent out if the whole request has been rejected, not if individual line items have been rejected.

  • Error on Workflow email notification in oracle 11.5.10.2

    Anyone seen similiar error on Workflow email notification in oracle 11.5.10.2
    UNEXPECTED:[fnd.wf.bes.server.SystemLoader.getLocalSystem]:Caching disabled due to JTF exception: oracle.apps.jtf.base.resources.FrameworkException: CacheComponent not registered (KEY=FND_BES_SYSTEM_CACHE) (APP=FND)
    UNEXPECTED:[fnd.wf.bes.server.AgentLoader.getAgent]:Caching disabled due to JTF exception: oracle.apps.jtf.base.resources.FrameworkException: CacheComponent not registered (KEY=FND_BES_AGENT_CACHE) (APP=FND)

    I do not see any similar issues reported in MOS website that could be relevant to Workflow.
    Can you find any errors in the database log file?
    Please run the diagnostics scripts in these docs and see if it helps.
    Troubleshooting Oracle Workflow in Applications 11i [ID 262011.1]
    11i: Oracle Workflow Cartridge (WF): Workflow Java Mailer Diagnostic Test [VIDEO] [ID 1148948.1]
    11i: Oracle Workflow Cartridge (WF): Workflow Health Check Diagnostic Test [VIDEO] [ID 1148953.1]
    11i : Oracle Workflow Cartridge Workflow Java Mailer Setup Test [ID 274764.1]
    If the diagnostics scripts did not help then I would suggest you log a SR.
    Thanks,
    Hussein

  • Workflow in Notification

    Hi,
    Can any body help me in getting workflow in notification.can give path also be appreciated.
    thanks
    vardhan

    Hi
    Workflow is used to inform the people or departments responsible automatically that a series of tasks must be executed in the following order:
    Processing of a newly created maintenance notification (notification status Outstanding)
    Processing of a maintenance notification with outstanding tasks (notification status In process)
    Completion of a maintenance notification (status of all tasks Completed)
    The person(s) or department(s) responsible receive a mail (work item) in their inbox informing them of the tasks to be performed
    Creation of notification/changing of status of notification or completion of notification can be taken as an event to trigger mail to various users/groups for follow up actions. You can consult a workflow consultant/ABAPers to incorporate your logic for workflow as in standard you dont have such flexibility.
    Shakti

  • Is there a way to customize the MDM Workflow email notification content?

    I am looking for a way to customize the MDM Workflow email / notification  content. For example, I might want to put the Supplier ID(s) of the impacted supplier records (be it Update, Insert & Delete) into the email body or put an URL into the email body.
    Can MDM Workflow do this?
    Is there any workaround?
    Thanks

    Hi,
    What you can do is add a boolean field to the repository, for instance "Send Mail". You can use an assignment in the Workflows to set this field to true. Next, define an updatelistener and pick up the change to this field. If the value is "true", send out an email. Afterwards, let the listener change the value back to "false".
    Good luck,
    Gerwin

  • Workflow and notification

    Hi Experts!!
    Please guide how can MDM workflow send notification to user who is outside the MDM system.
    In my scenario,user logs to one system for material number generation and mdm workflow starts only when data is imported by SAP MDM.On sucessful completion or not the end user needs to be informed,who is outside MDM workflow.
    How can i achieve this?
    Thanks

    Hello rav343
    From MDM WF you can send e-mail.
    For that :
    1) Some pop/smtp server should be installed in your system and running
    2) in mds.ini for your repository you should set parameter "Mail Server="
    3) e-mail receiver should be in mdm users list and parameter "e-mail adress" should contain receiver e-mail
    Your WF  may be next
    start->e-mail->end
    In "e-mail"  you should select receiver user from list of users and fill e-mail subject and text
    when you launch that WF e-mail will send automatically to selected yoser by e-mail address that you filled in user parameter
    Regards
    Kanstantsin Chernichenka

  • Workflow Mailer Notification Configuration...

    I am new to Oracle Workflow ,Can anyone provide me with the steps to configure Workflow Mailer Notification ? I have already referred to some metalink notes but they are not proving to be of much help.

    Please review the following notes, it should be helpful:
    Note: 164871.1 - Configuring the Workflow Notification Mailer in Oracle Applications Manager 11i
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=164871.1
    Note: 279166.1 - Oracle Workflow Cartridge Workflow Information Data Collection Test
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=279166.1
    Note: 234436.1 - How-To Setup Workflow Mailer in an Oracle Applications 11i environment
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=234436.1

  • Processing workflow reject on first step

    Hi all,
    May i know how to process reject code when workflow reject happens on the very first step.
    I understood that if happens on the second step, we should process the reject code on the entry event of the first step, but may i know how it happens on the first step?
    thanks

    Review/Edit Revision, or Review/New Revision types of workflow steps provides an option, but not necessity to modify the content (the current, or a new revision). Therefore, yes, it is possible to have a Review/Edit Revision step with zero reviewers. It will forward processing the next step (note that you could define Entry, Update, or Exit event scripts for this step, so a "zero reviewers" step can serve as a fork).
    On the other hand, it is not possible to jump to a Review step after rejection. From whatever reason it follows the design that rejection expects the content item to be changed, which cannot be done in a Review step. Another (IMHO illogical) design aspect of REJECT is that it does not execute the Exit event.
    Having asked the first question, yes, you could place an arbitrary zero reviewers Review/Edit Revision step in front of a Review step to achieve that REJECT returns to the Review step (it will return the the Review/Edit Revision, but follow immediately to Review).

Maybe you are looking for

  • Ipod 3g it's not recognized by itunes 11.1.5

    When I plug it, my mac book pro doesn`t recognize it. It doesn`t show up on the desk or itunes, since I update it please help!

  • Upgraded to mavericks and now both email accounts have been merged into one

    just upgraded to mavericks and now both mine and my husbands email accounts have been merged together rather than having separate inbox's.  How do I separate them again?

  • My MacBook Pro email is Version 7.3 (1878.2).

    Sporatically my mail will reload old mail. I have recently added a iphone 4s. Why? How can I fix this? Also, my Junk folder will not show any junk, but then when I go to my hotmail account thru Safari, junk messages will appear. I have lost immportan

  • Tinify - a tiny script to make urls tiny

    I wrote a small script to make urls tiny quickly. dependencies are curl and xclip (for convenience) there are two possible ways to use this: 1. copy an url to the X clipboard, run the script (e.g. through a hotkey) and immediately paste the tinyurl a

  • Exporting pdfs

    I can't get a pdf created with pdf producer PDFLib  4.0.3 (win32) to convert into excel.