Day/Month appearing as Day of Year/Month

When I look at dates displayed for Time Machine (right hand date bar) I notice they display as Wednesday, 132 May 2010 then Wednesday, 139 May 2010 etc. Is there a way to get back to the actual day/month/year format I specify for an Australian machine? I have noticed similar date displays within Software Update and iSync.

Thanks, the Region under Language and Text>Formats was listed as Custom. I changed it to Australia and this had rectified the problem when I Restarted and checked Time Machine.
Cheers Gavin

Similar Messages

  • Conversion of days to year&months (HR)

    Hi friends,
    I'm working for one BI HR report, where i'm getting employee experience in days. I want to convert days into years& months. Eg: 850 days means 2 yrs 4months. At cube level i'm getting number of days, how can i get it at query level?
    thanks,
    Sridhar

    please find the complete code
      DATA: L_DATE TYPE D,
            L_TIME TYPE T,
            E_TIMESTMP like RSGENERAL-TIMESTMP,
            FINAL_DATE(16),
            INDATE LIKE PSO02-ZFBDT,
            DD TYPE i,
            MM TYPE i,
            yy TYPE i.
      PARAMETERS: I_DAYS TYPE i.
      GET TIME STAMP FIELD E_TIMESTMP.
      CONVERT TIME STAMP E_TIMESTMP TIME ZONE 'UTC+12' INTO
              DATE L_DATE TIME L_TIME.
      SUBTRACT I_DAYS FROM L_DATE.
      CONVERT DATE L_DATE TIME L_TIME INTO
              TIME STAMP E_TIMESTMP TIME ZONE 'UTC+12'.
      FINAL_DATE = E_TIMESTMP.
      INDATE = FINAL_DATE+1(8).
      CALL FUNCTION 'FI_PSO_FULL_DAY_MONTH_YEAR_GET'
        EXPORTING
          I_DATE_FROM          = SY-DATUM
          I_DATE_TO            = INDATE
       IMPORTING
         E_DAYS               = DD
         E_MONTHS             = MM
         E_YEARS              = YY  .
    WRITE:/ yy, mm, dd.
    but FM 'FI_PSO_FULL_DAY_MONTH_YEAR_GET' is not avialble in BI side, it is there in R/3 . You need to create in BI, then you can use it.
    bhaskar

  • How to convert days to years, months and remaining days

    Hi All,
    I have the number of days for example : 398 days how to
    convert 398 days to number of years and number of months and remaining days
    like 398 days 1 year , 1 month and 2 days
    Regards
    rkrao

    e.g.
    SQL> select sysdate, sysdate - 1234 from dual
      2  /
    SYSDATE   SYSDATE-1
    09-AUG-06 24-MAR-03
    SQL> select trunc(trunc(months_between (sysdate, sysdate - 1234))/12) yrs,
      2  mod(trunc(months_between(sysdate, sysdate - 1234)), 12) mnths,
      3  sysdate - add_months((sysdate - 1234), trunc(months_between(sysdate, sysdate - 1234))) dys
      4  from dual
      5  /
           YRS      MNTHS        DYS
             3          4         16
    SQL>

  • Convert number of dayes per year to data

    Please i need help in Convert number of dayes to date
    I have ID's like id
    FT*09025*0000000001 date=20090125
    FT*01171*0000000002 date=20100620
    so should convert first five number after FT to date
    example *09025*
    09 map to 2009
    025 number of dayes per year map to 25 jan
    example *01171*
    01 map to 2010
    171 number of dayes per year map to 20 jun
    (jan+feb+mar+apr+may)=(31+28+31+30+31)=151
    171-151=20 for the next month
    Please need help so will added filter to informatica map with date
    Edited by: user8929623 on Jul 4, 2010 7:04 PM

    Well, I do not follow why when 09 maps into 2009, 01 maps into 2010, not into 2001. Assuming it should be 2001, use YYDDD format:
    SQL> with t as (
      2             select 'FT*09025*0000000001' id from dual union all
      3             select 'FT*01171*0000000002' from dual
      4            )
      5  select  to_date(substr(id,4,5),'yyddd') dt
      6    from  t
      7  /
    DT
    20090125
    20010620
    SQL> SY.

  • Current date / day of year in formula

    Dear all,
    For a calculation, I need the day of the year in order to calculate a year-to-date budget (derived from the full year budget).
    [ YTD budget = Full year budget * day of year / 365 ]
    The full year budget is in my infocube, as is 0FISCYEAR and 0FISCPER and 0CALMONTH2.
    The infocube provides actual and budget data per month (0FISCPER) as most detailed level (so 0calday is not part of my cube).
    In order to make the calculation I presume I need the variable 0DAT (SAP Exit) but I am not sure if that is correct.
    Problem is: I am not able to and/or don't no how to use this variable. The documentation says that 0DAT is part of 0calday, and I am not using that characteristic...
    And when I try to create a new variable, and specify that I want to use a SAP exit and enter the name '0DAT' I get a message in return that the name is already in use....
    It seems to be a waste of space to add 0calday to my cube, just to be able to get the current date for my calculation...
    So, suggestions would really help me:
    How can I use the 'current day of the year' in a formula - preferably without addomg 0calday to my cube...

    Hi Ansem,
      The defalut 0DAT variable is charecterstic variable which you can't use it in formula(only formula variables can be used in formulas).
      So, you need to create a new formula variable with customer exit procssing type. In the customer exit code you assign day of the year to the variable .
    Then use this formula varibale in your formula in place of day of year.
    If this helps to solve your problem, do not forget to assign points.
    Regards
    MB

  • Converting date into day of year

    I'm trying to write a program that prints the day of the year, given the date is in "month day year" form ie: 1 1 05, is day number 1 and 12 25 05 is day number 359.
    the program should also check for a leap year.
    I found this in a Google search and it's rediculously close to what i'm looking to achive, but instead of "today's date" i need it to read a day that was entered using Scanner or JOptionPane... and it would have to be in the above format when being entered.
    import java.util.Calendar;
    public class CalendarExample
    public static void main(String[] args)
    Calendar cal = Calendar.getInstance();
    int day = cal.get(Calendar.DATE);
    int month = cal.get(Calendar.MONTH) + 1;
    int year = cal.get(Calendar.YEAR);
    int dow = cal.get(Calendar.DAY_OF_WEEK);
    int dom = cal.get(Calendar.DAY_OF_MONTH);
    int doy = cal.get(Calendar.DAY_OF_YEAR);
    System.out.println("Current Date: " + cal.getTime());
    System.out.println("Day: " + day);
    System.out.println("Month: " + month);
    System.out.println("Year: " + year);
    System.out.println("Day of Week: " + dow);
    System.out.println("Day of Month: " + dom);
    System.out.println("Day of Year: " + doy);
    this if for a begining level java class, and I have no idea where to get started. Any help would be appreciated.

    End result
    import java.util.Scanner;
    public class dayoftheYear
         public static void main(String[] args)
              //Declare variables
              int day, month, year, doy=0, Jan=31, Feb=28, Febleap=29, Mar=31;
              int Apr=30, May=31, Jun=30, Jul=31, Aug=31, Sep=30, Oct=31, Nov=30, Dec=31;
              //Description
              System.out.println("************************************************************");
              System.out.println("This application will"
                                  + " use input for month and day "
                                  + "\nto determine what day of the year "
                                  + "it is.  It will also check "
                                  + "\nto see if it's a leap year and adjust  "
                                  + "\nthe day of the year accordingly");
              System.out.println("************************************************************");
              System.out.println();
              //Create a Scanner object to read input.
              Scanner keyboard = new Scanner(System.in);
              //Input and print number.
              System.out.print("Input month: ");
              //Assign input
              month = keyboard.nextInt();
              //Input and print number.
              System.out.print("Input day: ");
              //Assign input
              day = keyboard.nextInt();
              //Input and print number.
              System.out.print("Input year: ");
              //Assign input
              year = keyboard.nextInt();
              //If leapyear, Feb has 29 days
              if(isLeap(year)==1)
                        Feb =29;
              //Determine day of year
              switch (month)
                         case 1:  doy=day; break;
                         case 2:  doy=Jan+day; break;
                      case 3:  doy=Jan+Feb+day; break;
                      case 4:  doy=Jan+Feb+Mar+day; break;
                      case 5:  doy=Jan+Feb+Mar+Apr+day; break;
                      case 6:  doy=Jan+Feb+Mar+Apr+May+day; break;
                      case 7:  doy=Jan+Feb+Mar+Apr+May+Jun+day; break;
                      case 8:  doy=Jan+Feb+Mar+Apr+May+Jun+Jul+day; break;
                      case 9:  doy=Jan+Feb+Mar+Apr+May+Jun+Jul+Aug+day; break;
                      case 10: doy=Jan+Feb+Mar+Apr+May+Jun+Jul+Aug+Sep+day; break;
                      case 11: doy=Jan+Feb+Mar+Apr+May+Jun+Jul+Aug+Sep+Oct+day; break;
                      case 12: doy=Jan+Feb+Mar+Apr+May+Jun+Jul+Aug+Sep+Oct+Nov+day; break;  //hey! that looks pretty!
                      default: System.out.println("Invalid month.");break;
              //Print day of year
              System.out.println("Day of year: " +doy);
              }//endmain
              //beginmethod
              public static int isLeap(int y)
                   //Assuming Y2K compliancy is not an issue, all dates will be based in the year 2000+
                   y += 2000;
                   //Check if year is a leap year
                   if(y%4==0&&y%100!=0)
                        return 1;      //yes
                   else if(y%100==0&&y%400==0)
                        return 1;     //yes
                   else
                        return 0;     //no
              }//endmethod
    }

  • Day of Year

    Hi,
    Using this code, how can I get my function to print out the actual day of the year (not the day of the month, but how many days we are into the year, such as the 120th day of the year). Thanks.
    String CalendarRoutine() {
         SimpleDateFormat date = new SimpleDateFormat("dd-MMM-yy");
         Date currentDate= new Date();
         if (DateCB.getSelectedIndex() == 0) {
         // return day of year here
         else
         return date.format(currentDate);
    }Cameron...

    If you use the class Calendar you can easy return what you want.
    I'm not sure if this convert date to Calnedar.
    Calendar myDate=currentDate.getTime();
    you can use this code to create a Calendar
    Calendar myDate = Calendar.getInstance();
    return myDate.get(Calendar.DAY_OF_YEAR);
    Hope this helps

  • My wife and I got Iphone 4S same day 2 years ago. I used the same Apple ID for both. We do not use iCloud, but today after I updated my phone to IOS7 I keep getting her texts on my phone ans vice versa.

    My wife and I got Iphone 4S same day 2 years ago. I used the same Apple ID for both. We do not use iCloud, but today after I updated my phone to IOS7 I keep getting her texts on my phone ans vice versa. I turned off imessage in message settings. Seems to have stopped now? Never did this before IOS7. Will I have more troubble when her phone updates to IOS7? Is icloud going to be forced on me then?

    This is being caused by using the same Apple ID for iMessage on both phones.  To separate your messages, go to Settings>Messages>Send & Receive and do one of the following:
    Either uncheck the email address shown under "You can be reached by iMessage at" on both phones; or
    If you want to continue to receive iMessages at this email address, on one of the two phones, tap the Apple ID at the top, sign out, then sign back in using a different Apple ID.

  • Is it possible to show the day of year in iCal?

    Is it possible to show the day of year in iCal?  There are 365 days of year and for example today april 22 is number 112.
    If it is possible - how is it done?
    thank you!

    The Apple iPad apps don't. Check out Photo Manager Pro http://graphicssoft.about.com/od/iphoneandipodtouchapps/fr/Photo-Manager-Pro.htm
     Cheers, Tom

  • HT201328 I do travel to Europe several day a year. It is true that I can use the Iphone 5 in other country with no trouble ??

    I do travel to Europe several day a year. It is true that I can use the Iphone 5 in other country with no trouble ??

    If your phone is locked to AT&T, you can certainly travel & use your phone, but you'll have to get AT&T to provision your account for International use...select the country/countries & plan. This is very expensive, as the roaming partners set the rates & you generally pay through the nose.
    And no, you can't use a local sim if your phone is locked to AT&T.

  • Day of year bug - format date/time string and scan from string?

    I've noticed that the day of year returned by "Format Date/Time String.vi" starts with a value of 1 for Jan-1 while "Scan from String.vi" wants a 0 index.  Is this a bug or feature?  
    (I'm using Labview 2010 Service Pack 1)

    I think the best idea is to use seconds since for your arithmetic, because it is going to be the most consistent and robust solution. Knowing that a day has 86400 seconds is all that is needed and you won't run in possible inconsistencies with date time implementations caused by our anything but logic calender. I would hazard that the functionality of converting a timestamp into year and day of year and back is impossible to make consistent without sacrificing other possibly conflicting transformation in the Timestamp into String and Timestamp from String manipulations.
    "Seconds since" being the actual base unit in all LabVIEW timestamps, it is best to do any arithmetic on it in this base unit.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • FM to get the number of days in Year,month and days by giving number of day

    Hi ALL,
    This is quit differnt.
    I need to give input the 'start date' and the 'number of days' and get the total days from the start date in year,month and day format.
    for example.
    start date :01.01.2009
    number of days as 32
    then i should get
    years:0
    months :1
    days :1
    Pleas help me out.

    hi Anusha,
    first u pass the date and the days to the following fm you will get the result date....
    data:date type sy-datum,
          r_date(10) type c.
    date = sy-datum.
    CALL FUNCTION 'CALCULATE_DATE'
    EXPORTING
       DAYS              = '32'
       MONTHS            = '0'
       START_DATE        = date
    IMPORTING
       RESULT_DATE       = r_date
    write:/ r_date.
    then you need to pass the result date and the date to the following fm to get the required output...
    CALL FUNCTION 'HR_HK_DIFF_BT_2_DATES'
        EXPORTING
          date1                   = r_date
          date2                   = date
        IMPORTING
          years                   = v_years
         months                 = v_months
        days                     = v_days
        EXCEPTIONS
          invalid_dates_specified = 1
          OTHERS                  = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    here u will get the difference in days,  months and year...
    i hope u wil get help from this...
    regards
    Ashu  Singh

  • First Day of Year based on given 12-month date

    Hi All,
    i want to get first day of the given year based on 12-month financial year.
    i'e if i entered '21-Sep-2014' as a given date then expected output is '01-Oct-2013'
    Could you please suggest best way to get this done.
    Thanks in advance.
    bala krishna

    Dan thanks for your reply.
    am adding more description below to my post:
    The thing is for a given date i needs to find out
    Year Start Date , Year
    End Date.
    For this am using below scripts respectively
    SELECT DATEADD(yy, DATEDIFF(yy, 0, GETDATE()), 0);
    SELECT DATEADD(DD, -1 ,DATEADD(yy, DATEDIFF(yy, 0, GETDATE()) + 1, 0));
    Here , the problem is , now its giving the current year first day and Last day.
    But what i want is Year first day should be based on (minus 12 month) i'e '01-OCT-2013'
    and Year End Day should be '30-SEP-2014'
    i hope now the requirement is more clear.
    bala krishna
    Try like this
    SELECT DATEADD(mm,DATEDIFF(mm,0,GETDATE())-11,0) AS StartDate,DATEADD(mm,DATEDIFF(mm,0,GETDATE())+1,-1) AS EndDate
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Date Format (month in words, day and year in number)

    Hi Experts,
    Is there any standard format available in SAP as a data type for the following format in date i.e. 05 th June 2006 or June 05 2006.
    Any format where the month should be in letters. If its there could you pls revert back ASAP.
    Thanking you in advance.
    Jasmine

    The month in words datatype is FCLTX.
    If you have the date field, you can convert to your required format.
    data : out_date(20) type c.
    DATA : ws_fcmnr TYPE fcmnr,
           ws_month TYPE fcltx.
    parameter   date like sy-datum.
    ws_fcmnr = date+4(2).
    SELECT SINGLE ltx
    INTO ws_month
    FROM t247
    WHERE mnr = ws_fcmnr
    and spras = 'EN'.
    concatenate ws_month date6(2) date0(4) into out_date separated by space.
    write out_date.
    Thanks,
    Susmitha
    Dont forget to reward points for useful answers.

  • Service Requests-Business days when year changes

    Hi All,
    I am trying to calculate for how long a SR has been open in business days only.
    I have successfully used Mike Lairson's formula for the last 9 months but it seems it cannot cope with year changes. If the begin data is in 2009 and the end date in 2010, the results are not correct anymore.
    E.G. For an SR that was opened on 12/30/2009 and closed on 01/05/2010 should return 5 business days but it is actually returning 110.
    The syntax that I used so far is:
    (CASE
    /* Convert Sunday to the Business Day Of the Year */
    WHEN DAYOFWEEK("Service Request"."Closed Date and Time") = 1
    THEN (DAYOFYEAR("Service Request"."Closed Date and Time") - WEEK("Service Request"."Closed Date and Time")) -
    (WEEK("Service Request"."Closed Date and Time") - 2)
    /* Convert Saturday to the Business Day Of the Year */
    WHEN DAYOFWEEK("Service Request"."Closed Date and Time") = 7
    THEN (DAYOFYEAR("Service Request"."Closed Date and Time") - WEEK("Service Request"."Closed Date and Time")) -
    (WEEK("Service Request"."Closed Date and Time") - 1)
    /* Convert Mon-Fri to the Business Day Of the Year */
    ELSE (DAYOFYEAR("Service Request"."Closed Date and Time") -
    WEEK("Service Request"."Closed Date and Time")) +
    (2 - WEEK("Service Request"."Closed Date and Time")) END)
    (CASE
    /* Convert Sunday to the Business Day Of the Year */
    WHEN DAYOFWEEK("Service Request"."Opened Date") = 1
    THEN (DAYOFYEAR("Service Request"."Opened Date") -
    WEEK("Service Request"."Opened Date")) -
    (WEEK("Service Request"."Opened Date") - 2)
    /* Convert Saturday to the Business Day Of the Year */
    WHEN DAYOFWEEK("Service Request"."Opened Date") = 7
    THEN (DAYOFYEAR("Service Request"."Opened Date") -
    WEEK("Service Request"."Opened Date")) -
    (WEEK("Service Request"."Opened Date") - 1)
    /* Convert Mon-Fri to the Business Day Of the Year */
    ELSE (DAYOFYEAR("Service Request"."Opened Date") -
    WEEK("Service Request"."Opened Date")) +
    (2 - WEEK("Service Request"."Opened Date"))
    END)
    +
    /* Adjust for Year Change */
    (365 * (YEAR("Service Request"."Closed Date and Time") -
    YEAR("Service Request"."Opened Date")))
    Any ideea or hint would be highly appreciated.
    Thank you.
    Regards,
    Dorin
    Edited by: user805960 on 06.01.2010 07:07

    Hi,
    i used this formula to find out the days it calculates between 31/12/2009 and 01/01/2010, the result it gave was 106 days.
    So i subtracted 106 from 365 days (365-106=259)in the formula, the formula is now giving the correct values.
    I think we have to add the total working days and not the no.of days in a year.
    Please can you all reconfirm the results.
    Thanks
    Neena
    Edited by: NNK on Jan 11, 2010 3:16 PM

Maybe you are looking for