Notifying Users when Approving a PR

Hi,
How to configure SAP,
1) Automaticly sent a e-mail to approvers when PR is sreated and saved
2) Aumaticaly sent e-mail to all relavent approvers when a PR is rejcted
3) Automatically sent a e-mail to PR creator when it is convertted to a PO

Hi,
You need to go for Workflow
Refer links:
http://wiki.sdn.sap.com/wiki/display/ERPLO/ReleaseprocedureforPurchaseRequisitioninMM
http://wiki.sdn.sap.com/wiki/display/ABAP/TriggeringtheworkflowbyreleasingapurchaserequisitionandautomaticallycreatingaPurchase+Order
Regards,
Biju K

Similar Messages

  • Notify User When Student Discount Is Near 1 Year Expiration

    I think it would be fair to notify users when their 50% off student discount is about to expire. I was recently suprised when my bill jumped to $10 with no notice. Could be notififed through application or by e-mail. I just think it's a fair thing to do. Keep up the great work though.

    Updated: 2015-08-07Marked as new idea.

  • Notifying users when a request is made

    Hello Friends,
    I have a problem when launching notifications when sending response to a request.
    Here the scene in detail:
    1. The user user01 (who makes the request) with mail account: [email protected] makes a resource request through the administration console of Oracle Identity Manager.
    2. He gets a notice via email to the user's account approv (who approved the request) to account mail: [email protected]
    3. The sender of the email the user approver in this case is correct:
    From: [email protected]
    To: [email protected]
    4. When the user approver approves or rejects the request he receives a message notifying the requesting user
    From: [email protected]
    To: [email protected]
    5. According to point No.4 the requesting user should receive notification of the user in this case: From: [email protected]
    The stage is on an environment of Oracle Identity Manager 9.1.0.2
    Any recommendation to correct this notification process. thanks

    Friend,
    What is required is notified through the e-mail to each applicant (this part if configured correctly) when making the request and notify the approver with your email address to the requesting users the status of the application when approved or rejected (in this part the notification has been done with the requesting user's account. See example in the previous thread)
    In addition the accounts you have created with the duly completed Mail field.
    Thanks..

  • How to notify users when they are timed out?

    So I am a developer for fortune 500 company and the network infrastructure team came to me with an odd request for an application that taps into Anyconnect. I find it hard to believe that this functionality doesn't exist.
    So here is the scenario. We have Anyconnect set up to not have an idle timeout. However we have it set up to disconnect after 12 hours.
    Here is the problem. When the end user meets that 12 hours, it just disconnects on them. There are no warning messages, no messages they have been disconnected. Just the connection is terminated.
    So my question is there any way to set this up to notify the user they have been disconnected and need to reconnect. Is there a way to notify them in advance that they will be disconnected in say 30 minutes?
    They want me to create an application that periodically checks the connection time by executing
    C:\Program Files (x86)\Cisco\Cisco AnyConnect Secure Mobility Client>vpncli stats traffic
    Getting the time connected then if they are nearing the timeout time then start presenting the user with a warning.
    So that's basically my question. Is there no way to set this up in Anyconnect? If we are supposed to see these messages is it something our team might have disabled?
    We are using Anyconnect 3.1.01065 on Windows XP and Windows 7

    >> You don't have an idle timeout but will force disconnect after 12 hours? Does this really makes sense?
    Actually yes, at least in our environment. Using Citrix applications and VT Terminal applicaitons they need a constant connection. If the user disconnected say via an Idle Timeout then their sessions into these applications can and will hang. Not only that the older VT terminal sessions if hung durring a process that locks records or tables then it is locked for everyone. They have to call our helpdesk and have them kill the user. Citrix gets a little wacky as well if the user just blinly disconnects. So idle timeouts are actually a bad thing. Also a user might through a terminal session or though a citrix connection start a long run transaction. For example a blueprint sent off to a render farm could take 3-4 hours to render some have even take 10 hours. So a user may start a process and then go away especially on the weekend.
    So while there are issues with the internet in general that can cause disconnects most of this software will try reconnecitng from the server to the client everal times before finally giving up. So a quick break in internet connectivity is not an issue, a idle timeout where it doesn't reconnect until the user returns doesn't work.
    Thanks for the link though, that will help

  • Notify users when their disk space is running low

    Hi all,
    I'm an administrator of about 100 Apple macs and an OS X server and generally speaking, problems are pretty easy to fix. There is just one major problem I'm always having and its simple to fix, which is that when Users run out of home disk space (only 600MB each) applications start crashing (understandably). The problem is that users don't actively watch their free disk space and when things start going wrong, I'll come along and point out that they need to delete some things and it'll start working again.
    What I'm having trouble with (because I'm an absolute beginner) is making an AppleScript (or whatever would be best) to watch for when their home space is getting full (with 20MB free space) it'll pop up and say "don't trouble the technician, delete some files!" (or something along those lines)
    So, here's what I have (pretty pathetic)
    tell application "Finder"
    set freeSpace to (free space of (get startup disk)) div 1024 div 1024
    end tell
    Is their a way of finding disk space of a Home Drive (which is on a network drive on the server)
    What I'd like is to say
    tell application "Finder"
    set freeSpace to (free space of (get home)) div 1024 div 1024
    end tell
    It tells me "can't get free space of folder "stephenl"" (my home folder)
    Could anyone please help

    --I'm sure there are several ways to do what you want; here's one that works on an individual computer. If necessary, suitable changes should be possible for server situations, but someone else will have to jump in on that. Copy this to Script Editor, make suitable modifications, then save it as an application; be certain "Startup Screen" isn't checked. Either have the user start it when the computer is started up, or place it in the log-in items (System Peferences) so that happens automatically.
    set message_ to "Stephen! Don't trouble the technician, delete some files!" -- modify to suit
    set MinAllowFS to 20 -- set this to the available disk space you want to trigger one or more of the responses. MB doesn't have to be specified if everything is in MB (max. possible space, etc.), otherwise some adjustments will have to made to the script. To TEST the script, set the number above what you know the available space could be.
    repeat --(However often you want to check free space)
    delay 5 --that's 5 seconds; if you think every 10 minutes is often enough to check, make that 600; or make it 0 and the script will repeat essentially in the time it takes to run, which is about 2.5 seconds on my machine
    try
    set bootDiskInfo to do shell script "diskutil list | grep 'stephen'" -- this gets information for all disks, and then finds the line pertaining to disk 'stephen' (change as necessary)
    set bootDiskID to last word of bootDiskInfo -- that last word is the identifier for the disk you're after
    set FSinfo to do shell script "diskutil info " & bootDiskID & " | grep 'Free Space'" -- similar to the above command, getting the free space for the boot disk.
    set ActFS to word 3 of FSinfo -- word 3 is the numerical value of the free space, irrespective of the multiplier (KB, MB, GB etc.); as stated previously, there will have to changes to the script if the spaces range amongst multipliers.
    --Pick one or more of the following responses by removing the comment ("--")
    if ActFS < MinAllowFS then beep 3
    --if ActFS < MinAllowFS then display dialog message_
    --if ActFS < MinAllowFS then say "[[rate 180]]" & message_--[here's a link on using speech: http://www.blankreb.com/studioarticles.php?ID=3
    end try
    end repeat

  • Review activity set to notify Affected User of Approval Required - Service Request

    We are trying to setup a new employee on boarding process.   We have a service request form that gathers information.
    We also have a review activity that the affected user (who is the manager on boarding the employee) has to approve when they get a signed confidentiality agreement, etc.
    We cant set Affected User as a Reviewer but the affected user can approve.  
    How can we notify the affected user to review and approve the review activity.
    On the screen shot below it is the first review activity.
    Note:  we have some workflow activity events setup that work when the reviewer is assigned in the template.
    Thanks Lance

    You want to set the affected user of the SR as a reviewer on the RA? In essence approving their own request. Why not just make the signed confidentiality agreement mandatory (cannot create request without it). 
    Anyways you have two ways to go. A custom workflow/scheduled PS-script or a runbook. If you have Orchestrator that is the easiest. Setup a "Monitor Object" that targets new SRs and a criteria that uniquely identifies the SR (Title may do). Then get the related
    user from the SR and add this to the RA as a reviewer. Should be fairly easy to google a blog on specifics on how to do this.
    http://www.scsm.se/?p=895
    and a long one:
    http://blogs.technet.com/b/servicemanager/archive/2012/05/22/working-with-relationships-in-the-scsm-orchestrator-integration-pack.aspx
    http://codebeaver.blogspot.dk/

  • Comments when approving User Registration

    Hi,
    When approving a registration request for a new user from CRM HTML administrator, there is a Comments to User box in the last step, where Approval/Rejection text can be entered.
    There is also a tip provided below the text box :
    "The comments you enter will be seen by all other approvers, and will also be sent to the requester as the reason for the approval/rejection".
    But these comments do not come in notification to requester.
    Where are these comments used?
    Regards,
    Mohammed

    hi,
    when comments are entered in that box, those comments are sent to the isupport user being approved. the isupport user sees those comments in the body of the email that says that his request for an account has been approved.
    regards.

  • Notify me when a specific user comes online

    As said in subject, seems to be reasonably better feature, than notify me when users come online.
    Can be implemented via mouse menu over contact. Same as here:
    http://community.skype.com/t5/Windows-desktop-client-Ideas/Pop-up-notification-when-a-specific-user-...
    Vlad.

    or even better, "notify me once when this user comes online" with missed notification on skype tray icon if notification was missed. Would be a great feature.
    (And yes, please reduce skype files size and and all that social posts integration, much better if social integration would be a super cool option just to call people over a stable 3g connection)

  • How to Remove Edit permissions to a group/user when an list item is approved.

    Hi,
    We have a requirement of removing the edit permissions on custom list item when a item is approved, this I have to implement using OOB feature or customization and designer, but no code should be involved.
    Can anyone please suggest me to implement this.
    Thanks, Swaroop Vuppala

    Check this below
    You need to use item level permissions.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/9e3a624e-77d3-432f-9a2b-3f25b925423a/how-to-remove-edit-and-delete-option-for-a-list-item-when-approval-workflow-is-complete-and?forum=sharepointgeneralprevious
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • How to find the user who approved the workitem.

    Hi experts,
    I have created a parking/posting workflow.
    When the user Approves, parked document is posted and BKPF table is updated with WF-BATCH as user name.
    Now I need to find the actual user who approved the workitem for posting.
    My plan is:
    1. Find the workitem id using the BOR, company code, document no, year, task no.
    2. Find the user who processed the above obtained worktem id.
    Please let me know the tables for the above points 1 and 2.
    Or let me know if there is any other way to find the actual user.
    Regards,
    Karthik

    Hi,
    To get the workitem ID with respect to a specific business object instance make use of the FM SAP_WAPI_WORKITEMS_TO_OBJECT
    To know who processed the determined workitem either you can make use of the FM SAP_WAPI_GET_WORKITEM_DETAIL or directly read the table SWWWIHEAD and you can find the actual agent WI_AAGENT this is the field which says who has executed the workitem.
    Regards
    Pavan

  • I want to send notifications to outside(i,e mail box) from oracle, and users will approve the notification from email

    Hi
    I have a client required to send notifications to outside email box, and also user will approve this notification through email.(i,e not logged into oracle and approve it) in 11i instance.
    i need to send mail from po department to finance department
    once finance department approves , then mail back to po department that your notificaiton approved.
    from address:=[email protected]
    to address:=[email protected]
    as part of this we did IMAP set up
    and used the following code. and getting the notifications from Oracle to my mail box.
    my main issue is when user approves the wf notifications, it is not showing my specified email address in the attribute #WFM_REPLYTO, always it is showing the IMAP set up wfdev address
    what is the value i need to use for this #WFM_REPLYTO
    eventhough i am sending the to_address email id to the following attribute(wf_engine.setitemattrtext), the workflow approval not working for that email id.
    only if i am using the '[email protected]' in the imap set up, then only approval is working.
    how can i override this to_email address value([email protected]) to my desired email address?
    wf_engine.setitemattrtext (itemtype => l_item_type,
    itemkey => l_item_key,
    aname => '#WFM_REPLYTO', -- to_ address
    avalue => '[email protected]' -- [email protected]
    if any body having some sample code related to this please share on this.
    Thanks
    sam

    Sam,
    Can you find any errors in the Workflow log file?
    Please review the following docs.
    Setting Different Values For Attributes #WFM_FROM & #WFM_REPLYTO Does Not Happen Or Results In SAXParseException (Doc ID 1455191.1)
    How To Change The Default From and Reply To Email Address For Workflow Email Notifications (Doc ID 760477.1)
    Thanks,
    Hussein

  • Need to send notification to user when salary added or updated on Salary form (11.5.10.2)

    We do not have AME so workflows are not available to us, but I need to find a way to send notifications to users/managers of salary changes.  When a user adds or updates a salary, it needs to go to a second user for approval.  The second user is not going to know to approve without a notification that one is ready to approve.  Can someone help me set this up?  I don't see anywhere in the form where it can be personalized. Is there a simple way to do this?  I see from blogs that some used an alert which fired when the salary admin record is inserted and sent a message to the manager. The manager could then go back into the salary admin form with the salary admin:approve profile on and approve it.  Or if that wouldn't work, then to use a trigger.  Where would these be done at using the Salary form?
    Any help would be appreciated!

    Any thoughts?Just kill the user

  • Cusomize the Leave Approve view when approve from UWL

    Hi,
    The user is approving the leave from the UWL.
    when they click on the work item then in the Pop Up window the java application starts.
    Now we want to hide the Duration field from the last confirmation field.
    I tried to hide these fields  from the Leave Request Approval iView, but it did not help.
    Kindly provide your inputs
    _vishal

    Hi Vishal,
    I have worked on this requirement before. What you need to do is copy the standard iview of the LeaveRequestApprover application into your customer space. Then hide the buttons in this iview through webdynpro personalisation.
    After that you have to download the xml file which gets called for the  LeaveRequestApprover application (you can find this by switching on the UWL Support Information) and change the action  to 'iviewlauncher' and in the 'property' provide the pcd location of the iview in the customer space.Then re-register the UWL.
    Hence when you will click on the Leave Request Workitem from the UWL, this custom iview (already personalised by you) will be launched and not the webdynpro application.
    Please see the required details for changing UWL xml code for ivew launcher in SAP Help Library.
    Thanks and Regards,
    Pinki

  • Custom SRM workflow: task forwarded to last change author when approving.

    Hi experts.
    We encountered this strange behaviour when approving a Purchase Order, previously rejected.
    More precisely: the PO is created by user A, user B rejects it, user C approves it, then the same workitem sent to C is forwarded to B instead of being routed to user D through the flow. I do not want this to happen.
    Is there a way I can modify/customize this?
    Many thanks.

    Short answer: Yes.
    Longer answer: only you know which workflow template you are using. Is it a standard SAP template? If so, which one? Is it your own custom workflow? If so, you have to explain it if we are going to be able to provide any help.
    I won't be surprised if your response is that you are using the standard workflow that you customize with release procedures. But I can't know that, so please (everyone) be specific and informative when you ask questions. The readers here may all have some workflow knowledge, but most of us are not very good at reading other people's minds.
    PS: Version information can also be quite significant. In some cases there are big differences between e.g. R/3 4.6C and ECC 6.0.
    If you have used the release procedure customizing it could be your customizing that causes the behaviour you have observed. Please give some more information about your current setup.

  • Make iSight camera take a snapshot of the user when keywords are typed

    I work in an APR and we have a lot of trouble with people trying to look at adult content on our customer machines. Obviously we have blocked these types of sites, but we cannot keep tabs on all the proxies. We have also deleted Photo Booth off of the machines otherwise the machines are 3 people deep on weekends and we cant demo stuff to customers. does anyone know of any free apps that will take a snapshot of the user when they type in a keyword such as "Adult Games" or "Meatspin", save that file and the word they typed on the HD somewhere? Or, some way of making Automator do that? Don't forget that we do not have photo booth on the machines. And it would be nice if the App/automator didn't make the iSight camera light come on, and also notified us when a keyword has been entered.
    Dan
    Apple Premium Reseller, UK
    Message was edited by: Nedanator

    Oops
    Step 4 should say save it an an application (not a script)
    See also Neoporcupine's comments about Terminal being open

Maybe you are looking for

  • How to render HTML tags in FDF file?

    We're creating PDF files using FDF format. Unfortunately, when it comes to displaying characters like © (©),  ® (®); and ™ (™) they are simply rendering as © rather than the proper symbol they represent. Is there a way to tell the FDF to render this

  • Time Stamp in Write LVM

    How can the date/time stamp be reset when writing an LVM file.  The new_input starts a new file, but the date/time stamp is not reset (the first sample time of the new file is offset from the previous file). The date/time stamp is reset when the the

  • How to execute multiple sql statements in oracle?

    I want to execute multiple statements in a single transaction in oracle. Following are my queries: Create table temp_table as Select * from table; SELECT * FROM temp_table d; drop table temp_table ; I am using sql comment text in asp.net I am using e

  • SQL 2012 cluster installation fails with an IP address error

    I am building an eight node cluster and have successfully installed two SQL instances on it. Now, I cannot install any additional instances because of the following error: The resource with identifier 'Type='IP Address' NetworkName='Cluster Network 1

  • Restriction to delete goods movement data during confirmation thru CO11N

    hello all Please let me know how to prevent the user to delete the rows in goods movement screen during confirmation through transaction CO11N ,as users are able to confirm without goods issue by deleting that rows. Should we contact basis person for