How to create a Email Notification in SRM5.0 ?

Dear SRM Experts,
This is my requirement:
Requirement: If Delivery date for a PO is approaching, system should send notification E-mails to approvers and PO initiators. Program execution and dates for notifications will be affiliate specific.
Each affiliate should be able to define text for E-mail notification and number of days before delivery date when reminder should be sent.
We need to send an email notification if Delivery date is approaching that is 3 days before delivery date,if no action is taken then
PO needs to be locked .
Kindly help  me regading the requirement.
Thanks&Regards,
Chitra

Chitra,
you can have one record per affiliate in the custom table with Standard Text name and no of days and in your program based on the text name and no of days you should able to send notification also for locking the PO from approval the work item can be deleted(by program) so that the approver can no longer approve the PO.
Thanks,
Suresh

Similar Messages

  • How to create Remainder email workflow in share point 2010 designer without creating the remainder date (calculated) column in the list

    Hi,<o:p></o:p>
    I have task to create remainder email notification 3 days before by comparing with End
    date (my list item) so i created one calculated column in the list as remainder date by using that remainder date
    i created, but my project manager told me create same remainder notification work flow without create that remainder date i tried to write calculation in work flow
    but it is not working if any one knows how to do this please help me<o:p></o:p>
    Thanking you,<o:p></o:p>
    ArunDarly <o:p></o:p>

    Hi,
    For reminder type requirements, I tend to use the ‘Information Management Policy’ SPD method as described in
    this blog article by Laura Rogers (it’s for MOSS and WSS but works in SP2010 also).
    This method avoids the use of calculated columns; rather the workflow does the calculation and outputs information into a ‘reminder’ field. Also, I don’t like the idea of ‘paused workflows’, so this method works for me.
    Cheers
    Matt

  • BB apps is not working, how to create BB email add? please help

    BB apps is not working, how to create BB email add? please help

    If none of the blackberry apps are working and you are unable to setup an email address..... have you got a Blackberry Data Plan active on your account?

  • Anyone know how to send automatic email notification in OA?

    Any where I can find a resource about how to send automatic email notification?
    say, samples, reference?
    please advice, thank you very much

    integrate your application with oracle workflow and send a notification from the mailer.
    details of working with workflow is there in the dev guide
    Thanks
    Tapash

  • Please how do I stop email notifications

    I have nothing in My Stuff>Manage email... I have all Preferences>Email... set to NO. The forum toggles say I am not receiving emails. But I am. Please make it stop. Is it possible that I have two adobe accounts under [email address removed]
    I am getting them from Premiere Elements forums. Please how do I stop email notifications?

    Unwanted Email notices - Several ideas (some overlap)
    -FAQ http://forums.adobe.com/thread/416458
    -and http://forums.adobe.com/thread/503132
    -and http://forums.adobe.com/thread/1017286

  • How to prevent specific email notification in document library?

    I've got the following scenario:
    If metadata is changed for a document in my library I want email notifications to be send out. If the document itself is changed (which happens by a background workflow) the email notification (for changed elements) shouldn't be send out. When I'm talking
    about notifications I mean user alerts which have been created for personal use.
    When you use SPListItem.SystemUpdate() you can prevent the update mechanism to be executed. Is there something similar for SPFolder.Files.Add()? 
    I've looked into writing an SPAlertHandler like this but I don't know how to catch this specific case.
    If I execute Folder.Files.Add with DisableEventFiring, will the notification be send out anyway? I would be very thankful for any advice.
    Regards Andreas MCPD SharePoint 2010. Please remember to mark your question as "answered"/"Vote helpful" if this solves/helps your problem.

    Chitra,
    you can have one record per affiliate in the custom table with Standard Text name and no of days and in your program based on the text name and no of days you should able to send notification also for locking the PO from approval the work item can be deleted(by program) so that the approver can no longer approve the PO.
    Thanks,
    Suresh

  • How to create send mutliple notifications

    Hi,
    I created a workflow for one of our module.
    My task is to create a workflow for all running projects. Each project contains different jobs and tasks. Each job owned by different Partners/Supervisors and all jobs may be executing dffferent location (may be different country/ inside one country diffent locations). Project can only close after finishing the related jobs and each project managed by a manger.
    So I need to initiate process once a project started, then workflow send email/ notifications to all supervisors/partners about their jobs and task.
    I this purpose I create a one Workflow with 2 process.
    1) First one will collect all superviosrs/partners and thier jobs/taks.
    2) Second one will send notification to these partners and Superviosrs
    My Question is How I can excute the second one from first process. First one will initate the process one time , depends upon number of supervisors/partners sencond one will excute more than one time and send notifications to each partners and supervisors.
    Also I want to get an all job completed flag from second process, that will return to first process then first process will update the project status to closed. So first process will wait until all supervisors/partners send a completed response.
    Somebody can help me to achive this.
    With regards
    Satheesh Kumar

    Hi,
    I figure out the above mentioned error, because of detail workflows were initiated before the Master Start Workflow activity. So Start Detail Workflow giving this error message.
    Find approver function intiating all process programatically. Below I am pasting the code of initiasting detail activity:
    --start timesheet sub workflow procees
    PROCEDURE start_approval_workflow (p_ts_id IN NUMBER,
    p_preparer_fnd_user_id IN NUMBER,
    p_preparer_resp_id IN NUMBER,
    p_ts_name IN VARCHAR2,
                                            p_ts_job IN VARCHAR2,
                                            p_ts_approver IN NUMBER,
                                            p_parent_itemkey IN VARCHAR2,
                                            p_parent_itemtype IN VARCHAR2
                                            ) IS
         l_itemtype           VARCHAR2(10) := 'PMSTSAPR';
         l_itemkey           VARCHAR2(40) ;
    BEGIN
    -- Get Approval run id
    SELECT XXXPMS_PMS_APPROVAL_S.nextval
    INTO l_approval_run_id
    FROM DUAL;
    -- Get AOL user name
    SELECT user_name
    INTO l_fnd_user_name
    FROM fnd_user
    WHERE user_id = p_preparer_fnd_user_id;
    -- generate the item key
    l_itemkey := p_parent_itemkey || '/' || to_char(l_approval_run_id);
    -- start workflow process
    wf_engine.CreateProcess( itemtype => l_itemtype,
              itemkey => l_itemkey,
              process => 'PMS_DETAIL_APPROVAL' );
    -- for testing               
    wf_engine.SetItemParent(itemtype => l_itemtype,
         itemkey => l_itemkey,
                                       parent_itemtype => p_parent_itemtype,
                                       parent_itemkey => p_parent_itemkey,
                                       parent_context => null
    -- Finally, start the process
         wf_engine.StartProcess( itemtype => l_itemtype,
                        itemkey => l_itemkey );
    EXCEPTION
    WHEN OTHERS THEN
    Wf_Core.Context('XXXPMS_WF_TS_APPROVAL_PKG', 'start_sub_approval_workflow', l_itemtype, l_itemkey);
    raise;
    END start_approval_workflow;
    =====================================
    Find approver procedure
    =====================================
    PROCEDURE find_approver( itemtype IN VARCHAR2,
    itemkey IN VARCHAR2,
                   actid IN NUMBER,
                   funcmode IN VARCHAR2,
                   result OUT NOCOPY VARCHAR2)
    IS
    l_project_id      NUMBER;
    l_job           VARCHAR2(10);
    l__task           VARCHAR2(10);
    l_preparer_fnd_user_id      NUMBER;
    l_preparer_resp_id           NUMBER;
    l_ts_name                VARCHAR2(100);
    l_ts_job                VARCHAR2(1000);
    l_ts_approver                NUMBER;
    CURSOR ts_appr_cur(l_ts_id NUMBER)
    IS SELECT DISTINCT OWNER FROM test_wf
    WHERE TS_ID = l_ts_id;
    CURSOR ts_job_cur(l_ts_id NUMBER, l_approver_id NUMBER)
    IS SELECT JOB FROM test_wf
    WHERE TS_ID = l_ts_id AND OWNER = l_approver_id;
    BEGIN
         IF ( funcmode = 'RUN' ) THEN
    result := 'COMPLETE:N';
              -- Get Timesheet ID from workflow engine
              l_project_id := wf_engine.GetItemAttrNumber(itemtype,
              itemkey,
                                                                     'PROJECT_ID');
    -- Get prepare AOL User Id
              l_preparer_fnd_user_id := wf_engine.GetItemAttrNumber(itemtype,
              itemkey,
                                                                               'PREPARER_FND_ID');
              -- Get prepaare Responsibility ID
              l_preparer_resp_id := wf_engine.GetItemAttrNumber(itemtype,
              itemkey,
                                                                          'PREPARER_RESP_ID');
    l_ts_name := wf_engine.GetItemAttrText(itemtype,
              itemkey,
                                                                'TIMESHEET_DOC');     
    FOR ts_a IN ts_appr_cur(l_project_id)
              LOOP
              FOR ts_j IN ts_job_cur(l_project_id, ts_a.owner)
                   LOOP
                   l_ts_job := TRIM(l_ts_job) || ts_j.job;
                   END LOOP;
                   l_ts_approver := ts_a.owner;
                   --start the sub work flow process
                        start_approval_workflow (p_ts_id                => l_timesheet_id,
    p_preparer_fnd_user_id => l_preparer_fnd_user_id,
    p_preparer_resp_id => l_preparer_resp_id,
    p_ts_name => l_ts_name,
                             p_ts_job => l_ts_job,
                             p_ts_approver => l_ts_approver,
                             p_parent_itemkey => itemkey,
                             p_parent_itemtype => itemtype
              END LOOP;          
              -- find the approver of this timesheet job from timesheet table
    result := 'COMPLETE:Y';
    ELSIF ( funcmode = 'CANCEL' ) THEN
         NULL;
    END IF;
    EXCEPTION
    WHEN OTHERS THEN
    Wf_Core.Context('XXXPMS_WF_TS_APPROVAL_PKG', 'Find_Approver',itemtype, itemkey, null );
    raise;
    END find_approver;
    I would like to know, aboce code I pasted correct or not. Current sututation is my parent workflow starting and detail workflows are also initiating properly. Bu I am not able to keep track of detail workflow are finished or not. In this detail workflow contains more than one process.
    if somebody can clarify the follwoing
    1) How I can start a multiple instance detail workflow from parent
    2) How I can get the status of detail workflow instances, (that means workflows instance responses like approved/Reject, Complete/Incomplete)
    3) How I can continue parent workflow after finish the detail workflow.
    With regards
    Satheesh Kumar

  • How to set up email notification

    Hi,
    How can I set up email notification in AV 10.2.3? I have gone through the admin and auditor docs but could not find any mention of it. Was not able to find the navigation on the AV console either. Someone posted a documentation URL link in the forum back in 2007 but unfortunately the link was broken. Can someone direct me to the email configuration page?
    Thanks.

    E-mail notification is not available as a feature in Audit Vault 10.2.3.1, the latest version available.
    However, it is possible to set up e-mail notification for alerts with some coding. Each alert raised by Audit Vault is placed on a queue in the repository. This is a standard Oracle Advanced Queue, and can be subscribed to using AQ APIs in PL/SQL or, with the JMS adapter, in Java. Once a subscriber is up and running, it will pick up any alerts that are raised and can route them to e-mail if needed.
    Sample code to do exactly this is provided in $ORACLE_HOME/av/demo/alert on the AV server.

  • How do I stop email notifications of changes to a shared calendar I subscribed to?

    I have subscribed to my sister's business calendar and I permitted email notifications of any changes she made.  How do I turn that off?

    Locking this thread, so any replies go to https://support.mozilla.com/en-US/forum/1/672706 :-)

  • How to send an email notification if no document in a library has been touched in 6 months

    The customer wants to receive an email notification if not a single document inside a document library has been not updated in 6 months. They don't want to get notifications based on single documents. They care only about the document library
    as a whole. I know you can use the list settings to send notifications or start workflows if a single document but how would you do this on an entire library?
    Get it?
    Is it possible?

    You could run something like this in powershell to check the last modified date and send an email if nothing has been modified in the previous 6 months.
    if (!(Get-PSSnapin Microsoft.sharepoint.powershell -ErrorAction SilentlyContinue))
    { Add-PSSnapin Microsoft.Sharepoint.powershell }
    $web = <website>
    $list = <document library>
    $items = ((get-spweb $web).lists[$list]).items | where {$_['Modified'] -gt (get-date).AddMonths(-6)}
    $folders = ((get-spweb $web).lists[$list]).folders | where {$_['Modified'] -gt (get-date).AddMonths(-6)}
    if (($items.count -eq 0) -and ($folders.count -eq 0)) {
    Send-MailMessage -SmtpServer 'smtpserver' -from '[email protected]' -to '[email protected]' `
    -Subject 'List items not modified in previous 6 months' -BodyAsHtml `
    -Body "List $($list) has not had any files updated in previous 6 months"

  • How to create an email blast HTML

    Ok, I have a couple of my clients emails who I have given me permission to send them an email HTML blast with my specials. How can create one using dreamweaver and send it thru my mac mail program?
    I know how to make basic html websites like this one http://www.nrgdesigngroup.com/ I just need to know how to send it with Images thru an email.
    thanks

    Hi
    Here's how I do it:
    Create your page as normal, remembering that emails can't contain any flashy stuff like Flash or Javascript (or even animated GIFs sometimes).
    Upload the images to your web server (MobileMe/.Mac space will do if you don't have your own) and that they are linked as such in your <img src>es.
    To be sure that all can read it (sometimes email programmes have trouble with HTML messages) place a copy of the html on the server too and link to it at the top of the page with something like "If you're having trouble viewing this, please click here".
    Preview your page in Safari then select Mail Contents Of This Page from the File menu. This will open a new email in Mail with the HTML embedded in it.
    Voila!
    Hope that helps
    Peter

  • How to create an email distribution list?

    How do you create an email distribution list

    This is what I do and it works!
    1.  Create a new contact in iCloud (iCloud.com) or from your iPhone or iPad.
    2.  The company name field is your distribution name.
    3.   In one email field type in or paste in all the email addresses you want in the format as listed below. That's open double quotes follow by person's name close double quotes. Open greater than sign e-mail close greater then sign.  Each additional entry follow by a comma.  Last entry you don't need to.
             "first lastName"<[email protected]>,
    I would suggest do this in Note (on the iPad) or somewhere you can see your entres. Then paste them to the email field.
    Good luck!  Hope this helps.
    Tuan
    Long Beach CA

  • How to create an email account??

    Hi,
    How to create a new email account by using Java program.
    I'm able to send and receive the mails to and from an
    existing account by using JavaMail.
    But I dont know how to create an account.
    Please help me...
    thanks in advance

    hi,
    I also have the same problem.
    I m very confused about how to create mail accounts.
    My mail server is using linux.
    Can u plz help/guide/suggest me on "how can i add facility of new mail account creation like yahoo mail / hotmail....??? "
    -- what programming language/scripting language i should use which is secure also.
    Plz help me.
    Any type of help will be greatly useful to me.
    Thnk u very much.

  • How to create an email inbox?

    Hey everyone,
    I am in the middle of a project but i seem to have come to a roadblock. I am in need of a way to create an email inbox in flex, but I am fresh out of ideas of how to do this, and I can't seem to find any documentation about how to do this. Do any of you have ideas or know of a source to learn how to do this? All help is greatly appreciated!

    Mainly I am struggling with how to even start. I figured I would use a dataGrid to display the emails, but how to retrieve and update them I do not know. I am currently using Augie Marcellos email script to send the email, but would change it based on the inbox settings to use my mail server. Any ideas?

  • How to create an email list server solution with java

    hi all
    I would like to create a email list service with java.
    (when I say email list service, I mean , you send email and everyone who subscribes to the list receives the email automatically or the email is held in a queue for approval )
    this solution would have to be integrated with the emailing standards .
    Could someone share with me how one would create a list service with java and how it would work with the email and pick it up ?
    stephen

    or if there is an open source solution please let me know
    stephen

Maybe you are looking for

  • How do I delete a Pages file from the Users directory?

    Browsing my new MacBook I've spotted that a version of one of my earliest Pages docs is stored directly in the Users directory. There is no option in Finder to delete it. I can drag a copy elsewhere, but I want to get rid of it completely. How do I a

  • Calling init method on backing bean when JSP loads

    Hi All, My problem seems simple, but I'm not having much luck finding a solution. I have a JSF page that shows the details of an employee. So I have an employee.jsp with a backing bean EmployeeController which works fine. The change I need to make is

  • Table in webdynpro

    hi, i have  displayed a table in webdynpro in that the first column is a listbox. when i select a value it should display the corresponding details in the other columns.

  • Sending a huge video clip via email?

    hey, what is the easiest way for me to send a video clip to someone via email. In quicktime & FCut the file is HUGE around 1000 mb, I have compressed it using compressor to H.264 but it is still 22 mb and on the email the video viewer is sooo small l

  • Is it possible to turn off 1 CPU in a dual system?

    I'd like to use just one (or mostly one) CPU till the parts arrive to repair my LCS. (I want to avoid cooking the CPU that isn't getting coolant)