Calendar year is wrong

My calendar is showing 2755 BE. How can I change it to this year?

Change Settings > General > International > Calendar to Gregorian rather than Buddhist.

Similar Messages

  • I created a calendar in the wrong calendar year.   I need to change it from 2012 to 2013. Help!!!

    I created a calendar in the wrong calendar year.   I need to change it from 2012 to 2013. Help!!!

    N000295, I am afraid you will have to start all over again. There is no way to change the year of the already created photo calender.

  • Query row structure to restrict on multiple ranges of Calendar Year /Month using Custom exit

    Hi All,
    I have written 2 queries in Bex 7.x which have similar requirement. One uses 0CALMONTH and other 0FISCPER. I will describe scenario with Calendar Year month query.
    Query to have user entry screen for 0CALMONTH. Added 0CALMONTH in Filters section and restricted on mandatory user entry variable.
    Key figures restricted in four ways by creating a row structure with four selections
    Current Month User entered value on selection screen (Restricted on User entry variable)
    Previous Month / Period (Above value offset -1)
    YTD value Range from Previous July / 07.YYYY to current user entered month value (Custom exit)
    LYTD value - Above value for previous year (Above value offset -12)
    For YTD value wrote a custom exit code which uses the user entry variable on 0CALMONTH to retrieve the current month value and then give output range value for YTD.
    The custom exit code when debugged seems to calculate the correct range. However the query output is not working and gives out the same data for Current month and YTD range. Also LYTD value and Previous month value don't show up with any data at all.
    Any tips on where we are going wrong would be helpful.
    Thanks!
    Custom Exit code:
    WHEN 'ZGB_FP_AYTD_PTNR'.
         IF i_step EQ '2'.
           READ TABLE i_t_var_range INTO loc_var_range WITH KEY vnam = 'ZFP_AYTD_PRTNR'
                                                                iobjnm = '0CALMONTH'.
           IF sy-subrc EQ 0.
             CLEAR: l_month_curr, l_month_low, l_year_curr, l_year_low,
                    l_calmonth_low, l_calmonth_high.
             l_month_curr = loc_var_range-low+4(3).
             l_year_curr = loc_var_range-low+0(4).
             l_month_low = 001.
             l_year_low  = l_year_curr.
             CONCATENATE l_year_low l_month_low INTO l_calmonth_low.
             CONCATENATE l_year_curr l_month_curr INTO l_calmonth_high.
             l_s_range-low = l_calmonth_low.
             l_s_range-high = l_calmonth_high.
             l_s_range-sign = 'I'.
             l_s_range-opt = 'BT'.
             APPEND l_s_range TO e_t_range.
           ENDIF.
         ENDIF.

    Hi
    try this code
    WHEN '0CALMONTH'.
    CLEAR: l_month_curr, l_month_low, l_year_curr, l_year_low,
                    l_calmonth_low, l_calmonth_high.
         IF i_step EQ '2'.
      loop at i_t_var_range INTO loc_var_range where vnam = 'ZFP_AYTD_PRTNR'.
             l_month_curr = loc_var_range-low+4(2).
             l_year_curr = loc_var_range-low+0(4).
             concatinate '0' l_month_curr into l_month_low.
             CONCATENATE l_year_low '001' INTO l_calmonth_low.
             CONCATENATE l_year_curr l_month_low INTO l_calmonth_high.
             l_s_range-low = l_calmonth_low.
             l_s_range-high = l_calmonth_high.
             l_s_range-sign = 'I'.
             l_s_range-opt = 'BT'.
             APPEND l_s_range TO e_t_range.
           endloop.
         ENDIF.
    This code used for calculate fiscal period interval from your input month.
    For Ex
    user input is 05.2014
    customer exit result as 001.2014 - 005.2014.
    Note: Fiscal year period is Jan - Dec otherwise need to convert the input month details.
    Regards
    Sureshkumar

  • Derive Calendar Year/Month from FiscalYear/Period

    Hi,
    I have ODS A and Cube A. Cube A has time characteristics which are not exist in ODS A. The Fiscal year/period characteristic in Cube A is based on a date infoobject (called Date1) in ODS A.
    For Calendar Year/Month, I want to derive it from fiscal year/period (0FISCPER).
    Since 0FISCPER is not in ODS A, I make use of Date1 in the ABAP routine and call DATE_TO_PERIOD_CONVERT function to convert it to fiscal period and then output the result as YYYYMM.
    The code is as below:-
    MOVE COMM_STRUCTURE-/BIC/ZCRBUCDTE TO v_date.
    CALL FUNCTION 'DATE_TO_PERIOD_CONVERT'
        EXPORTING
          i_date  = v_date
          i_periv = 'Z1'
        IMPORTING
          E_BUPER = EFISPER
          E_GJAHR = EFISYEAR
        EXCEPTIONS
          INPUT_FALSE = 1
          T009_NOTFOUND = 2
          T009B_NOTFOUND = 3
          OTHERS = 4.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    *result
    CONCATENATE EFISYEAR EFISPER+1(2) INTO RESULT.
    There is no syntax error in the routine. But when I load data from ODS A to cube A, it gives me warning but no message. The request just hung.
    I don't know what went wrong. Please help.
    If you have any suggestion to achieve the same thing. Please let me know also.
    Thanks in advance.
    Message was edited by:
            CH

    Date1 in my message is reffering to ZCRBUCDTE.
    Message was edited by:
            CH

  • Calendar.HOUR_OF_DAY ok, wrong with Calendar getTimeInMillis

    Hi! I've a very strange behaviour (at least for me) regarding getTimeInMillis from the Calendar class.
    I have this code:
    Calendar ahora = new GregorianCalendar(TimeZone.getTimeZone("Etc/GMT+6"),new Locale("es_MX"));
    System.out.println(ahora.get(Calendar.HOUR_OF_DAY));
    System.out.println(ahora.get(Calendar.DAY_OF_MONTH)+1);
    System.out.println(ahora.get(Calendar.MONTH));
    System.out.println(ahora.get(Calendar.YEAR));
    java.util.Date f = ahora.getTime();
    System.out.println(f.toString());And the output is:
    14
    10
    10
    2004
    Sun Oct 10 20:24:59 GMT 2004
    The strange thing, is that the Calendar.HOUR_OF_DAY prints the hour correctly (14) but the Date object says it is the hour 20. What tha hell is going on there? Why one print the hour correctly and the other don't! I supouse that it has something with the TimeZone in the Calendar class, but I don't know what exactly is going on.
    Regards!

    Hi bbritta! I used the SimpleDateFormat and the result is the same. I still get the right hour from Calendar.HOUR_OF_DAY but wrong from toString() from the Data object created with the milliseconds of the Calendar.
    This is what I did after your post:
    Calendar ahora = new GregorianCalendar(TimeZone.getTimeZone("Etc/GMT+6"),new Locale("es_MX"));
    SimpleDateFormat formatter =     formatter = new SimpleDateFormat("h:mm a",new Locale("es_MX"));
    java.util.Date f = ahora.getTime();
    System.out.println(formatter.format(f));In fact, the behaviour is very strange. In Mexico City we are at GMT-6, but if I put that on the TimeZone of the Calendar, it always show a plus 12 hours. For example, right now we are 15:00 on October 10 in MexicoCity, if I use GMT-6 (in theory the right timezone), I get that is the hour 3 (AM) on October 11. But if I put GMT+6, I get the right hour and day from Calendar.XXXX but wrong from the millis.
    Any other idea?

  • Quota credit on 1st of calendar year for existing employees and for new joinees on prorata basis

    Dear All,
    we are having an issue in quota generation, where casual leave quota should get credited on 1st of every calendar year and for mid month joiners on prorate basis. If we select calendar year it is crediting on 31st of calendar year, but we need it to be credited on 1st  of January and also checking the prorate condition for new joiners.
    So please guide on whether it is possible through standard or any work around solution. If so how can it be achieved.
    Thanks
    Vijaya

    Hi,
    check this one prorate basis -
    http://scn.sap.com/docs/DOC-52928
    for you quota on 1st day of calender year, check the settings in the table V_T559L
    - Validity/deduction interval
    - Validity period for default values
    Best Regards.

  • Formula for calculating Quarter value in current calendar Year

    Hi All,
    I have a requirement where in i need to display values for Q1 of Current Calendar Year, Q1 of Previous Calendar Year,Variance in Value and % Variance in Value...Similarly for Q2,Q3,Q4.
    We have built the report directly from Bex Query from the SAP tab in Crystal Reports. The formula for Quarter1,Variances etc are defined in Bex Structures and i am unable to get 'em individually here rather i am getting them as a whole in a single object with the structure name. Now is there a way that i can define my own formula in Crystal Reports so that i can get the values for the constraints defined above???
    If yes please give me the syntax or an example formula so that i can work around.
    please Help,
    Thanks & regards,
    R.N

    What fields are you getting?
    or what is the data you are working with is it
    transID, date, value......
    or is it
    Q1, Year1, Value.......

  • Absence Quota Generation begining of Calendar Year

    Hello Experts,
    Although the said requirment has been already posted in SDN, could not see any solution for this from the threads.
    I have a requirment to Generate Absence Quota i.e Annual Leave at the begining of the year, precisely when i run Time Evaluation on 01.01.2011 system should generate the Quota in advance for the Calenday year.
    I could generate via Report RPTQTA00 but the same is not happening in TE, even i tried with all Accrual options like Calendar Year, Monthly, Payroll Period, Base Period etc but system picking only the last day of the month or year.
    I am wondering if some potential solution would have released from SAP during EHP 4 and 5
    Kindly help me with your expertise
    thanks
    Gita

    Hi Vivek,
    i am facing the following senio can you please provide and document with pcr. I dint find the solution in SCN so please provide solution ASAP...
    I have one senario in TIme management ....
    Employee have 1year probation period ,but he is entiteled for taking leave after 1 year . that to leave should be accured for calender years after probation period. & henceforth it should accur per calender year.
    For Example: Employee have joined on April 2011 ,Then his leave should be accured after April2012 upto Dec 2012 & then for next year 2013 leave should accure from Jan 2013 to Dec 2013.
    Please help me to map the senario with detailed configuration steps
    Pls help me out here the requirement is immediate.

  • The old calender iOS6, in the year view, it shows how much busy I am in a day by indicating the color intensity. But the new calendar year view is totally useless!!! also too bright!! Why apple does this?? What is the way to revert the calendar back???

    The old calender iOS6, in the year view, it shows how much busy I am in a day by indicating the color intensity. But the new calendar year view is totally useless!!! also too bright!! Why apple does this?? What is the way to revert the calendar back???

    Unfortunately, that's the way the cookie crumbles nowadays. Sir Jony Ive's GUI design for iOS7 has been met with much skepticism (to say the least). But until the company sees the compelling need for an adjustment or reversal, it "ain't happenin' ". So amble over to the feedback page ( http://www.apple.com/feedback/ ) and make your displeasure known to the company, OR make it known by not purchasing its products. Because as long as the iGadgets continue selling as fast as they can make them, they will see no need for change.
    BTW, do note you are NOT talking to Apple here. This is just a user-to-user forum.
    Edit: for now, you can also try out any of the alternate calendaring apps available in the App Store.

  • Calendar day and Calendar Year/Week  mapping

    Dear SDN,
    I am unable to view Calendar Year/Week and Calendar Day ...Data..
    I have observed that they have not mapped in the Update rules of 0SD_C03 InfoCube...
    I have checked all the InfoSources (2LIS_11_VAHDR, 2LIS_11_VAITM, 2LIS_11_V_ITM, 2LIS_12_VCHDR, 2LIS_12_VCITM, 2LIS_13_VDHDR, 2LIS_13_VDITM)...
    There in all the Update Rules...
    Update Rules -- Details -- Time Ref.---
    Time Characteristic of Fiscal Year Variant is mapped with Source fields of Fiscal Year variant
    similarly,
    Calendar Year/Month is mapped with Update Date Statistics
    But Calendar Year/Week and Calendar Day are Blanck...
    I am thinking they also should be mapped..
    Please suggest me how to resolve this...
    Help will be greatly appreciated with points..
    Thanks in advance..
    This is very urgent...

    Thanks...
    But i have already assigned my self...
    0calyear/week to Update date statistics...
    and
    0calendarday to Update date statistics..
    I have assigned points to you...
    Thanks for your informatioon

  • Unable to view the Calendar Year/Month in the Query

    Hi All,
    We are having a standard query on Customer InfoCube 0sd_c01_q0003.
    I was able to get the data. But I am unable to view the Calendar Year/month. In that place I am getting '#'.
    I am able to view the details in the InfoCube. There aren't any errors while executing the error.
    Regards
    YJ

    hi,
    U r Problem is not clear...if u r getting # for characteristic values means..u don't have data in Infoprovider...try to view data in InfoProvider with the same selections that u r executing the Query with.
    thnaks

  • Ios 7 Calendar year view lost gradient colours

    Noticed that on ios 7 the calendar year view no longer shows the gradient colours.
    This was very cool feature so you could have an overview of how busy was my agenda.
    Any idea if this is a setting that needs to be activated somewhere or is it totally gone?
    If not year view seems pretty useless...

    When you restarted the app did you quit it first?
    I would first quit the app then reset the phone.
    Double click the Home button to show the screen with running and recently used apps. Each app icon will have a sample page above it. Flick up on the page (not the app icon) and the page will fly away and the app icon will disappear. This quits that app.
    Then press and hold the Home and Sleep buttons simultaneously until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.

  • Fiscal year variant is not maintained for calendar year 2009

    Hi,
    After upgrade to BI 7.0 we are getting error: "Fiscal year variant & is not maintained for calendar year 2009" while opening a query through Bex Analyzer.
    Basically it is happening like when we open a particular query, the Variable selection screen comes up, then on clicking the exection button (after selection) it shows SYSTEM_FAILURE exception & clicking the details button, shows the message ""Fiscal year variant is not maintained for calendar year 2009"
    Please provide some information/resolution to this.
    Thanks,
    Shantanu.

    HI,
    Please ensure that you have defined your fiscal year variant in OB29
    correctly.  It is necessary that:
      1.  the previous year has been maintained,
      2.  an entry for Dec 31 exists in each fiscal year,
      3.  the following fiscal year has been maintained.
    Hope this helps.
    Regards,
    Nitin

  • Calendar app showing wrong date for iCal feed.

    Has anyone else noticed that when an iCal feed publishes an event that is after 0000Z, but still on the previous date in local time, it's added to the calendar on the wrong day?
    Example:  Your phone is being used in Chicago (CST).  An ical feed you subscribe to publishes and event for 0300Z on November 5th.  That event should then actually be on November 4th at 2100 CST, however, the phone will enter the event with the corrected time of 2100Z, however, won't correct the date which should be on the 4th (CST = GMT -6 hours).

    I have my Mac's calendar auto-adjusting to time.apple.com.  After coming back from Asia, now my calendar shows that November 11th, 2014 is a Wednesday; it is supposed to be Tuesday!

  • Only activities of the current calendar year are shown in plannend act.

    Hello Techies,
    We are using the 2007 UI and I have the following problem. Only activities of the current calendar year are shown in plannend activities and interaction history.
    SAP probably made a query only showing a set of data (current year) for performance reasons. I would like to change this in the last 6 months. My users can not see there activities of last week since it only shows 2009.
    How can this be changed?
    Kind regards.
    Frederik

    Frederik
    You can control this by maintaining the view:
    CRMV_ACC_1O_CUST
    Or in the IMG:
    CRM->Master Data->Business partner->Specify Display Options for Business Transactions
    Take care,
    Stephen

Maybe you are looking for

  • How do i get my apps back on phone after a software upgrade

    I did a software update on my Sony Experia ION LT28at yesterday and I lost all my apps. I know how and did go to the play store and download the same apps except one and I know its in my google acct because I saw it yesterday but I don't know where I

  • Port is not listening

    10.6.8 X-serve.  I have an app that requires ports 9100 and 9200 to be open.  I have added these ports to the server firewall to enable.  Started and stopped the sever firewall.  My app is unable to connect via these two ports.  Through terminal nets

  • Global Event Handling

    I am writing a program that needs to detect keystrokes and mouseclicks globally. Right now I am using KeyListener and MouseListener to keep track of all keystrokes and mouseclicks, but that only handles keystrokes and mouseclicks in the window of my

  • WAS java install hangs when tries to start engine

    I am trying to install a WAS 640 JAVA I recently deleted and installation off of this server, I dont know if this has anything to do with my problem. When the new install reaches the last step of starting the J2ee it hangs. WHat happens is it starts

  • Crashes 10.7.5

    Hey so recently i have been experiencing crashes with random things with word safari itunes app store even a software update along with microsoft word right when i finsish a huge essay i press the command s and it crashes. also my three favorite comp