Email to buyer once del schedule is created

Hi,
Is there a way to send a email to buyer (pur group) when a new schedule is added or changed in Me38. If yes how?
Thanks,

Hey Sam,
Thanks for looking into it....
I have a requirement that as soon as user accounts is created in Exchange (mail server) through OIM provisioning connector a welcome message sort of mail should go to user. For this i have placed the notification on completed status of "setting Exchange Related Properties" task. Now what happened that mail is going but may be as there is no network delay it got bounced in Admin (to address) account with error that user account is not existed. I felt that Exchange is taking some time for account creation due to which this mail is getting bounced first time because when i am trying to send mail to user again it is going in user inbox. So please tell me if anyone comes across this type of issue and if yes how did it resolve. I am thinking that in OIM is there any provision that i can add task in the process and put some time (30 secs will work for me) after that email will trigger.
Am i clear enough? please let me know if you need more info.

Similar Messages

  • Is there any possibility to block emails of subscriptions we are about to create in 2008 (folder level) and enable back the emails once we are done creating the subscriptions

    Hi,
    We are migrating our Reporting Server from 2005 to 2008 and we have around 3500 timed subscriptions which are scheduled daily/weekly/monthly.
    It takes around 1 week to recreate all these subscriptions in 2008 reporting server as we are using C# Code (to get the new subscriptionID from 2008 for further use). In this 1 week the subscription emails will be duplicated as they are sent from both
    2005 and 2008 (created) to end user but we can't disable the SMTP for the 2008 report server as there are other projects (separated at folder level) working on it.
    The Question here is, "Is there any possibility to block emails of subscriptions we are about to create in 2008 (only to our folder) and enable back the emails once we are done migrating to 2008?".
    Regards,
    Prabhat Y.

    Hi Prabhat Y,
    Per my understanding that you are doing the migration from SSRS 2005 to SSRS 2008 and now you are re-creating the 3500 subscriptions in the SSRS 2008, so you want to the new created subscription in SSRS 2008 will be pause and not execute at this time, right?
    Generally, we have several method to pause the subscription processing, please reference to details information below:
    When you created an subscription, an new Sql Server Agent job will be created too, so you can you can just uncheck the 'enabled' checkbox in the job properties as below to disable the execution of the job,you can also  stop the SQL Server Agent Services
    manually, all your subscriptions will stop running:
    More information, Please reference to: 
    How to temporarily stop SSRS subscriptions
    You can also disable a Shared Data Source, pause a Shared Schedule to pause the subscription processing.
    Pause Report and Subscription Processing
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Purchase orders - confirmation email to buyer

    Hello experts.
    What should I do to the buyer receives an email confirmation of purchase order?
    thanks,
    AlePaes
    Moderator message: please search for available information/documentation.
    Edited by: Thomas Zloch on Nov 21, 2011 6:14 PM

    You need to configure Output determination on the Sales order type, so that a Order response output type (like BA00) with email is triggered once the order is saved in the system.
    Search on these forums on how an outbound Order response output is configured

  • HT2486 I am sending an email to a group which I have created in my contacts.  I would like to hide the list of people's emails but cannot see how I can do that.  Can anyone help please?

    I am trying to send an email to a group which I have created in my contacts.  I would like to hide the list of email addresses but cannot see how to do this.  Can anyone help please?

    Thank you for your message.  
    I can see how you do that when using the 'normal' emailing system from my mailing box, but not when working from the contact application (the 'book' on the bottom icon bar with the @ on it)....

  • User exit to change sales order status once a delivery is created

    Hello Experts,
    I want to update the Overall status(VBSTT-GBSTA_BEZ) of a sales order to completed once a delivery is created for that order.Please guide me how can i do this and also the user exit or badi where i can write the code for this.
    Thanks in advance.
    Regards,
    Koustubh

    Got the complet guidance in new thread.
    User Exit to update Sales order text (Terms of delivery) on saving it
    Thanks

  • How to clear a private static class attribute once it's been created?

    <pre>I'm working with an instance of a complex Class object that has been created using the function module <br>HRXSS_CAT_APPLICATION_INIT. The Class object that I am trying to work with is<br> CL_XSS_CAT_BUSINESS_LAYER and in particular its Static Private component attribute PROFILE.<br>
    The issue that I am having is that the first call of this function module creates and populates the Static Private component attribute, <br>PROFILE, for the instance of this Class and I do not know how to initialize it once it's been created. The PROFILE attribute is an <br>object reference to an instance of Class CL_XSS_CAT_PROFILE. <br>
    I want to reset/intialize this Static Private component. I can then call a Class Method with<br> different parameters so that it repopulates PROFILE with different attributes. <br>There is no Public method to do this in CL_XSS_CAT_BUSINESS_LAYER and even the Private method<br> INIT_PROFILE, the logic first checks to see if the PROFILE component is initial before creating a new PROFILE<br> object instance. All the Attributes of the CL_XSS_CAT_PROFILE object are Static and Private.
    <br>
    I would appreciate any insight anyone might have in how to reset/initialize this Class component attribute.<br><br>
    Thanks much,<br>
    <br>
    Graham<br>
    Sample code snippet is as follows:
    <br><br>
    DATA: lr_cats_application_rfc TYPE REF TO IF_XSS_CAT_APPLICATION_RFC,
    lr_core TYPE REF TO IF_XSS_PT_APPLICATION_CORE,
    lr_core TYPE REF TO CL_XSS_CAT_1_APPLICATION_CORE,
    lr_instance TYPE REF TO CL_XSS_CAT_APPLICATION,
    lr_business_layer TYPE REF TO CL_XSS_CAT_BUSINESS_LAYER,
    lr_profile TYPE REF TO CL_XSS_CAT_PROFILE,
    lr_profile_temp TYPE REF TO cl_xss_cat_profile.
    DATA: l_employee TYPE pernr_d.
    DATA: l_employee_tab TYPE rhxss_cat_employee_t.
    CASE im_command.
    WHEN 'DATESELECTION_PRVPERIOD'.
    *-> navigate to object component reference for CL_XSS_CAT_PROFILE instance
    lr_cats_application_rfc = im_ref_to_parameter_cache->REF_TO_APPLICATION.
    *-> navigate to object component reference for CL_XSS_CAT_1_APPLICATION_CORE
    lr_core ?= lr_cats_application_rfc->get_core( ).
    *-> navigate to object component reference for CL_XSS_CAT_BUSINESS_LAYER
    lr_business_layer = lr_core->business_layer.
    *-> navigate to object component reference for CL_XSS_CAT_PROFILE
    lr_profile = lr_business_layer->get_profile( ).
    l_employee = im_ref_to_parameter_cache->pernr.
    append l_employee to l_employee_tab.
    <br><br>
    *THIS IS WHERE I AM HAVING ISSUES...I WOULD LIKE TO CLEAR/INITIALIZE THE STATIC PRIVATE COMPONENT<br> LR_BUSINESS_LAYER->PROFILE BEFORE CALLING THE METHOD INITIALIZE_FOR_TIME_RECORDING<br>
    <br>
    <br><br>*THE FOLLOWING LINE FAILS ON A SYNTAX CHECK WITH 'FIELD "PROFILE" IS UNKNOWN. IT IS NEITHER IN <br>ONE OF THE *SPECIFIED TABLES NOR DEFINED BY A "DATA" STATEMENT
    <br>
    clear: lr_business_layer->profile.
    CALL METHOD lr_business_layer->initialize_for_time_recording
    EXPORTING
    im_employee_tab = l_employee_tab
    im_profile_id = 'MODAPPR1'
    im_startdate = sy-datum
    EXCEPTIONS
    pernr_not_enqueued = 1
    no_pernr_for_user_found = 2
    profile_not_found = 3.</pre>
    Edited by: Matt on Aug 1, 2009 12:44 PM

    OK...I apologize but I did not dig deep enough to see that the Enhancement Framework allows for the addition of Methods to Classes/Interfaces. Most of this ABAP OO stuff is still quite new to me so I'm struggling with syntax and what is and isn't possible based on how everything is declared. I guess now that I know I can do this I am having some problems understanding how singleton Class objects work and how to 'reset' them.
    The Class instance based on CL_XSS_CAT_BUSINESS_LAYER has a Static Private attribute PROFILE that is an object reference to the singleton Class instance CL_XSS_CAT_PROFILE.
    The singleton Class instance of CL_XSS_CAT_PROFILE has all of its attributes set to Static Private. If you look at this Class in SE80 you see that one of its attributes is also called PROFILE and is an object reference variable to itself.
    So the issue I am having is how to go about 'initializing' this singleton object so that I can 'recreate' this singleton object using a copy of the existing S
    I used the enhancement framework to create a copy of the CL_XSS_CAT_BUSINESS_PROFILE Instance Private Method INIT_PROFILE , called in INIT_PROFILE2, but I am not sure how to 'clear/reset' the instance of the CL_XSS_CAT_PROFILE object.
    Since PROFILE is an attribute of the CL_XSS_BUSINESS_LAYER object, I thought that a simple CLEAR PROFILE would reset the object but this is not the case. Within this method the FREE clears the value of the reference variable PROFILE but as soon as you step into the method me->init_profile, the value of PROFILE goes back to what it was. I need for all of the CL_XSS_CAT_PROFILE instance attributes to be reset or initialized so I can fill them again. I think I'm getting confused on the scope of things...should I be enhancing the CL_XSS_CAT_PROFILE Class with 'setter' methods so I can initialize all of the Static Private attributes that way instead of trying to clear all the attributes at a higher call level?
    Any assistance with helping me with my thought process or approach to this would be much appreciated.
    METHOD INIT_PROFILE2.
    FREE PROFILE.  >>> is reset but it does not carry through to next method call and does not clear all the attributes of the object referenced in PROFILE
    CALL METHOD me->init_profile
    EXPORTING
    IM_PROFILE_ID = im_profile_id
    etc...

  • I created an apple id online and not on itunes, my email said the apple id was successfully created but when i used it in itunes it said "This apple idhas not been used in itunes please review your account information "

    I created an apple id online and not on itunes, my email said the apple id was successfully created but when i used it in itunes it said "This apple idhas not been used in itunes please review your account information "

    Hi rixa03!
    I have a couple of troubleshooting steps for you to try to resolve this issue. First, you should try closing the app according to the instructions found on this website, which is a troubleshooting assistant for the iPad:
    Apple - Support - iPad - iPad Troubleshooting Assistant
    http://www.apple.com/support/ipad/assistant/ipad/#section_3
    If the issue persists, you may need to try resetting the iPad, the instructions for which can be found here:
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • How to sync all email accounts AT ONCE in N8 Symbi...

    Hi to all
    There is any way to sync all email accounts AT ONCE in Nokia N8 with Symbian Belle ?
    Because syncing one by one is very unpleasant (I have 12 email accounts on my phone). Is there a way to sync all accounts at once?
    hank you for your attention

    iSync does not synchronize mail at all, and .Mac Sync synchronizes only mailbox structures, rules, signatures and smart mailboxes, not mail content.
    To 'synchronize' mail, you must use IMAP technology, as opposed to the far more common POP3 standard for incoming mailboxes. The OS X Mail program supports IMAP account creation, as do most electronic mail providers, including AOL and Yahoo. Notably, Google does not support IMAP with it's Gmail product: it's probably best described as a slightly whacky, non-standard POP3 offering, and is not a good choice if you want to 'synchronize' you mail among two or more clients.
    This sort of POP3 vs IMAP and mail synchronization discussion occurs frequently in the Mail & Address Book forum, and there are several 'experts' there—listed typically in the Top Rated Members in Forum list in the right sidebar—who help users all the time. You can search the forum by subject or their user name, or browse and look for related subjects or their answers, to get a better idea of how to deal with these issues. You can find that forum here:
    http://discussions.apple.com/forum.jspa?forumID=753

  • I have 2 problems with Mail. I cannot address an email to more than one recipient. And I receive some emails more than once.

    I have 2 problems with Mail. I cannot address an email to more than one recipient. And I receive some emails more than once. Can you please help?

    Restart your Mac. See if that makes a difference.

  • Importing an email more than once from notes into the webclient...Possible?

    Hi!
    Is it possible to import an email more than once from a lotus notes account into my webclient?
    I don't have a working sample so:
    Is there a lock to prevent it... in notes... in my webclient?
    Are there optical signs in my webclient that an email is already imported?
    Thanks in advance for your hints in this case.
    Cheers, Ingo

    The Member Feedback forum is for suggestions and feedback for OTN Developer Services. This forum is not monitored by Oracle support or product teams and so Oracle product and technology related questions will not be answered. We recommend that you post this thread to the appropriate Database forum.
    The main URL is:
    http://forums.oracle.com/forums/index.jsp?cat=18

  • IPad iOS 8.2 still won't allow delete of ALL email messages at once?

    iOS 8.2 still won't allow deletion of ALL email messages at once from my iPad? What could be the reason for this? The work-around solutions I see on Internet work erratically for me.
    I'm an Android cellphone user so can delete all emails from my phone with a click or two. Is that a patent issue for Apple? There is no way to delete ALL email messages easily?

    Had the same problem. There is an undocumented way under another thread and it works, but is clunky and very un-Mac-like.
    The Apple thread that I got the undocumented answer from is:
    Delete all email in Inbox iOS7
    https://discussions.apple.com/thread/5421295?start=15&tstart=0
    I've copied the answer below:
    From inbox edit
    MARK ALL AS READ (for me and several others in the thread it only works, when I marked all as read)
    Highlight first email
    Hold move button
    Try to unhighlight first email (probably won't )
    Still holding move button pull down on mails  and then try to unhighlight first email again
    This time it should
    You will notice the inbox seems frozen as move is no longer highlighted and individual emails will not highlight if you touch them
    Wait May take a minute or two depending on how many emails are in your inbox but they will move to the right side
    Then just touch trash
    The YouTube link that demonstrates this is:
    http://www.youtube.com/watch?v=fKa-KFjUIGE
    Hope this helps!
    Cheers!
    Anika

  • Scheduling tasks created in Oracle Projects

    Is it possible to use Advanced Scheduler/Field Service to schedule tasks created in Oracle Projects? How can I achieve this integration?

    The only integration I know of for Projects requires Project Contracts and the use of deliverables.

  • Using an Email Alias in a SharePoint 2013 Workflow created in Designer

    Hello,
    I would like to use an email alias for a workflow that was created in Designer, I don't want the workflow email address to look like it was sent from the system or myself I'd like to use an email address our generic email address that our department uses. 
    I cannot see a way to do this.   All the email address we are trying to use are in our AD and are active.  Here is an example of what I am trying to do... 
    We’re going to be using a few forms I’ve created on SharePoint so that colleagues may submit requests for additional resources for virtual environments. In order for us to track the requests I’d like them to be dumped into the LT-Infrastructure
    board inside of ConnectWise, and the best method to do that would be via email.  Is it possible to have the email come out on a different address? (ex.
    [email protected]) After configuring the workflow and sending out a test I realized that its coming from
    [email protected](which I assume replied to you).
    Thank you in advance for your help.
    Joanie

    Hi Jdd,
    Thanks for posting your issue, Kindly browse the below mentioned URL to fix your issue
    http://www.lynda.com/SharePoint-tutorials/Using-email-aliases-easy-workflow-maintenance/144025/161261-4.html
    I hope this is helpful to you, mark it as Helpful.
    If this works, Please mark it as Answered.
    Regards,
    Dharmendra Singh (MCPD-EA | MCTS)
    Blog : http://sharepoint-community.net/profile/DharmendraSingh

  • Since upgrading to Mountain Lion, I cannot restore emails with time machine. In Lion TM created a folder in Mail called recovered emails(or similar) No such folder is created since ML. I am able to see the email I want to restore, but it then disappears

    Since upgrading to Mountain Lion, I cannot restore emails with time machine. In Lion TM created a folder in Mail called recovered emails(or similar) No such folder is created since ML. I am able to see the email I want to restore, but it then disappears

    I am inside Mail, waiting for the TM 'recovered mail' folder to appear - which it doen't.
    I only looked in my home folder after trying several times from within my Main app.
    Marion

  • Why I got this email if I didn't schedule any storage plan ? This is the email I got;        On 10/07/2013 you are scheduled to be charged $20.00 for your 10 GB iCloud storage plan, but there is a problem with your payment information, Can someone help me

    Why I got this email if I didn't schedule any storage plan ? This is the email I got;       
    On 10/07/2013 you are scheduled to be charged $20.00 for your 10 GB iCloud storage plan, but there is a problem with your payment information, Can someone help me ? I don't want to be charge for something I don't want to buy.

    You may want to do couple things
    1. cancel auto renewal for icloud - instructions here -under downgrade storage
    http://support.apple.com/kb/HT4874
    2. change your payment info in itunes, to either none or other payment method - instructions here
    http://support.apple.com/kb/ht1918

Maybe you are looking for

  • WRT54G2 - The Strangest Problem I have ever encountered

    Ok, this will take a bit of explaining but I hope someone will be able to help me out. I've set up lots of networks but never run into anything like this before. I may be including more info than necessary, if so sorry but I am not sure if it is impo

  • Using B&W monitor with Beige G3

    I would like to use a B&W monitor with the older Beige G3 computer. I know I would need an adapter but what kind and where can I get one? I see adapters at the Apple website but have no idea which one I should use. Also, how can I use a USB Hub with

  • CD Drive Not Working  in WIN 7 after migrating to larger HD using Winclone

    I migrated to  a larger size hard disk in my 15" Macbook Pro. I made an image of my Mac Os and installed it. All went fine. I used Boot Camp to partition my drive and used Winclone to transfer my WIN 7 to the new partition. Almost everything worked e

  • Cmd-Tab Problem

    My computer seems to have something wrong with it. It seems that what ever I do with the mouse it triggers the Cmd (Apple)-Tab keyboard shortcut and prohibits me from using the computer since the pop up window with the current working applications re

  • How do a report a hotspot fault

    i am no longer able to conect to a particular btopenzone hotspot my iphone can see it but btfon cannot connect. it has been working fine until today