Is it possible to do "1st and 3d" week of month events?

I'd like to have a recurring event that happens 1st and 3d Monday of the month. The custom option for recurring events doesn't seem to allow this ... but is there a way?

Tahm,
It appears to me that you will have to create an event and use "Custom" to repeat the first Monday:
...and then create a second event on the third Monday.

Similar Messages

  • How to select 1st and 15th of every month

    hello,
    what is the select statement to get 1st and 15th of every month from todays date till the end of current fiscal year (sep 30th)
    ex:
    June 15th - 06/15/2008
    July 1st - 07/01/2008
    July 15th - 07/15/2008
    sep 1st - 09/01/2008
    sep 15th - 09/15/2008

    SELECT
         TO_CHAR(The_Date, 'FMMonth DdTH')
          || ' - ' || TO_CHAR(The_Date, 'MM/DD/YYYY')
    FROM
          WITH
              Months
          AS
              (SELECT Level M FROM Dual CONNECT BY Level <= 9)
          SELECT
              TO_DATE(M, 'MM')     The_Date
          FROM
              Months
          UNION ALL
          SELECT
              TO_DATE(M, 'MM') + 14     The_Date
          FROM
              Months
    WHERE
         The_Date > SysDate
    ORDER BY
         The_Date

  • Scheduling process chain in 1st and last of the month

    Hello ,
    Can some one help in scheduling the process chain at the starting of the month and the end of the month ?
    The chain has to start on 1 st and 28th of every month.
    Help me with the informations please!
    Points will be assigned!
    Thanks in Advance
    Ram!

    Have your process chain to start "After event". Then create an ABAP program to call function module BP_EVENT_RAISE. There are numerous postings in this forum on how to do this.
    Next create two monthly jobs (one scheduled on the 1st and the other on the 28th) using SM36, and the only step in the job is to call the program to trigger (raise) the event. By triggering the event, your process chain will execute.
    Check these links:
    Re: scheduling process chain 3 specific times a day

  • IT0014 Deduction occurs on 1st and 3rd week pay periods

    Hi Sap Experts,
    Please help me to understand and how to configure the below requirement.
    IT0014 - Payment/ Deduction occurs only on 1st and 3rd Payperiods ( Pay frequency is Weekly).
    Thank you,
    Naga

    Naga,
    For this requirement you need to setup the payment models.
    ->Define Payment model
    ->Generate the payment model calander
    ->Set the pay periods for payment models
    ->Assign a wage type which needs to go with this payment models.
    All you can do in the SPRO under deductions node, -> deduction frequency
    Hope this helps you
    Thx,
    Ashish

  • Is it possible that my Extreme and Expresses are draining monthly data allowance?

    I hope someone can answer this, as I'm having a real issue with brand new installations of satellite internet.  We have a 10GB/mo allowance on the accounts, and on one of the accounts that feeds a main house, I have 1 new Extreme and 3 new Expresses to try and grab the signal in bedrooms.  The house is and has been empty since installation of the very first month, yet according to the provider, we have used almost all of the data allowance for the month.
    There is no computer equipment in the house that could be "updating" automatically or iClouding or anything like that.  It is a closed large house, that no one goes in but me periodically to check on until it will be occupied in Oct.  The satellite company is trying to look at what is happening but they are not well versed in Apple routers and wanted me to ask if its possible that the Extreme and Expresses are doing something in updating or communicating with each other that would drain the usage by "talking" or "downloading" or accesing the internet.
    Thanks!

    I'm certain.  This is a large farm estate and I installed 4 separate accounts in 4 separate locations.  The one that gets 24/7 usage in the office with 1 PC, an airbook and iPhone (and I never shut down the PC at night so its always online) used 7GB in a month.  This uses a Time Capsule but stands alone and doesn't communicate with any other router.  Another system is at the pool house area and also uses and Extreme but doesn't link to anything else (no Express)  This has also been an empty building as no people are in residence until Oct.  It used only .2GB in a month (bear in mind I speed tested and looked at YouTube to check the speed).
    This is why it was stunning that the main house with basically the same set up as the Pool House and no people used 8.5GB.  The only thing different is that it is communicating with 3 Expresses in that building.
    I'm fast realizing 10GB a month is meager compared to what most people are used to, but this is all that is available.  We have been used to having only landline DSL at a rate of 756k-1MB and no cell service, so people will be thrilled if we have enough speed to see a YouTube video.  Because of our situation no one has ever used the web for gaming or Netflix or anything like that - it was impossible.  People just want to be able to do what I do in the office - email, check the web for news.  My boss does like Skype, but he doesn't hang on it.  His Skype calls last about 1 minute (LOL!) and he may do that once a day to our Europe office when he is in residence, but the majority of the time the place is empty, so I'm hoping this will suffice.
    Thanks!  You have basically answered what we needed to know - the Extreme and Express aren't doing anything extraordinary that would cause a massive drain of GB.  Have a wonderful weekend!

  • To run a job on 1st and 2nd week of the month.

    I need to schedule  a job on 1st full week and 2nd full week of the month.  What is the best way to identify the Week and trigger the job?  Any input is appreciated.
    thx
    Jeff

    Hi Jslader,
    I agree with the 1st option of Visu - by calendar.
    For example, assign the CALENDAR parameter to MNTH-12WK (example only) unless there are predecessors of the job you have created.
    Best regards,
    Sev

  • How to Call Center Opens at a diffrent times 1st and 3rd Tue. of the Month

    Hello all,
    I'm new to UCCX and doing my best to understand scripting. I've created a script that's is normally open 7am to 12pm closed from 12pm to 1pm for lunch then open from 1pm to 5pm then closed again until 7am.
    Now every 1st and 3rd Thursday of the month they open at 9am instead of 7am.
    How would like script something like this? Is this possible?
    Thanks in advance for the help.
    We are running UCCX version 8.5 and using the IPPA.

    Here's a solution that works with Enhanced.
    The solution is simple.  If today's Day of Week (DoW) is equal to the target DoW, then we jump backwards in time by one week, and if we're still in the same month, we repeat that process over and over again, until we have stepped back so far, we step into the previous month.  All along the way, keeping track of how many times we were able to jump back in the same month.  This becomes our instance counter and what we check to see if we are on the correct instance of the target DoW.
    Subflow Script
    Variables
    boolean is_matched = false
    Date today = d[now]
    Date date_crawler = d[now]
    int target_dow = 0
    int target_instance = 0
    int instance_counter = 0
    Script: system-date-instances.aef
    StartLABEL0:If (date_crawler.dow == target_dow) Then  True    Increment instance_counter    Do date_crawler.setDate(date_crawler.date - 7)    If (date_crawler.month == today.month) Then      True        Goto LABEL0      False  FalseSet is_matched = instance_counter == target_instanceEnd
    Caller Script
    Variables
    boolean is_third_thursday = false
    Script - main-aa.aef
    Start...the intro to your script.../* You will need to pass in two integers as input parameters: target_dow and target_instance *//* taget_dow can be 1 - 7 (Sunday - Saturday) *//* target_instance would be a number representing which DoW you are interested in *//* E.g., If I wanted to know if today is the third thursday in the month I would pass in: *//* target_dow = 5 and target_instance = 3 *//* You will need to get back one boolean as an output parameter: is_matched */is_third_thursday = Call Subflow(SCRIPT[system-date-instances.aef], is_matched)If (is_third_thursday)  True    ...use modified business hours...  False    ...use regular business hours......the rest of your script...End
    Anthony Holloway
    Please use the star ratings to help drive great content to the top of searches.
    Tags: first, second, third, fourth, sunday, monday, tuesday, wednesday, thursday, friday, saturday
    Message was edited by: Anthony Holloway - Adding tags

  • Possible to create detailed and Summary in same crystal report?

    Hello
    I have worked with cyrstal reports back in 2001. Now I am back to creation of reports. I vaguely remember I was able to create summary and detailed reports from one crystal report file. I don't remember if I was using two different stored procedures or not. Can anybody explain if it is possible to create summary and detailed reports from one crystal report file and with one stored procedure. I am guessing somehow I should be able to control behaviour of report - ie. say if user selects detailed report- report will show all records and if user selects summary view then report will show summarized view of same data.
    If its possible how do you do it? Can you explain.
    Thanks a lot.

    There are a couple of techniques with drilling and sub-reports, but what I do most frequently is create a Detail/Summary  parameter for the user to select, and then have a formula that references this parameter to either hide or display a Detail section of the report sepending on the option the user chooses.  My experience is that most users can relate to this approach better, where as driling and sub-reports can sometimes cause confusion for them.

  • Tdms-files: Is it possible to prevent LabVIEW and DIAdem from creating .tdms_index files?

    Hello,
    is it possible to prevent LabVIEW and DIAdem from creating .tdms_index files when opening/creating/editing a .tdms file?
    I think I have no benefit from the .tdms_index files because our applications create a lot of little .tdms-files (repeat measurements). With the additional .tdms_index files we have unnecessary memory consumption and it takes longer for Windows to open the containing folder. Also it´s confusing when searching for a certain file.
    Best Regards
    Daniel
    Solved!
    Go to Solution.

    Hi Baui,
    I'm afraid there's a direct way to disable creating .tdms_index file now from LabVIEW and DIAdem. You can use TDMS Advacend API in LabVIEW, which doesn't create any index file, or you can just make some simple programming and delete the .tdms_index file after closing the TDMS file. 
    This is a request for a long time, we'll consider to add this feature for TDMS in future releases.
    Yongqing Ye
    NI R&D

  • Is it possible to restrict copying and printing a pdf?

    Is it possible to restrict copying and printing a pdf without setting a password? I just want to restrict using the document, but don't want a password-demanding window to pop up.

    Hei guys!
    I truly need your reply!
    Any reply or a hint or a reference to another application is welcome.
    Thank you!

  • TS1702 After installing the new software to my iPhone 4S , my dream zoo either will not start or when it does it has a blank screen that has a few icons on it that wont work. How can I fix this is it possible to go back and reinstall the older software ?

    After installing the new software to my iPhone 4S , my dream zoo either will not start or when it does it has a blank screen that has a few icons on it that wont work. How can I fix this is it possible to go back and reinstall the older software ?

    Unfortunately I tried that and it didn't work. Thanks for the help though. I tried to uninstall and it said I couldn't because the file is corrupt or something, but I think I finally got it uninstalled and/or deleted or whatever, but now I try to reinstall/download it again from the beginning and I can't. No matter what I do I can not get Firefox working again. No matter how many times I try to redownload it. Any other suggestions?

  • Parts of the 1st and 2nd generation ipod nano's?

    I have a question. Does anyone know if the parts of the 1st and 2nd generation nanos are compatable with each other or are they different.

    no they dont work together

  • I have a ipod nano 1st and 2nd generation and am trying to put music on it but every time windows says one of the usb devices attached to this computer has malufunctioned and windows does not recognize it code 43 can someone help me please

    i have a ipod nano 1st and 2nd generation and am trying to put music on it but every time windows says one of the usb devices attached to this computer has malufunctioned and windows does not recognize it code 43 can someone help me please

    Try putting it into "Disk Mode" http://docs.info.apple.com/article.html?artnum=93651
    Then with it in this mode connect it to the PC and try to run the latest iPod updater to do a restore and update software if you have the option. the latest iPod updater is 2006-03-23 and can be downloaded here http://www.apple.com/ipod/download/

  • TS1901 Disk Utility can't repair this disk. Back up as many of your files as possible, reformat the disk, and restore your backed-up files.

    Disk Utility can’t repair this disk. Back up as many of your files as possible, reformat the disk, and restore your backed-up files.
    *** ??? I need to take out the data from a WD320 that shows this error and then format the WD and put the data into again
    THANKS !!!

    I'm sorry, is there a question here? You seem to know precisely what you need to do…

  • Can I fix a disk with this message?-Disk Utility can't repair this disk. Back up as many of your files as possible, reformat the disk, and restore your backed-up files.

    Can I fix a disk with this message?
    Disk Utility can’t repair this disk. Back up as many of your files as possible, reformat the disk, and restore your backed-up files.

    Some problems can indeed be fixed this way. But working from Recovery_HD or Disk Warrior DVDs and working in the restricted environment those provide can be difficult. You can literally spend days working on this problem (while your regular work is unavailable) only to discover the old drive is unsalvageable.
    There is no way to know up front whether you are facing a major Hardware failure or a minor software glitch, or something in between. Often you are forced to work from the drive you no longer trust. I continue to recommend you do this work from a different, fully functioning Mac OS X booted from a different drive.
    If you have had the foresight to (as The hatter often recommends) clone your virgin install onto another drive for use in such situations, you will be able to recover from such problems in record time. If not, my previous recommendations stands:
    Buy a new Drive. Or  two. Install Mac OS X from scratch on a new drive, and get your Mac running again. Later, you can use the full power of Mac OS X to attempt to rescue your data, if needed. Then Zero the old drive, to see if it can hold data again reliably.
    If the old drive eventually provides some needed data, and is salvageable, Merry Christmas.

Maybe you are looking for

  • Recognizing a printer attached to an Airport Extreme Base Station

    I have attached a printer to the usb port of my airport extreme base station. The printer is recognized by two of my MacBook Pros running Mac OS X version 10.4.11. However, it is not recognized by my latest MacBook Pro running 10.5.2. Is this a probl

  • How can I read a TDMS 2.0 file using nilibddc.dll

    I have written some Matlab software to read TDMS files into Matlab using the MATLAB TDM example and the nilibddc.dll. However, when I create a TDMS version 2.0 file with Labview 2009 I cannot read it into Matlab as I get the error ERROR: TDS Exceptio

  • Rename MetaData property in KM

    Hi All, I am using a metadata property called "year"  for my document repository. All the existing documents are using this property. Now if i want to change the display name to " Calendar year" , it changes and saves. But when i create a new documen

  • Parrallelization of RMAN Full Database Backup Confusion

    Hi, I am running Oracle 10gR2 on Solaris 5.10 on sparc machine having 16 CPUs. I am using following RMAN script to take full database backup: #!/bin/bash ORACLE_HOME=/u01/app/oracle/product/10g PATH=$ORACLE_HOME/bin:$PATH ORACLE_SID=mtcedwp export OR

  • Can't find the application program in itunes

    Can't find the application program in itunes!! Can charge, see a picture, is unable to find application in ITUNES