Using ADF calendar to show employee absences

Hi,
(Actually this question belongs to ADF as well as HRMS..so posting in both the forums)
We are having JDeveloper 11.1.2.4
We need to show employee absence calendar in ADF page.
Question 1) We believe we can use ADF Calendar component for this. Kindly confirm.
I gone through "How to Use the ADF Faces Calendar" section in ADF Guide and tried to implement Employee Absence Calendar accordingly (based on seeded oracle table - PER_ABSENCE_ATTENDANCES.)
However step 2 mentions creating 3 named bind variables in VO:
A string that represents the time zone
A date that represents the start time for the current date range shown on the calendar.
A date that represents the end time for the current date range shown on the calendar.
I created these 3 named bind parameters accordingly. However when I run the page with ADF calendar, it shows following error:
Attempt to set a parameter name that does not occur in the SQL: timeZone
Question 2) How to resolve this error?
Kindly advise.
Thanks,
Vivek

Hi minh-hieu,
According to your description, you want to calculate YTD value of Sales Amount. Right?
As we tested in our environment, the expression you assign in This function is correct. It can return the YTD values properly:
So please pay attention to the set expression in your SCOPE statement. Try the code below:
SCOPE(MEASURES.[YTD Sales]); --Calendar YTD
SCOPE([DimDates].[Year].[Year].MEMBERS,[DimDates].[Year-Qtr-Month-Day].MEMBERS);
THIS = AGGREGATE( PERIODSTODATE([Date].[Year].[Year], [Date].[Year].CURRENTMEMBER), [Measures].[Sales Amount]);
END SCOPE;
END SCOPE;
Best Regards,
Simon Hou
TechNet Community Support

Similar Messages

  • How I Can Close a Adf Calendar Popup in my managed bean ?

    Hi.
    I am using Adf Calendar.
    When i call the method to close popup:
    public static void hidePopUp(RichPopup popUp) {
    FacesContext facesContext = FacesContext.getCurrentInstance();
    ExtendedRenderKitService service =
    Service.getRenderKitService(facesContext,
    ExtendedRenderKitService.class);
    String serviceScript ="AdfPage.PAGE.findComponent('" + popUp.getClientId(facesContext) +
    "').hide();";
    service.addScript(facesContext, serviceScript);
    and after call the method "AdfFacesContext.getCurrentInstance().addPartialTarget(this.calendar//my ADF Calendar);" the calendar refresh and my popup not close.
    If I not call the method "AdfFacesContext.getCurrentInstance().addPartialTarget(this.calendar//my ADF Calendar);" my popup close works normally.
    SomeBody Can Help me ?
    thanks advance

    Hi..
    To hide popup use following code stuff also set partialTriggers for popup
    <af:popup id="assignpoup" partialTriggers="componentIdThatCallHideThePopup" binding="#{SampleBean.samplePopUp}">
    private RichPopup samplePopUp;
    public void setSamplePopUp(RichPopup samplePopUp) {
    this.samplePopUp= samplePopUp;
    public RichPopup getSamplePopUp() {
    return samplePopUp;
    }to Close popUp use .hide() and after that do partialtrigger part for calender
    getSamplePopUp().hide();
    AdfFacesContext.getCurrentInstance().addPartialTarget(this.calendar//my ADF Calendar);"hope this will helpful

  • How can i show employees photos in ADF?

    hi,
    i use jdev 10.1.3.2 and ADF.
    with employees info, i want to show employees photos. how can i do this?
    thanks.

    <p>
    Hi,
    </p>
    <p>
    See example no 85 on Steve Muench blog &quot;<strong>Uploading Contents of af:inputFile to a BLOB Column</strong>&quot;.
    </p>
    <p>
    Kuba
    </p>

  • How do I get events and changes created on my IOS Calendar to show up on iCal using iCloud?

    Using iCloud I can sync my events from iCal right to my IPod Touch. This is great except for the fact that I rarely create events on iCal. I usually create events using the Calendar app on my IPod Touch because I always have it handy and I feel that has a much more intuitive UI. I was really excited about iCloud being able to sync my events from my IPod to iCal but it doesn't seem to be working. When I create events on iCal they sync to my Calendar right away, but when I create an event on my IPod it doesn't show up on iCal. The same is true for changes made on my IPod to events synced from iCal. the changes don't show up in iCal at all. HELP PLEASE!

    The operating system should read 10.8 - sorry...

  • Which EBO should be used for employee absence data.

    Hi,
    We have the employee absences records in oracle ebiz which should be polled and send to a file.We have to implement this using AIA.Can anyone please tell me which EBO is used for this purpose.
    Thanks.

    Hi,
    I have the same requirement. Can you suggest which EBO did you use finally?
    Regards,
    Neeraj Sehgal

  • I'm using "window.open()" to show one Calendar in a popup window. I can see that the popup is re-sizable. How can I prevent the user from re-sizing the popup?

    I'm using "window.open()" to show one Calendar in a popup window. I can see that the popup is re-sizable. How can I prevent the user from re-sizing the popup? I have tried "resizable=yes|no|1|0" and that seems to be not working.

    You can't prevent users from resizing a pop-up.
    *https://developer.mozilla.org/en-US/docs/Web/API/window.open

  • MSS Team Calendar available for Employees

    Hello Colleagues,
    We have a requirement to make the "Team Calendar" available to employees view own team data.
    Is that possible using just customization and/or iview changes? Or it requires development?
    Another solution we've been thinking is creating a "Team User" and assign it to the MSS role in the Portal, and put it in the same hierarchical level as the Team Manager is, and give this user access to the team, in order to make the employees able to see the team calendar whenever they need by logging in as "Team User".
    Any comment or suggestion is appreciated.
    Thanks,
    Marco

    Team calendar is available as standard for al the employees in his leave request service!
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/80/7d6641df6c7f47e10000000a1550b0/frameset.htm
    it uses standard evalaution path like Orgass in ESS to show all his team members in his org unit
    You can change this as well
    check table v_ptreq_team
    No development is needed for this only mere customisation

  • ADF Calendar Issue with MDS

    JDeveloper 11.1.1.4.0
    With the ADF Calendar, I able to programmatically control most of its features such as setting ActiveDay, View, etc.
    But, when I turn MDS on and I interact directly in the calendar (such as changing the views, or clicking on the day which switches the view), any programmatic control I do to it just stops refreshing the calendar.
    I inspected it and data is there, data shows up, activeDay is changed... But the calendar itself just doesn't change its view to the new activeDay.
    Eg. I'm viewing March and I changed the active day to somewhere in August, I will still end up viewing March. No refresh nor flicker.
    This issue is only happening when MDS is turned on.
    I wonder if anyone has got around this issue?
    -Marvin

    Hi Marvin
    I have a issue with Calendar component in ADF , I have similar requirement as you , I want to change the display month of Calendar on selecting the Month for Ex I select May I shud get May's Calendar and if March is selected I want to display March Calendar , I wanted to know how did you implement this ?
    I am trying to set the activeDay of RichCalendar on selection of Month and year , For example I select May 2011, Then in value Change Listener I pass the 01 May 2011 as Date to a method and trying to set the activeDay attribute of RichCalendar so that the Calendar will display the calendar for Month of May with 1st May as active Day. Now I have two questions is such a thing possible using
    below method, setActiveDayCompInstance()
    Second I am getting null pointer exception for the line , why so ??
    reqContext.getChangeManager().addComponentChange(context, calendar, aa);
    My Method for setting active Day
    public void setActiveDayCompInstance(Date activeDay)
    System.out.println(activeDay);
    RichCalendar calendar = getCalendarComponent();
    calendar.setActiveDay(activeDay);
    // Implicitly record a change for 'activeDay' attribute
    AttributeComponentChange aa =
    new AttributeComponentChange(RichCalendar.ACTIVE_DAY_KEY.getName(), activeDay);
    RequestContext reqContext = RequestContext.getCurrentInstance();
    FacesContext context = FacesContext.getCurrentInstance();
    System.out.println("reqContext"+aa +reqContext.getChangeManager());
    reqContext.getChangeManager().addComponentChange(context, calendar, aa); // Null Pointer exception
    Stack Trace for Null pointer
    at org.apache.myfaces.trinidad.change.BaseChangeManager.addComponentChange(BaseChangeManager.java:58)
    at org.apache.myfaces.trinidad.change.SessionChangeManager.addComponentChange(SessionChangeManager.java:64)
    at MyNest.Timesheet.calendar.TimesheetCalendarBean.setActiveDayCompInstance(TimesheetCalendarBean.java:1482)
    at MyNest.Timesheet.calendar.TimesheetCalendarBean.yearChangeListener(TimesheetCalendarBean.java:1196)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)

  • Changing the ADF Calendar

    Hi All,
    We have a requirement to create a Appointment Page where the Activity Providers can be more than 50 and we dont want to use colors to distinguish between the appointments created for various Activity Providers.
    What we need is something like this where we show the time at the top and the different Activity Providers on the left side. Currently in ADF calendar, we can show the Different Activity Providers as checkboxes at the top and different colors to distinguish various activity providers. Is it even possible to do change the checkboxes and have something like a grid format as show below.
    If not, what will be the best way to go about it.
    8 A.M 9 A.M ..... .5 P.M
    Activity 1
    Activity 2
    Activity 3
    Please Help.
    Thanks,
    Ajith

    I'm guessing the "Oracle JDeveloper Handbook" is the published McGraw-Hill book by Duncan Mills, Peter Koletzke and Avrom Roy-Faderman:
    http://www.amazon.com/Oracle-JDeveloper-11g-Handbook-Development/dp/0071602380/ref=sr_1_4?ie=UTF8&s=books&qid=1279005819&sr=8-4
    The 11g version of this book replaces the earlier releases, 10g, 9 etc.
    As a general text for understanding JDev & ADF it's a recommended read. As Michael says, I don't believe it covers internalization though.
    There is a more advanced guide the "Oracle Fusion Developer Guide" by Frank Nimphius and Lynn Munsinger:
    http://www.amazon.com/Oracle-Fusion-Developer-Guide-Applications/dp/0071622543/ref=pd_sim_b_1
    This is a more advanced text, not recommended for beginners, but a recommended read once you understand the basics.
    Back to the original question in this post, internalization is covered in section 21 of the ADF Web Guide:
    http://download.oracle.com/docs/cd/E14571_01/web.1111/b31973/af_global.htm#CHDGCAFI
    If you're looking to customize ADF BC error message it's covered in section 37.8 of the ADF Fusion Guide:
    http://download.oracle.com/docs/cd/E14571_01/web.1111/b31974/bcadvgen.htm#BABEFGCI
    I wrote a blog entry about the latter sometime back, which may or may not be relevant to the task at hand:
    http://one-size-doesnt-fit-all.blogspot.com/2007/05/dont-constrain-yourself-displaying.html
    CM.

  • Using ADFS with SharePoint Foundation 2013?

    We have a WSS 3.0 web site used primarily for sharing documents with business partners who do not work for our company.  We plan on doing the 2 step upgrade to SharePoint Foundation 2013
    Our internal users also use it but normally just use internal network file shares if they aren't planning to share the documents with external users.
    Each business partner's company has a sub site within our main WSS site and documents are uploaded to that section of the site if we want to share documents with employees of that company. 
    Since we use AD for authentication, to make this work, we create AD user accounts for each external user and add them to a security group that gives them access to only their company's subsite on the main site.  
    We have to maintain their passwords, reset them and delete/disable them when that person no longer needs access.  Each business partner has a limit on the number of users who can get one of our AD accounts due to limits on the number of CALs available
    to them.  It is messy because these users often forget their passwords since they aren't using these accounts every day.  
    Is there a better way to do this so that we no longer have create and maintain user accounts for external users other than having to do a domain trust with all these other domains?
    I have heard of ADFS, but will it allow us to still control which sites and documents the external company users can access if we are not creating and managing the accounts and adding them to the correct security groups ourselves?
    We don't want every user from the partner's domains to be able to access the site.  If we use ADFS, how do we keep control of which external users have access to the site?

    Yes, you would add permissions just the same way you do with users from your local Active Directory. And yes, if you chose the email address to be the user's identifier, you would simply ask for the email addresses that you wanted and input those to the
    appropriate permissions on your SharePoint sites.
    You'll want to take a look at this:
    http://blogs.msdn.com/b/russmax/archive/2013/10/31/guide-to-sharepoint-2013-host-name-site-collections.aspx
    Also another thing to keep in mind is that you'll need to have those 3rd parties set up ADFS themselves, and you'll create an ADFS Trust between you and the 3rd party.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Unable to view data in ADF calendar.

    Hi,
    I am working on an adf application that uses the ADF calendar component. I have created view object(with Entity Object) and have dragged and dropped the associated component from the data controls as an adf calendar on a jsf page. But 'm unable to run this application. The following exceptions occurs :
    java.lang.NullPointerException
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlCalendarBinding$AdfmCalendarActivity.getStartDate(FacesCtrlCalendarBinding.java:1041)
         at oracle.adf.view.rich.model.CalendarModel.isActivityInRange(CalendarModel.java:189)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlCalendarBinding$AdfmCalendarModel._createCalendarActivities(FacesCtrlCalendarBinding.java:793)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlCalendarBinding$AdfmCalendarModel._getActvitiesListMap(FacesCtrlCalendarBinding.java:750)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlCalendarBinding$AdfmCalendarModel.getTimeActivities(FacesCtrlCalendarBinding.java:500)
         at oracle.adfinternal.view.faces.renderkit.rich.CalendarListRenderer.encodeAll(CalendarListRenderer.java:152)
         at oracle.adf.view.rich.render.RichRenderer.delegateRenderer(RichRenderer.java:1731)
         at oracle.adfinternal.view.faces.renderkit.rich.CalendarRenderer.encodeAll(CalendarRenderer.java:439)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:493)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:913)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1659)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:606)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:3201)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelGroupLayoutRenderer._encodeChild(PanelGroupLayoutRenderer.java:447)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelGroupLayoutRenderer.access$1500(PanelGroupLayoutRenderer.java:30)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelGroupLayoutRenderer$EncoderCallback.processComponent(PanelGroupLayoutRenderer.java:734)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelGroupLayoutRenderer$EncoderCallback.processComponent(PanelGroupLayoutRenderer.java:637)
         at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:187)
         at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:318)
         at org.apache.myfaces.trinidad.component.UIXComponent.encodeFlattenedChildren(UIXComponent.java:283)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelGroupLayoutRenderer.encodeAll(PanelGroupLayoutRenderer.java:360)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1452)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:493)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:913)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1659)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:606)
    What I understand is that the activity or timezone is not setting properly. However, I'm not able to figure out which is incorrect?
    Earlier it worked fine when an other view is used. Based on our requirements, I changed the view definition and few mappings. Now it is throwing this error.
    Please help me.

    Arun,
    Thanks for the response.
    The Jdev version is 11.1.2.0.0.
    Regarding the VO's, both are different VO's. The first VO(which worked fine) is a simple query and is based on EO.
    My Second VO (Based on a database view) is not based on EO. is it mandatory that the VO should be Enity based?
    However, in my pageDefinition file, I had all bindings as:
    <action IterBinding="JtfTasksCal1Iterator" id="ExecuteWithParams" RequiresUpdateModel="true"
    Action="executeWithParams">
    <NamedData NDName="startDate" NDValue="#{bindings.JtfTasksCal1.startDate}" NDType="java.sql.Timestamp"/>
    <NamedData NDName="endDate" NDValue="#{bindings.JtfTasksCal1.endDate}" NDType="java.sql.Timestamp"/>
    <NamedData NDName="tz" NDValue="#{bindings.JtfTasksCal1.timeZoneId}" NDType="java.lang.String"/>
    </action>
    <calendar IterBinding="JtfTasksCal1Iterator" id="JtfTasksCal1" xmlns="http://xmlns.oracle.com/adf/faces/binding"
    ActionBindingName="ExecuteWithParams">
    <nodeDefinition DefName="oper.model.uiview.JtfTasksCalVO">
    <AttrNames>
    <Item Type="id" Value="TaskNumber"/>
    <Item Type="providerId" Value="TaskStatus"/>
    <Item Type="title" Value="TaskName"/>
    <Item Type="startTime" Value="ScheduledStartDate"/>
    <Item Type="endTime" Value="ScheduledEndDate"/>
    <Item Type="tags" Value="TaskStatus"/>
    <Item Type="custom" Value="ScheduledEndDate"/>
    <Item Type="custom" Value="ScheduledStartDate"/>
    <Item Type="custom" Value="TaskId"/>
    <Item Type="custom" Value="TaskName"/>
    <Item Type="custom" Value="TaskNumber"/>
    <Item Type="custom" Value="TaskStatus"/>
    <Item Type="custom" Value="TaskType"/>
    </AttrNames>
    </nodeDefinition>
    <providerDefinition IterBindingName="JtfTasksCal1Iterator">
    <AttrNames>
    <Item Type="id" Value="TaskStatus"/>
    <Item Type="displayName" Value="TaskName"/>
    </AttrNames>
    </providerDefinition>
    </calendar>
    Is there anything missed here?
    And there is no Timezone specified in trinidad-config.xml. If the timezone is not specified here, then how it picksup the timezone?

  • I got the iPhone 4S and I use google calendar and when the Sprint salesperson set up my phone only 2 months of my calendar went on my phone. How do I get my whole calendar to sync on my phone?

    I got the iPhone 4s and i use google calendar and when the Sprint sales person set up my phone, only 2 months showed up on my iPhone. How do I sync all of google calendar to my iPhone!

    Settings/Mail,Contacts,Calendar - there's a setting for how far back to sync calendars.

  • How can I use different calendars associated with different emails to see appointmen​ts separately​?

    I have 3 emails accounts on my Blackberry curve. I want to use different calendars for different type of reminders/appointments. How can I do that? In calendar I pressed menu key and then clicked on select calendar, choose one email address (email 1) then entered an alarm but now if I go to a different calendar associated with different email ( email 2), it also shows me that alarm which I entered in email 1 calendar. Thanks for help

    Don't have LV handy to open the old code, but I did read through the thread you referenced.  It sounds like the example configured 2 counters to create the variable-freq finite pulse train and configured a 3rd counter to count the # steps generated as verification.   That 3rd counter would be a problem for you as there is no internal timing signal connection between your 2 USB devices.  You would need to run a physical wire connection and change some of the config code to match.  Alternately, you could just delete all the code associated with the 3rd counter for now because it isn't strictly necessary.
    Further advice/questions:  Are you planning on a pure sine wave of frequency such that you oscillate with both positive and negative velocity (example: varying from -1000 to +1000 Hz clockwise)?  Or is there a nominal average frequency with a small sine wave superimposed (example: nominal of 1000 Hz clockwise, variation of +/- 50 Hz)?
    I *think* you may be dealing with more of a continuous pulsetrain situation, which is actually much simpler.  You would only need 1 counter/timer, though you would still perform the freq changes in a timed loop which uses the pulsetrain as its timing source.  You'd just need to keep track of your total elapsed time so you could figure out the right sinusoidal freq value at the moment you're ready to update it.
    Another subtlety to watch out for if you're oscillating about 0 velocity  -- don't try to create a frequency that is lower than the rate at which you need to update.  Also, with steppers you may have mechanical stability issues at low freqs like 10's to low 100's of Hz.    These kinds of things may need to be managed as special cases which force you to deviate from a "pure" sine wave.
    -Kevin P.

  • Calling infotype 0002 in ALV  report for showing employee photo

    Hi all,
    The requirment from business side is a report in which employees personal data shuold be shown with employee photo, I had tried for employee photo in ALV report but it didnt sucessed, then I went for other solution like calling transaction in ALV report.
    In this case I am calling Infotype 0002 but the issue is that the transaction PA20 is coming with PERNR but I am not able to go directlly to infotype which shows employee Photo,please suggest any solution.
    Thaks.
    JAY

    Hi Jay,
    It is possible. Please refer the syntax for the CALL TRANSACTION
    CALL TRANSACTION ta { [AND SKIP FIRST SCREEN]
                        | [USING bdc_tab [bdc_options]] }.
    You can do a recording till the required page comes & call the transaction accordingly. Hope, you are aware about the same.
    For example, I just had a solution to go to the roles tab in the user profile and I did as below:
        CLEAR wa_bdcdata.
        wa_bdcdata-program  = 'SAPLSUU5'.
        wa_bdcdata-dynpro   = '0050'.
        wa_bdcdata-dynbegin = k_ok.
        APPEND wa_bdcdata TO it_bdcdata.
        CLEAR wa_bdcdata.
        wa_bdcdata-fnam  = 'BDC_CURSOR'.
        wa_bdcdata-fval   = 'USR02-BNAME'.
        APPEND wa_bdcdata TO it_bdcdata.
        CLEAR wa_bdcdata.
        wa_bdcdata-fnam  = 'USR02-BNAME'.
        wa_bdcdata-fval   = g_value.
        APPEND wa_bdcdata TO it_bdcdata.
        CLEAR wa_bdcdata.
        wa_bdcdata-fnam  = 'BDC_OKCODE'.
        wa_bdcdata-fval   = 'SHOW'.
        APPEND wa_bdcdata TO it_bdcdata.
        CLEAR wa_bdcdata.
        wa_bdcdata-program  = 'SAPLSUU5'.
        wa_bdcdata-dynpro   = '0100'.
        wa_bdcdata-dynbegin = k_ok.
        APPEND wa_bdcdata TO it_bdcdata.
        CLEAR wa_bdcdata.
        wa_bdcdata-fnam  = 'BDC_OKCODE'.
        wa_bdcdata-fval   = '=ACTG'.
        APPEND wa_bdcdata TO it_bdcdata.
        g_opt-dismode = 'E'.
        g_opt-defsize = k_ok.
    *** if user click on the User Name, call SU01
        CALL TRANSACTION 'SU01' USING it_bdcdata
                    OPTIONS FROM g_opt.
    Regards,
    Selva K.

  • ICal 'Show Holidays calendar' not showing holidays in Australia after upgrading to Yosemite.

    Hello, I had been in Italy before moving to Australia and I had set Show Holidays calendar in iCal to display Italian holidays. When I've moved to Australia, I've changed the regional settings to Australia and therefore iCal was showing Australian holidays. After I've upgraded to Yosemite, I can't see any holidays anymore. I tried to uptick 'Show Holidays calendar' and reboot Yosemite, then tick it back and it is still not working for Australia. if I change my regional settings for instance for Italy, it works. It just refuses to display Australian Holidays so for now I'm forced to use Google calendar subscription for public holidays.
    How can I restore the iCal 'Show Holidays calendar' ?

    Hi guys,
    I had this problem too. I resolved it by going into System Preferences  > Language & Region and making sure the primary language was "English (U.K.)" under primary languages (i.e. at the top of the list of preferred languages).
    I always had this set before, but I think upgrading to Yosemite changed this setting to "English" (without the "U.K.) which I guess is a generic "countryless" language. I believe the holidays setting in the calendar needs to know which country's holidays to display.
    Hope this helps this waiting for a fix...

Maybe you are looking for

  • Safari won't load pages from search results

    Weird problem.  Using Safari 8.0.3, I do a search using www.google.com or just search in the address bar.  Google returns the results, no problem.  However, if I try to follow a link by clicking on it, Safari will seemingly try to load it for a while

  • Has anyone had problems with iphone freezing up

    iphone has frozen up, has anyone else had this problem?  What did you do?  I can't turn it off or anything.

  • Burning files to  DVD

    Hi, i have been trying to burn a 850 mb quicktime file and a couple of jpegs to dvd in my super drive. have created disk image and burnt disk all appears good except there is nothing on the dvd . have used both .cdr and .dmg images still same result.

  • How to set dynamic WHERE clause to VO from backingBean?

    Hi, Can any one let me know the best way to add the dynamic WHERE clause in to VO query. I have created AM (with AMImpl.java) & VO (with VOImpl.java & VORowImpl.java) in my model project. I suppose to set the WHERE condition at runtime while the user

  • Storing integer as a bit to have storage management

    I have this matrix(size:10x6000) which only stores integers 0 and 1 and what my program does is, it compares each row with all the other rows underneath it and do the XOR operation on the elements stored at the corresponding locations and as a result