How to notify (email) Change Manager when new Change Request is created

Hi there, I am battling to generate an email when a developer creates a Change Request directly in the SolMan system. When he creates a new Change Request via CRMD_ORDER by filling in the Sold-to-Party, Change Manager, iBase etc., the message is automatically in 'To Be Approved'. I want to notify the Change Man ager as soon as a new Change Request has been submitted, but when I check the Actions tab in the message, no email action is listed or executed. I have edited SLFN0001_STANDARD... in SPPFCADM with conditions set. How can I create a email notification for the Change Manager as soon as a Change Request is in To Be Approved status?
Message was edited by:
        Bernardt Nel

Hi,
Create a action definition with the following information:
Processing when saving.
No restriction.
Check Schedule Automatically.
Check Partner-Dependent.
Select Partner Function for Change Manager.
Determination Using Conditions that Can be Transported.
Then you have to create an Start Condition such as; userstatus = to be approved.
No scheduled condition is needed.

Similar Messages

  • Someone in Australia was using my email address and when I changed email names to reinstall Itunes it only gives me states from Australia.  Is there some cache on my system that should be cleared or removed?

    Someone in Australia was using my email address and when I changed email names to reinstall Itunes it only gives me states from Australia.  Is there some cache on my system that should be cleared or removed?

    Good luck.    I have been trying to report to Apple Support about a Bogus Email I received today, which said I had made a purchase. Naturally, I was to cancel this bogus purchase by giving out personal details etc to them. 
    The real question is: how did they get my email as someone who had purchased from Itunes?. I cannot believe that ti si coincidence.
    HAVE the Australian Apple IDs [where users have supplied their email addresses] been compromised?
      My report about Spam was the same as reported in 2010, when the reply was: Apple knows all about this.  What has been done about that spam from this address:
    http://www.thepeakdistrictholidaycottage.co.uk/blog/wp-admin/au/apple//index.htm l?securitycenterlogin&hc=1&hm=au%601d72f%2Bj2b2vi%3C265securitycenterlogin&hc=1& hm=au%601d72f%2Bj2b2vi%3C265securitycenterlogin&hc=1&hm=au%601d72f%2Bj2b2vi%3C26 5

  • How to resolve unresolved column error when we change column name in BMM Layer and removed alias in presentation layer

    how to resolve unresolved column error when we change column name in BMM Layer and removed alias in presentation layer

    Looks like the presentation column got Alias before your BMM changes, so in your case renaming logical column and deleting alias is not good to go.
    Keep Alias

  • How do you get iTunes to recognise new/changed Airport names? These Airports have attached speakers.

    How do you get iTunes to recognise new/changed Airport names? These Airports have attached speakers. Itunes showes the old names of these Airports but they have been renamed in a newly reconfigured network. Itunes will play through the attached Airport attached speakers. The Airport utility shows the correct new names.

    Hi turingtest2 - thanks for the reply. As you say It is how it is - and I have three workstations in this home (not counting three for my children and one for the family) and I pretty much always have more than one OS on each - that's how it is for me. I shouldn't have to worry about how many OSs I have (or how often I change them) just to have music while I'm working - through the PC sound system that is. I never have to worry about any other software, only iTunes. Once in a while (in the past) I've made a vendor call if I changed to many things to often (like CPU, GPU, memory, etc - or even a replacement MB) - but that hasn't happened in a couple years (at least since Vista) so I think (hope) they have fixed that for good. And even then it was a quick call and problem resolved. The only (glaring) constant problem is iTunes - limiting my own use of my own music (by counting an OS as a physical PC). Even with VM (which is just another OS) - although you can Attach things to multiple active OSs - it's still your own (purchased) music - and all on one PC. Thanks again!

  • HT201342 There is no info here about how to receive emails sent to the new @iCloud account. How do I receive such emails?

    There is no info here about how to receive emails sent to the new @iCloud account. How do I receive such emails?

    There is no info here about how to receive emails sent to the new @iCloud account. How do I receive such emails?

  • How to skale or increase text, when i read an ebook created by ibook-author?

    How to scale or increase text, when i read an ebook created by ibook-author?

    If the book is in portrait mode, the text is fluid - top of the screen is a resize option. Basically whole effect is the same as an ePub file.
    If reading a book in landscape mode, resizing text simply isn't an option because it's considered fixed format.
    I've been working with landscape only books and I tend to increase the size of my body text in iBooks Author - to at least size 18. It appears that although this would be large if printed, when displayed on an ipad it's closer to about size 12, which is standard anyway.
    Jenny

  • How to send Email to Manager

    Hi experts,
    How do i send email to manager via workflow? i know this question has been asked so many times but i need more technical detail, here is what i have done so far:
    1. Create workflow
    2. Create function module for extracting the superior user id
    My understanding so far is to create a rule that calling the function module, and use the rule in agent determination. But sending email does not need an agent so basicly how do i call the rule so the fm could be called and the binding is passing the value? Thanks

    Hello Hendri Salim  !
                   Create a background step which uses SWX_GET_MANAGER to find the manager.
                   Populate the manager name in workflow container of mail step.
                   Create job variant for the report RSWUWFML2, and in the job variant , configure the task id of the mail step.
                   Also maintain following settings in the job variant :
                   Select "Only New Workitems" check box.
                   Select "Workflow Entry " check box
                   Coding for SWX_GET_MANAGER to get SAP log on id of manager as follows : Change the coding as required to get e-mail id.
    BEGIN_METHOD FINDMANAGER CHANGING CONTAINER.
    DATA:
          EXTENDEDOBJECTID TYPE OBJEC-REALO,
          addresstype like soxna-type,
          RECIPIENTADDRESS TYPE SOXNA-FULLNAME.
    DATA:
          ac_container like swcont occurs 0 with header line,
          addressstrings like soxna-fullname occurs 0 with header line.
      SWC_GET_ELEMENT CONTAINER 'ExtendedObjectID'
    addresstype = 'G'.
    ac_container-element = 'OBJID'.
    ac_container-tab_index = '000001'.
    ac_container-elemlength = '008'.
    ac_container-type = 'N'.
    ac_container-value = EXTENDEDOBJECTID.
    append ac_container.
    ac_container-element = 'OTYPE'.
    ac_container-tab_index = '000001'.
    ac_container-elemlength = '002'.
    ac_container-type = 'C'.
    ac_container-value = 'P '.
    append ac_container.
      CALL FUNCTION 'SWX_GET_MANAGER'
        TABLES
          ACTOR_TAB = addressstrings
          AC_CONTAINER = ac_container
        EXCEPTIONS
          NOBODY_FOUND = 01
          OTHERS = 02.
      CASE SY-SUBRC.
    *    WHEN 0.            " OK
    *    WHEN 01.    " to be implemented
        WHEN OTHERS.       " to be implemented
      ENDCASE.
      loop at addressstrings.
      if addressstrings(2) = 'P '.
      delete addressstrings.
      endif.
      endloop.
    move addressstrings to recipientaddress.
      SWC_SET_ELEMENT CONTAINER 'RecipientAddress' RECIPIENTADDRESS.
    END_METHOD.
    Regards,
    S.Suresh

  • Send Email for Info about new / changed Contract or GOA

    Hi guys,
    within Contract Management (SRM 4.0) a user has the ability to send an email about a new / change contract to the Purchasing Organizations. In standard the systems takes the maintained email address per Purchasing Organization (PPOMA_BBP) and there is only one entry possible.
    Is there a chance to automatically have more than one mail address pre-populated in the draft mail generated? I also would like to know, if and how, it is possible to integrate the email address of each Purchasing Group into the draft email?
    Many thanks for all your feedback!
    Claudia

    I'm not sure how clever SharePoint 2007 was for preventing infinite loops within SPD, this might be a potential cause.
    On the alerts themselves, are you aware that the OOB Alert settings allow you to use viws as an alert condition?  So, you could set up a view for the relevant fields, set that up within the Alert Options and then ask for a daily summary.
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • How to de-activate PO printout when makes changes for PO

    A PO has been created, printed out and sent to our supplier. When user make the changes for PO, for example delivery date, then Change output message type will be triggered, and can print a Change To Purchase order (print the PO again with the changes) and send to supplier.
    My problem : The requirement is to de-activate this change output message type to be triggerred when the delivery date is changed, so means no Changes to PO will be printed.
    How do i control this...
    Thanks.

    Hi,
    You may have to write a output requirement routine and assign the same to the output type in NACE.
    But i don't think you will get the old and new data of Purchase order in requirement routine (program : SAPLV61B).  You may have to export the data into memory from either a BADI method or User exit and then import the same in requirement routine.
    Regards
    Vinod

  • How do I delete icloud acct. when I changed the login info and can't sign in to it anymore?

    How do I delete my icloud acct.?
    I changed my login info and now i can't sign in, I read that I have to delete it to update icloud info so how do i delete it if i can't sign in?

    If you are trying to delete the account from your device, and if the old ID is an earlier version of your current ID, temporarily recreate the old ID by going to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  You should now be able to use your current password to turn off Find My iDevice, even though it prompts you for the password for your old account ID.  After doing so you can delete the account and go back to https://appleid.apple.com to change your ID back to the way it was. 

  • Email not triggerd when employee change add in ESS

    Hi Guru,
    When emplyee changes there add on ESS email not triggered to payroll team
    can any help me in this

    Hi
    We have Dynamic action it works for if we change Add in SAP but it wont work when we do same thing from ESS
    is this the campatibility issue.
    because when we debug this when we find that this is not going through one user exit.

  • How to install cs5 w/dvds when new computer has no drives?

    How do I install CS5 on my new computer that doesn't have cd/dvd drive, when my cs5 is on DVDs?  

    You must be on a trial download page to use the links, otherwise you get an error message.
    For example, load the following page: http://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop_elements&loc=us before pasting the link into the address bar.
    http://trials2.adobe.com/AdobeProducts/STVD/CS5/osx10/ProductionPremium_CS5_LS7.dmg

  • How to tackle the dataflow problem when Value Change event always triggers after another GUI event

    We know that Value change event always triggers after another GUI event. Eg, the user modifies string control, the user clicks on a boolean control. Then event boolean clicked is triggered before event string control value change.
    Now suppose somehow the GUI event that must happen to subsequently trigger the Value change event can potentially affect the data that Value change event is supposed to work on. How can we tackle this problem ?
    For example, in a mockup application that the grand purpose is to have user entered values in a textbox logged to a file (no missing information is accepted, and there is a boolean to determine how the information is logged).
    There are 2 controls, boolean A when clicked (mouse down) will load random number in text box B. Text box B is designed with event structure VALUE change which saves whatever values user enters into text box B to a log file.
    There are 3 problems when instead of clicking anywhere on the front panel after modifying text box B, the user ends up clicking on boolean control A.
    1. Event mouse down on Boolean control A will execute first, modifying text box B content before the user entered values in B get saved.
    2. The value of boolean A can potentially affect how textbox B is loggged.
    3. The value of boolean A affects how the file is logged and this is indeterminate. Somehow when running this VI with no Highlighting, the textbox B Value change event executes -before- boolean A value is updated (F to T). When running this VI with Highlighting, the boolean A value is updated (F to T) (because we click on it) -before- textbox B value change event occurs. Why is it like this ?
    Now the situation I made up seems non-sense, but I believe it resembles one way or another a problem that you might run into. How would you solve this problem elegantly ?
     

    You can set the string control to "update while typing".
    Are you sure appending the log to itself is reasonable? Wouldn't it grow without bounds if the users keeps entering strings or pressing the ingore button?
    Why isn't the "constant" a diagram constant instead of a control. Is the user allowed to change it?
    To reset just write empty strings or a false to local variables of the controls (renit to defaults" seems a bit heavy handed).
    All you probably need is a single event case for "ignore:value change" and "String" value changed", no need for the local variable..
    Also add a stop button and an event for it.
    You don't need the timeout event.
     

  • Change Management without Oracle Change Management Pack

    Hello,
    is there a possibility to define a change management process without having access to the enterprise manager?
    The administration of the databases in our company is done by an outsourcing partner. So the developers can't access the enterprise manager.
    siret

    You are going to have to provide a lot more information for anyone to help you from the basic ... like in what version ... to the specific ... what functionality do you want?
    In general none of the "packs" run any code not in the database in the form of built-in packages. For example much of the functionality of OEM Grid is implenented in DBMS_ADVISOR, DBMS_MONITOR, DBMS_SERVER_ALERT, etc.
    But without specific questions no specific answer is possible.
    You can find demos of the above referenced packages here:
    http://www.morganslibrary.org/library.html

  • Changing scene when comboBox changed

    Hi,
    I'm a complete newbie to Flash and programming, so please forgive my lack of knowledge!  I have been trying for a good couple of hours now to do what I'd think would be a simple task - change scene when the value in a comboBox is changed.
    This is the code I have:
    stop();
    dropdown.addEventListener(Event.CHANGE, changemade);
    function changemade(event:Event):void {
         gotoAndPlay("main", 1);
    However I get the following error:
    "1067: Implicit coercion of a value of type int to an unrelated type String"
    I'm stumped, and Google isn't much help as code examples seem identical to what I've done. Can anyone point me in the right direction? Any help is greatly appreciated!

    If you have AS2 experience, the order of the arguments in gotoAndPlay switches when you move to AS3...
    gotoAndPlay(1, "main");

Maybe you are looking for

  • Performance Issue For Opening And Closing Balance In FBL1N/3N/5N

    Dear experts,                     I Am Having Requirement to Bring Opening And Closing Balance In FBL1N, FBL3N, FBL5N. For This requirement I Used BADI : FI_ITEMS_CH_DATA~CHANGE_ITEMS, below is my Code For FBL1N, And I've Done the same For 3N/5N...Wi

  • Error while using dbms_lob.fileopen

    Hi, I am getting the below error when executing the code given below, CODE:- DECLARE l_bfile BFILE; l_data BLOB; BEGIN DBMS_LOB.createtemporary (lob_loc => l_data, CACHE => TRUE, dur => DBMS_LOB.CALL); l_bfile := BFILENAME('/home/lt/write','MIA00137.

  • Adobe photoshop /premiere elements 12 serial number retrieval

    What can I do when redemption code entered to retrieve serial number comes back as invalid?

  • Playing Movies Off an External Hard Drive?

    I just got an external hard drive since I have a ton of stuff and would like to put my movies on the external HDD. Is it possible to play the movies off the HDD if it is connected to the computer I am synched too?

  • PO Response Workflow

    Hi, I am using WS14500019 workflow for PO response workflow if there is any difference in PO POR. My problem is whenever POR is creating this workflow is triggering and it send an approval work item to the buyer, then workflow is going to the error s