Can we make a reservation of sending email?

Hi All,
Does Beehive have a feature that we can schedule time of sending email?
Thanks in advance,
Edited by: 7701 on May 19, 2009 11:00 AM

I have a question which is related to what's been discussed in this thread. Say I want to enhance a datasource (e.g. 0CS_OM_OPA_1) to include data at a finer granularity (e.g. notifications instead of orders). Can this be done by modifying the extract structure and a user exit? Why I'm asking is because records would have to be duplicated. As I'm not an ABAP programmer, I'm interested in knowing whether or not this is possible before I dig any deeper and possibly waist a lot of time for nothing.
Thanks in advance,
Markus
Message was edited by: Markus Fahlén

Similar Messages

  • How can i make an action to send photos via email?

    hi
    under windows xp
    how can i make an action to send photos via email?
    i know there is a Export Actions
    i tried to copy a link of "C:\Programs\Outlook Express\msimn.exe"
    but lightroom export the file & open the client , but doesn't open the dialog to send email
    how can i do it?

    For Outlook Express use MAPIMailer from
    Lightroom Extra at Downloads/Other Goodies/MAPIMailer
    Don
    Don Ricklin, MacBook 1.83Ghz Duo 2 Core running 10.4.10 & Win XP, Pentax *ist D
    http://donricklin.blogspot.com/

  • HT1430 Can anyone help me set up sending email from my o2 email account to my new iPhone 5?  I think I maybe shouldn't have clicked the 'merge' option for iCloud when I set up the first email account (though am not sure whether that's relevant).  Thanks,

    Can anyone help me set up sending email from my o2 email account, for my new iphone? 
    Thanks
    Pamela

    Additonally, at this point I really want to talk to someone who cares about how a customer like I might feel in such a situation and when I call corporate would like to talk to someone who is interested in hearing my input as it really sucks to think I really don't feel like going to the store anymore and would rather just buy stuff on amazon or newegg these days instead;/  When I know how much i used to enjoy going into the store and getting friendly with kind staff who worked with me to get the best deal on the items I got--perhaps this was because it was at a more desperate time when Best Buys fate as a company was more precarious prior to price matching taking origin.  Also, on an aside, would like to add that obviously there is always the one or two people who go out of their way to make sure you have an excellent expeirenece so I am not trying to make any sweeping generalizations here.  In fact, I find the forum contributors to be among the most kind and helpful, but that might be because they don't have to deal with the now seemingly dreaded "pricematch" epidemic;D

  • How can I make my Kerio WebMail memorize email addresses used previously?

    How can I make my Kerio WebMail memorize email addresses used in the past?

    Have you checked with Kerio support for answers? <br />
    http://support.kerio.com/index.php?_m=knowledgebase&_a=view

  • Have a real problem i just can't make a reservation and this is the only way to contact apple . It seams to keep going to the american site .

    have a real problem i just can't make a reservation and this is the only way to contact apple . It seams to keep going to the american site .

    Apple world-wide support numbers are found at: http://support.apple.com/kb/HE57
    If this is regarding your information line that says a stolen iPhone, Apple can do nothing to help you.  You must track the iPhone yourself using iCloud and must have turned on Settings > iCloud > Find My Phone before it was stolen.  If that was not done, there is no way to track the iPhone.
    Report the theft to the police and the cell service provider and ask if they can blacklist the iPhone so it cannot be used.  Change all passwords associated with acconts on the iPhone.

  • I upgraded to ios5 and now I can't make phone calls or send texts.  I have an iPhone 4 and am on Verizon.  Please help!

    I upgraded to ios5 and now I can't make phone calls or send texts.  I have an iPhone 4 and am on Verizon.  Please help!

    try deleting your icloud account from your phone.  you can also try disabling 3G.

  • How can I make my Contact Form send info to my email?

    Greetings! I have below a contact form that i have creaed with some help but I can't seem to make it send the information to my email address after it is submitted. That is my most important issue right now.
    A secondary issue is, can I make it so once this form is submitted it send the info to my email without doing a page redirect?
    Thanks in advance!

    Ok what about this code located at www.ybcreations.com/ContactTest.php?
    <?php
    // Set email variables
    $email_to = '[email protected]';
    $email_subject = 'BestMarketingNames Inquiry';
    // Set required fields
    $required_fields = array('fullname','email','comment');
    // set error messages
    $error_messages = array(
              'fullname' => 'Please enter a Name to proceed.',
              'email' => 'Please enter a valid Email Address to continue.',
              'comment' => 'Please enter your Message to continue.'
    // Set form status
    $form_complete = FALSE;
    // configure validation array
    $validation = array();
    // check form submittal
    if(!empty($_POST)) {
              // Sanitise POST array
              foreach($_POST as $key => $value) $_POST[$key] = remove_email_injection(trim($value));
              // Loop into required fields and make sure they match our needs
              foreach($required_fields as $field) {
                        // the field has been submitted?
                        if(!array_key_exists($field, $_POST)) array_push($validation, $field);
                        // check there is information in the field?
                        if($_POST[$field] == '') array_push($validation, $field);
                        // validate the email address supplied
                        if($field == 'email') if(!validate_email_address($_POST[$field])) array_push($validation, $field);
              // basic validation result
              if(count($validation) == 0) {
                        // Prepare our content string
                        $email_content = 'New Website Comment: ' . "\n\n";
                        // simple email content
                        foreach($_POST as $key => $value) {
                                  if($key != 'submit') $email_content .= $key . ': ' . $value . "\n";
                        // if validation passed ok then send the email
                        mail($email_to, $email_subject, $email_content);
                        // Update form switch
                        $form_complete = TRUE;
    function validate_email_address($email = FALSE) {
              return (preg_match('/^[^@\s]+@([-a-z0-9]+\.)+[a-z]{2,}$/i', $email))? TRUE : FALSE;
    function remove_email_injection($field = FALSE) {
       return (str_ireplace(array("\r", "\n", "%0a", "%0d", "Content-Type:", "bcc:","to:","cc:"), '', $field));
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <!-- Contact Form Designed by James Brand @ dreamweavertutorial.co.uk -->
    <!-- Covered under creative commons license - http://dreamweavertutorial.co.uk/permissions/contact-form-permissions.htm -->
              <title>Contact Form</title>
              <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
              <link href="Billy testing/ContactForm.css" rel="stylesheet" type="text/css" />
              <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/mootools/1.3.0/mootools-yui-compressed.js"></script>
        <script type="text/javascript" src="Billy testing/validation/validation.js"></script>
              <script type="text/javascript">
    var nameError = '<?php echo $error_messages['fullname']; ?>';
                        var emailError = '<?php echo $error_messages['email']; ?>';
                        var commentError = '<?php echo $error_messages['comment']; ?>';
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
        </script>
    </head>
    <body onload="MM_preloadImages('Billy testing/x.png')">
    <div id="formWrap">
    <h2>We appreciate your business</h2>
    <div id="form">
    <?php if($form_complete === FALSE): ?>
    <form action="ContactTest.php" method="post" id="comments_form">
              <div class="row">
              <div class="label">Your Name</div> <!--end .label -->
              <div class="input">
              <input type="text" id="fullname" class="detail" name="fullname" value="<?php echo isset($_POST['fullname'])? $_POST['fullname'] : ''; ?>"/><?php if(in_array('fullname', $validation)): ?><span class="error"><?php echo $error_messages['fullname']; ?></span><?php endif; ?>
              </div><!-- end. input --><!-- end .context -->
              </div><!-- end .row -->
        <div class="row">
              <div class="label">Your Email Address</div> <!--end .label -->
              <div class="input">
              <input type="text" id="email" class="detail" name="email" value="<?php echo isset($_POST['email'])? $_POST['email'] : ''; ?>"/><?php if(in_array('email', $validation)): ?><span class="error"><?php echo $error_messages['email']; ?></span><?php endif; ?>
              </div><!-- end. input --><!-- end .context -->
              </div><!-- end .row -->
        <div class="row">
              <div class="label">Comments</div> <!--end .label -->
              <div class="input">
              <textarea id="comment" name="comment" class="mess"><?php echo isset($_POST['comment'])? $_POST['comment'] : ''; ?></textarea><?php if(in_array('comment', $validation)): ?><span class="error"><?php echo $error_messages['comment']; ?></span><?php endif; ?>
              </div><!-- end. input -->
              </div><!-- end .row -->
        <div class="submit">
        <input type="submit" id="submit" name="submit" value="Send Message" />
        </div><!-- end .submit-->
        </form>
         <?php else: ?>
    <p style="font-size:25px; font-family:Arial, Helvetica, sans-serif; color:#255E67; margin-left:25px;">Thank you for your Message!</p>
    <script type="text/javascript">
    setTimeout('ourRedirect()', 5000)
    funtion ourRedirect(){
              location.href='contact.html'
    </script>
    <?php endif; ?>
    </div><!-- end #form-->
    </div>
    <p> </p>
    <!-- end formwrap -->
    </body>
    </html>

  • I can't gey yahoo mail to send email- it says something like not connected to server?

    I Cannot get yahoo mail to send emails. I wonder what step I missed during the sort up process?

    Howdy msmantila,
    It sounds like you cannot check your Yahoo email on the iPad. I would recommend the troubleshooting in the following article to help get that resolved, named:
    iOS: Troubleshooting Mail
    http://support.apple.com/kb/ts3899
    Tap Safari and load a webpage. If you can load a webpage, then your device has Internet access. If you can't load a webpage, check your Wi-Fi connection or try a different Internet connection:
    Try a different Wi-Fi connection.
    If your iOS device has an active cellular data plan, tap Settings > Wi-Fi and turn off Wi-Fi.
    If the affected email account is provided by your Internet provider, see if your issue is resolved while connected to your home Wi-Fi network.*
    Log in to your email provider's website to make sure that the account is active and the password is correct.
    Make sure your settings are correct using Mail Settings Lookup.
    Restart your iOS device.
    Delete the affected email account from your device.
    Tap Settings > Mail, Contacts, Calendars.
    Tap the affected email account.
    Tap Delete Account.
    Add your account again.
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • Can I use DeliveryManager just to send email with no document?

    Can I use "oracle.apps.xdo.delivery.DeliveryManager" to just send email without any document attached? or
    Is this only used to deliver the documents by email?
    I just want to use DeliveryManager just to send email with content in the body of the email. I am using BI Publisher API.
    Can any of you provide sample input for the above?

    Hi,
    You can use iMovie to record the message and save it as an email sized item and send the file as email like before.
    For those iChat AV users without a Cam and the AIM users without a cam you can do One-Way Viedo chats.
    Once you have a recorded Video file you can also drop the file on any Buddies name in you iChat Buddy list rather than using email.
    For those using other services you can set up a Jabber account and enable the required Transport/Gateways and send the files that way.
    http://www.jabber.org.au/ichat = Australian Page
    AllForces
    These are the two main information pages on how iChat can connect to the other IM services.
    Jabber Public Server list
    That would appear to be everybody.
    Ralph

  • How can I make my hotmail account delete emails that I delete on my phone?

    How can I make my hotmail account delete the messages that I delete on my Droid 3? I selected the "obey the other program" in my hotmail account, but nothing's being deleted.
    Thanks,
    Cesslie

    You're welcome.     Lots of good info. can be found in this forum; if you can't find what you're looking for in a search, just post another question.  Have fun with your Droid!

  • I've down-loaded Lion, and now I can't attach documents when I send email. I use hotmail.

    I down-loaded 10.8.2 and now I can't attach documents to emails. I use hotmail as my primary address. I receive an error message stating that the documents are corrupted. I had no problems with this prior to upgrading to 10.8.2. What can I do?

    Try setting the email settings, server, etc. to those in this webpage by Roger Wilmut: iCloud Mail settings in Snow Leopard
    OT

  • Can't make phone calls or send or receive tests

    I can get on internet, but when I try to make a call I get the message...No Network available.  Only emergency calls can be made.  What's the deal?  I powered down, but that still didn't fix it.  Airplane mode is off.  Whatelse can be wrong?

    I travel a lot and get the message "no sim card" - I get this message intermittently and it's a disaster - can't use maps to get to the airport, etc.  I have to several Verizon stores and am told that a tower must be having trouble or something.  If I take out the sim card and replace it - SOMETIMES it comes back up, sometimes not.  I have almost missed 2 flights because I rely on the darn thing to tell me how to get there.  Shouldn't Verizon give me a new card or at least be concerned.  They always tell me I must have my Wi-Fi set up wrong.  They check it and hand the phone back to me.
    Today - I just flew in last night and am at home and can't make a call - once again "no sim card" and now it's telling me that my SD card is empty and needs to be formatted.  Yikes this is getting serious.  I treat the phone like gold and it has not been damaged in any way.
    Please advise.
    Thanks Mary

  • Can I make it so they send the entire form back to me via email?

    Am I understanding this right that the email back to me function will only email the information of the cells they've entered, not the entire document?
    Well I need to have the entire document with info in the cells, not just the info itself.
    Is there any way to set it so that when the other person emails me this document back I receive the whole thing?
    I am doing things like Independent Contractors Agreement, model release etc.  So I'll need an individual file & forms on every person, not just the info.
    Thanks.

    Still Learning02 wrote:
    Print the form using file/print.  Then instead of selecting your printer, select adobe pdf.  This will print the form to a pdf you can open in Acrobat.  Then there is a forms menu that will allow you to add the fields.  Once you have completed setting up the fields, you go to the advanced menu and enable the rights in reader.  This will allow the user to save the form and send it back to you.  Or you could create a submit button to email the response back to you.
    We've been talking about this in the Acrobat forum. This is a duplicate thread.
    http://forums.adobe.com/thread/528275?tstart=0

  • Can anybody tell me how to make this forum to send email when someone reply to my post!!?

    Hi,
    I need to be informed when someone reply to my posts anybody
    know how?
    thanks

    Select "Subscribe to this topic"

  • How can I make the Sharepoint List Alert email format more readable?

    Hi,
    Been wrestling with the issue for a while now. I have a list on my company's Sharepoint site online. I have configured this list to send alerts every morning for all the new list entries that have come in the previous day. Unfortunately, the emails are very
    hard to read as they don't do a good job at all of distinguishing columns. There is no border or gradient separation between the data in one column vs. another in the email. This might have been OK, but the column headers appear in the middle of the text box
    for the column. I previously used an on-premises version of sharepoint and this wasn't an issue, the alerts would come out very clean. 
    Is the alert format a function of the theme we chose (basic theme, no gradient, etc.)? I can look into changing my company's theme if that is the case. If not, is there a way to change the format of a specific alert?
    Thank you for your help.

    I am afraid there is no way to change the alert format in SharePoint Online. The AlertTemplates.xml file is present in physical hive folder of SharePoint in Template\XML directory. And in SharePoint Online, you are not allowed to changes the physical file.
    Secondly, all of the styles related to alert are present in this file, so changing the theme on the site won't have any effect. In fact I did test it with several different themes just to make sure there isn't any change in run time and every time the format
    remained same.
    Thanks,
    Nadeem
    Please remember to up-vote or mark the reply as answer if you find it helpful.

Maybe you are looking for

  • Safari 5.1.2 and now not able to reboot

    I am running the latest version of Snow Leopard on my 2006 white MacBook and chose to install the Safari 5.1.2. update last night when Software Update prompted me. I clicked Install, it asked me to Restart. I minimized the window, finished what I was

  • Can't start up 3G!! Help please!

    Ok- so I just got an ipad and want to sign up for a cellular data plan. I click settings, 'Cellular Data ' then I hit 'View Account' ...(while connected to WiFi) and it comes up as 'this may take a few seconds to load' but then takes about 2 full min

  • Illustrator CS5 with Epson R1900 = aliasing lines

    Hi all, I've been searching for answers as to why my Epson R1900 is printing with aliased lines when printing from Illustrator (CS5), without much luck. I've read in another forum that it is perhaps a driver issue but have not found confirmation from

  • Keeping Scrollbar at the center of the scene

    Hi, I have a JScrollpane inside which i keep on adding different elements. Result is that the size of view increases. The scrollbar is set to be HORIZONTAL_SCROLLBAR_ALWAYS. i want the scrollbar to be at the center of the view in the begining/by defa

  • HT4859 restore notes from icloud

    My notes just disappeared from my Iphone 4i.   How do you restore notes from icloud?