Daily Birthday campaign(Wishes)!!

Hi Friends,
                   i have a requirement to send birthday wishes to customers and employees automatically on daily basis using campaign automation.
We used campaign automation process to send the wishes. when we release the campaign it executed successfully and sent wishes on the same day only(on campaign released date). We used a standard infoset(CRM_MKTTG_BP_BIRTHDATE) to create the profile set.
how do we meet our requirement (to send wishes on daily basis automatically).
Thanks,
Ramesh.p

Hi Shabbir,
   In the starting node of Campaign Automation screen After checking the Check box for Periodic Campaign field, By maintain the value for the Period Type as Daily and at Number of Periods as 30 or 365 (Depends on the period of the campaign) maintained. At the Field of EVERY --- Days Maintained value as 1.
Selected attribute source from Info Cubes and created Birthday Target group . By assigning Empty Profile of Birthday target group to the campaign element and Communication medium as E mail and maintaining Form for Email. Maintain dates and Release the campaign. It's executing the campaign on daily basis.
Thanks,
Ramesh

Similar Messages

  • Birthday Campaign

    Hello,
    I'm trying to prepare a birthday campaign but I don't know how to detect the customers whose birthday is happening in the current day.
    I´m using the infoset "CRM_MKTTG_BP_BIRTHDATE" as the source for my Attribute List, but I don´t know how to determine the filters for the field "Date of birth". Can anybody tell me how to specify it?
    I know that once having the appropriate target, the next step is going to the marketing automation and defining a recurring campaign.
    I hope somebody can help me,
    Regards,
    Efraí

    Hi Gregor,
    I also have a problem how to determine the filters for the field "Date of birth" when using infoset "CRM_MKTTG_BP_BIRTHDATE".
    Can you help me too?

  • How do I turn off Facebook birthdays

    How do i remove Facebook's birthday notifications?
    I want to keep Facebook calendar integration, but I don't want the daily birthday notifications.
    Is there a way to turn them off using Facebook, iCloud, or any other way?

    In my opinion this is an "on purpose hack" by Facebook as I feel it is to tempt you to log onto Facebook to wish happy birthday, and thus expose you to adverts.
    I have disabled Facebook birthdays in my calendar so many times, but it keeps getting checked again as if by magic.
    I have disabled access to my calendar from Facebook, even disabled Facebook notifications in Settings, and the option in the Calendar keeps re-selecting itself.
    I have now disabled all push notifications in the Facebook app under settings, lets see what happens.
    If this is a hack, I hope Facebook get a huge fine for illegal privacy and hacking law breaches.  Lets see if the authorities in America or the EU stand up for consumers.

  • How to tell if the AE programm is called from (1) SYSTEM PROCESS REQUEST or (2) page run control request

    We just wrote an AE program and is called through the vanilla SYSTEM PROCESS REQUEST.
    It's running on a daily basis ie. with RECURRENCE.
    Now we need to call the same program through the regular page run control request.
    But we are not how to recognize from inside the AE program if whether it's been called from SYSTEM PROCESS REQUEST or RUN CONTROL REQUEST.
    Any of you might have suggestion ?
    Any technique or workaround is also appreciated.
    THANKS in Advance .

    This AE pgm is currently automatically called from SYSTEM PROCESS REQUEST on a daily basis to load data from an input file deposited on the server ready for pickup.
    We would like to use the same AE pgm ( thus using the same validation and loading logic ) to load the same file format but defined by the user ( via attachment load ) as needed any time during the day.
    The user will initiate this AE pgm online ( ie. from a page with his parameters ).
    Currently, the pgm now already runs automatically daily and we wish to make it also available to be run by user anytime in the day
    To achieve that, we would need to know:
    Is the AE pgm ran by (a) the user or by the (b) SYSTEM PROCESS REQUEST so that the program can decide of where to take input file.
    (a) Take from an attachment defined by user or (b) from the input file already deposited on the server for pickup
    That is the reason why we try to detect who called the AE pgm in order decide where to pickup the input file.
    Your help is much appreciated as I do researches but so far haven't gotten a concluded decision.
    Thank you.
    Message was edited by: Kel_123

  • Quick question about my output

    I am trying to write a project to calculate 5 birthdays. There are no errors and it calclates the first 4 birthdays fine but when i type in the 5 birthday it comes up with the wrong birthday. Or if i enter the same brithday 5 times it come up wrong
    here are the bdays i have to enter
    1/1/90, 9/25/90, 9/30/90, 10/15/90, 11/1/90
    thanks in advance
    package cmpproject2;
    import chapter2.MyInput;
    public class Project2Class
    public static void main(String[] args)
    { //declare variables
    int year, myyear, month, mymonth, day, myday, age, count, otherbdays;
    //prompt user to enter today's year
    System.out.println("Please enter today's year: example 2002");
    year = MyInput.readInt();
    if(year < 1)
    System.out.println("invalid year, please enter a positive number");
    year = MyInput.readInt();
    //prompt user to enter today's month
    System.out.println("Please enter today's month example 1-12");
    month = MyInput.readInt();
    if(month < 1 || month > 12)
    System.out.println("invalid month, please enter again(1 to 12)");
    month = MyInput.readInt();
    //prompt user to enter today's day
    System.out.println("Please enter today's day");
    day = MyInput.readInt();
    if (day < 1 || day > 31)
    System.out.println("Please enter again (1 to 31)");
    day = MyInput.readInt();
    //ask how many birthdays
    System.out.println("Enter # of birthdays you wish to calculate");
    otherbdays=MyInput.readInt();
    count=0;
    while(count<otherbdays)//this will loop once for each bday
    //prompt user to enter your birthday's year
    System.out.println("Please enter your birthday's year example yyyy");
    myyear = MyInput.readInt();
    if(myyear < 1)
    System.out.println("invalid year, please enter a positive number");
    myyear = MyInput.readInt();
    //prompt user to enter your birthday's month
    System.out.println("Please enter your birthday's month");
    mymonth = MyInput.readInt();
    if(mymonth < 1 || mymonth > 12)
    System.out.println("invalid month, please enter again(1 to 12)");
    mymonth = MyInput.readInt();
    //prompt user to enter your birthday's day
    System.out.println("Please enter your birthday's day # 1-31");
    myday = MyInput.readInt();
    if (myday < 1 || myday > 31)
    System.out.println("Please enter again (1 to 31)");
    myday = MyInput.readInt();
    if (myday > day)
    month = month - 1;
    if (mymonth > month)
    year = year -1;
    //calculate the user age
    age = year - myyear;
    //Display results
    System.out.println(" Your age is: " + age);
    //get next bday
    count++;
    System.out.println();
    System.out.println("Programmer: Brian Jacoviello");
    }//end main method
    }//end Project2

    I compiled your program and tested it, heres all in and output:
    Please enter today's year: example 2002
    2002
    Please enter today's month example 1-12
    10
    Please enter today's day
    15
    Enter # of birthdays you wish to calculate
    5
    Please enter your birthday's year example yyyy
    1990
    Please enter your birthday's month
    1
    Please enter your birthday's day # 1-31
    1
    Your age is: 12
    Please enter your birthday's year example yyyy
    1990
    Please enter your birthday's month
    9
    Please enter your birthday's day # 1-31
    25
    Your age is: 12
    Please enter your birthday's year example yyyy
    1990
    Please enter your birthday's month
    9
    Please enter your birthday's day # 1-31
    30
    Your age is: 11
    Please enter your birthday's year example yyyy
    1990
    Please enter your birthday's month
    10
    Please enter your birthday's day # 1-31
    15
    Your age is: 10
    Please enter your birthday's year example yyyy
    1990
    Please enter your birthday's month
    11
    Please enter your birthday's day # 1-31
    1
    Your age is: 9
    Programmer: Brian Jacoviello
    So, the error isn't that hard to find. Look at this:
    if (myday > day)
    month = month - 1;
    if (mymonth > month)
    year = year -1;You change the current date. Your first birthday is always correct, but what happens if you first type in 9/25/90 and after that 10/15/90?
    The first if statement is true, because 25>15 so you decrease the current date by one. The age for the first birthday is correct, but now you type in the second (10/15/90) I can assure you that a guy with this birthday is exactly 12 years old!
    But remember, you decreased the month of the current date by 1, so the variable month holds the value 9 (10-1). Now the second if statement is true, and the year of the date is decreased by 1. So your program would show an age of 11.
    It's really simple to correct the mistake just concentrate on these lines:
    if (myday > day)
    month = month - 1;
    if (mymonth > month)
    year = year -1;If you can't correct it post again, you will get more help.

  • Display of Messages

    Hi,
    My client has requirement that,when a Employee Lo-gin to there system Birthday/Anniversary wishes must be displayed on there system.Can anyone suggest me how to proceed forward in this case.
    Regards

    Hi,
    Yes you can do the same. ( Considering ECC).
    1. Create Z report which will fetch the details of birth day. If it is same with sy-datum provide pop-up or birthday wish. ( You can send the mails also)
    2. Make T Code of this report.
    3. Assign it to Set start transaction ( Default).
    If you want to do the same in ESS please ask EP consultant to do the same.
    Thanks,
    Ketul

  • Criterion for Date to Creat Target Group

    hi Guru's
    Need a help on creating and executing birthday campaign.
    We are using CRM 5.0 and would like to create a target group for birthday campaign, selected BirthDay from attribute lists from the DataSource field "CRMT_MKTTG_IS_BIRTHDATE-BIRTHDT" and when i am trying to filter the date, i am confused what criterion i should select.
    Can some advice or explain me how the birthday date criterion works.
    Can any one kindly get back to me, full points will be allocated for quick reply with solution
    thank you
    regards
    shankar

    hi there
    yeah you can do what is suggested in abobe post
    besides
    try having month as filter first,like say may is the month
    now put date as 6,like all those having date of birth as 6 may irrespect of the year will get filtered out
    likewise there are many ways to do this
    best regards
    ashish

  • How to send birthday wish mail to Employees on daily basis

    Hi ,
    How to send birthday wish mail to employee with greeting card as background image in Mail Content area.
    Is there any Standard program available in SAP.
    _Requirement:_
        Normal , Birthday Wish mail can be done through function module SO_NEW_DOCUMENT_SEND_API1.
        How to write program for getting , Greeting card as background image in Mail Content area.
        Is there solution in SAP .
    Regards
      Surendar

    Hi,
    Check this for embedding image in your email : Using CL_BCS to send email from ABAP
    And this about image as background and other related stuff : http://www.reachcustomersonline.com/2010/01/23/09.27.00/#faqs
    Best regards,
    Guillaume

  • Campaign on Daily Basis

    Hi Experts,
    We have a requirement to send birthday wishes to customers and employees automatically on daily basis using campaign automation.
    We used campaign automation process to send the wishes. when we released the campaign it executed successfully and sent wishes on the same day only(on campaign released date). We used a standard infoset(CRM_MKTTG_BP_BIRTHDATE) to create the profile set.
    Could any one guide us that how do we meet our requirement (to send wishes on daily basis automatically).
    Thanks,
    RAMESH

    I could run Campaign on daily

  • Any ideas for a Birthday wishes video????

    Howdy folks,
    Thanks for taking a peak at this post. No technical problems--as of yet, but just wanted to hear from the crowd on some creativity with the apps.
    Any ideas for a background/slate to place behind people giving their best wishes to the birthday-boy?
    Editing on FCP, access to all of the CS applications--any thoughts on the matter would be appreciated.
    Thanks again for your time and have a great day,
    Liza

    Wow Bob,
    I can see that cowboy lasso/rope spinning on the top your head, but... watch out, I think you arm just hit your hat off your head... friendly.

  • Installed the" Daily managerg"r app. Wish to get off of it So it doesn't come on my printer regularl

    I installed "The Daily Manager" by mistake. I wish to remove it.??

    Hi there, take a look at this support document that steps you through how to unsubscribe scheduled delivery print apps http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&docname=c03181888#N313
    Feel free to post back if you're having any problems. All the best.
    If my reply helped you, feel free to click on the Kudos button (hover over the "thumbs up").
    If my reply solved your problem please click on the Accepted Solution button so other Forum users may benefit from viewing the post.
    I am an HP employee.

  • Auto Send E-Mail For wishing BirthDay in Organization

    Hi All,
    Auto Send E-Mail For wishing BirthDay in our Organization. pls could help me
    Regards
    Bala

    887768 wrote:
    Hi All,
    Auto Send E-Mail For wishing BirthDay in our Organization. pls could help me
    Regards
    BalaDatabase or text file with birthdates, email addresses and names; JavaMail ; scheduled job (for example use the scheduler of your operating system)

  • Help importing csv for birthday email campaign

    Hello,
    I've used the downloaded data template and uploaded a list of customers. My list shows 153 customers. After I upload it, the name of the list has (84) after it, and when I hover over the name and hit "View Subscribers," it shows 94 items in the list, (at the bottom right of the list, as such: Displaying page 1 of 5, items 1 to 20 of 94).
    When I import the csv, through the E-Mail Campaigns > Recipients window, I get a window with the following:
    Have you downloaded and reviewed the import template file (above right) to ensure your import file is setup correctly? More than one column in your customer database is updated during this import.
    I don't understand what the second sentence means. I've used the template and copied my records into it.
    Comparing lists, it is skipping names, and I can't find anything triggering it. The records are complete.
    Thanks in advance for any advice.
    Teresa

    Hi Vkid12,
    You can refer to the script below, which can check if the ad user exists, if not, it will create a new user and its phone:
    The input file c:\input.csv listed like:
    name, manager, email, location, phone
    nana, haha, [email protected], 123
    import-csv c:\input.csv|foreach{
    try{
    get-ADUser $_.name -ErrorAction Stop}
    catch{
    New-ADuser $_.name -OfficePhone $_.phone}
    To create user with the cmdlet New-ADUser, please refer to this article:
    http://technet.microsoft.com/en-us/library/ee617253.aspx
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang

  • HT3702 I want to opt out of the automatic charge on my credit card for THE DAILY.  When my subscription is up in one year, I do not wish for it to be renewed.

    What must I do to opt out of the automatic charge for the App, THE DAILY?

    Hi..
    Instructions here > iTunes Store: Purchasing and managing auto-renewing subscriptions

  • Who wants to wish Filestream a Happy Birthday?

    ?

                         \ `|
                          | |  /_  {  '.
                          | | (/ `\   } )
                          | |  ^/ ^`}   {
                          \  \ \=  ( {   )
                              ) '--' `-;\  \
                   <\/>_.'         .'  / /
               <\/></\>/.  '      /<\// /
               </\>  _ |\`- _ . -/|<// (
            <\/>    - - `  .-'`_/- |  \
            </\>        -  - -  -     \\\
             }`<\/>                <\/>`{
             { </\>-<\/>_<\/>_<\/>-</\> }
             }      </\> </\> </\>      {
          <\/>.                         <\/>
          </\>                          </\>
           {`<\/>                     <\/>`}
           } </\>-<\/>_<\/>_<\/>_<\/>-</\> {
           {      </\> </\> </\> </\>      }
           {           H A P P Y           {
        <\/>        B I R T H D A Y        <\/>
        </\>                               </\>
          `<\/>                          <\/>'
           </\>-<\/>_<\/>_<\/>_<\/>_<\/>-</\>
                </\> </\> </\> </\> </\>

Maybe you are looking for

  • Can't open Maya 2013 on MacBook Pro

    Hi, I have been using the student learning edition of Maya 2013 for almost a year now. Last night it failed to open, and has continued to do so.  The application bouncs around in the dock for some time and then a problem report pops up, the details o

  • Rebate Management Requirement

    Dear All, The client has six kinds of discounts:- 1.     Qty discount 2.     Prompt payment discount 3.     Cash payment 4.     u2018Bu2019 Belt discount 5.     Undisclosed discount etc.. Please note: u2022     Pricing is based on Region / Sales Dist

  • Logon language and title

    Hello all there, I need to adjust the logon screen of the portal and I have some minor issues I can't find an answer for. First of all, how do I change the logon language. It should always be English, no matter what the users, browser, ... locale is.

  • Want to upload iPhoto but it keeps quitting

    I installed iPhoto 11, I want to upoad the photos to use it , and it keeps quitting!!

  • 32-bit Driver Issues (OK in 64-bit)

    I'm hoping someone from Lenovo monitors this forum... System: T500 2242-CTO w/ Integrated Graphics, Intel P8400, 3GB DDR3 I have two 2.5" SATA drives, on one I loaded Windows 7 32-bit and on the other I loaded Windows 7 64-bit. I have discovered some