Calendar not working...

I have a following piece of code embedded in jsp but its not popping out a calendar...help plz
<li><label for="flightDepartureDate">Departing:</label> <input
          type="text" name="criteria.displayDepartureDatetime" readonly="readonly"
          onblur="updateCheckout();return true;"
          value="<c:out value="${flightSearchForm.criteria.displayDepartureDatetime}"/>"><a
          href="#showCalendar"
          onClick="displayCalendar('criteria.displayDepartureDatetime', 'false','<%= request.getContextPath() %>');">
     <img src="<cms:ref path="global" reference="images_calendar"/>"
          alt="calendar" title="calendar" /> </a> <label for="flightReturnDate">Returning:</label>
     <input type="text" NAME="criteria.displayReturnDatetime"
          onblur="updateCheckout();return true;"
          value="<c:out value="${flightSearchForm.criteria.displayReturnDatetime}"/>"><a
          href="#showCalendar"
          onClick="displayCalendar('criteria.displayReturnDatetime', 'false','<%= request.getContextPath() %>');"></li>
     <img src="<cms:ref path="global" reference="images_calendar"/>"
          alt="calendar" title="calendar" />
     </a>
     </li>
// Calendar Library
// This calendar is used when a user clicks on a link (image or text). A pop-up window is
// displayed and the user can click on an arrow to move to the next or previous month.
// When the user clicks on one of the days in the month the calendar window is closed and
// the selected date will now be displayed in the day and month option lists (focus is
// returned to the month option list).
// Usage: Add the following lines of code to your page to enable the Calendar
// component.
// // This line loads the JavaScript library for the calendar
// <script language="JavaScript" src="calendar.js"></script>
// // This line is used in conjunction with one form field (dateField).
// // *** NOTE ***
// <a href="#showCalendar
// onClick="setDateField(setDateField(document.mainForm.startDate));
// newWin = window.open('calendar.html','cal','dependent=yes,width=200,height=200')">
// <img src="../icons/icon_more.png" width=22 height=15 border=0></a>
// Note : when the calling window is an included jsp page make sure
// you use top.newWin ! Example Useage in the call centre app is :
// <a href="#showCalendar
// onClick="showCalendar('checkOutDate');
// top.newWin = window.open('<%= request.getContextPath() %>/webcontent/calendar.jsp',
// 'cal',
// 'dependent=yes,width=200,height=200, left=500,top=500');">
// <img src="<cms:ref path="search" reference="images_calendar"/>" alt="calendar" title="calendar" />
// </a>
// Required Files:
// calendar.js - contains all JavaScript functions to make the calendar work
// calendar.jsp - is the actual calendar that is opened by the initial page when
// the user clicks on icon_more.gif.
// image file - image that the user clicks on to view the calendar
// Begin user editable section ----------------------------------------------------------------------------------------
// CALENDAR COLORS
bottomBackground = "#3D70D6"; // BG COLOR OF THE BORDER OUTSIDE CALENDAR TABLE
tableBGColor = "#dfefff"; // BG COLOR OF THE CALENDAR TABLE
cellColor = "#ffffff"; // TABLE CELL BG COLOR OF THE DATE CELLS
headingCellColor = "#3d70d6"; // TABLE CELL BG COLOR OF THE WEEKDAY ABBREVIATIONS
focusColor = "#ff0000"; // TEXT COLOR OF THE DATE IN THE OPTION LIST (OR CURRENT DATE IF NONE SELECTED)
hoverColor = "#dfefff"; // TEXT COLOR OF A LINK WHEN YOU HOVER OVER IT
fontStyle = "8pt arial, helvetica"; // TEXT STYLE FOR DATES
headingFontStyle = "bold 8pt arial, helvetica"; // TEXT STYLE FOR WEEKDAY ABBREVIATIONS
// Formatting preferences
bottomBorder = false; // TRUE/FALSE (WHETHER TO DISPLAY BOTTOM CALENDAR BORDER)
tableBorder = 0; // SIZE OF CALENDAR TABLE BORDER (BOTTOM FRAME) 0=none
// End of User Editable Section ---------------------------------------------------------------------------------------
// Determine browser type
var isNav = false;
var isIE = false;
// Assume Netscape or IE
if (navigator.appName == "Netscape") {
     isNav = true;
} else {
     isIE = true;
var dateField = null;
var startDay;
var startMonth;
var startYear;
var format = null;
//used to determine if age needs to be calculated as well
var updateAge = false;
// Pre-build portions of the calendar when this JavaScript Library loads into the browser
buildCalParts();
// Calendar functions begin here --------------------------------------------------------------------------------------
Sets the initial value of the global date field
function showCalendar(inDateField, calcAge) {
     dateField = document.getElementById(inDateField);
// Set the colours of the calendar
     setCalColour();
     buildCalParts();
// Set default value of noDateSelected
     noDateSelected = 1;
     setInitialDate();
//determine if the calculateAge function on the parent must be called;
     updateAge = calcAge;
// Construct the calendar
     calDocBottom = buildBottomCalFrame();
function displayCalendar(inDateField, calcAge, calendarPath)
     // lets close the calendar window if its already open. Its safer dude!
     if (top.newWin != null) top.newWin.close();
     calendarURL = calendarPath + "/webcontent/common/calendar.html";
     showCalendar(inDateField, calcAge);
     top.newWin = window.open(calendarURL, "cal", "dependent=yes,width=200,height=200, left=500,top=500");
     top.newWin.focus();
Set the initial calendar date to today or to the existing value in dateField
function setInitialDate() {
     calDate = new Date();
     today = new Date();
     currentDate = new Date();
     if (dateField.value.length == 11) {
          noDateSelected = 0;
          var day = dateField.value.substring(0, 2);
          var month = dateField.value.substring(3, 6).toUpperCase();
          var year = dateField.value.substring(7, 11);
          calDate.setYear(year);
          calDate.setDate(1);
          if (month == "JAN") {
               calDate.setMonth(0);
          } else {
               if (month == "FEB") {
                    calDate.setMonth(1);
               } else {
                    if (month == "MAR") {
                         calDate.setMonth(2);
                    } else {
                         if (month == "APR") {
                              calDate.setMonth(3);
                         } else {
                              if (month == "MAY") {
                                   calDate.setMonth(4);
                              } else {
                                   if (month == "JUN") {
                                        calDate.setMonth(5);
                                   } else {
                                        if (month == "JUL") {
                                             calDate.setMonth(6);
                                        } else {
                                             if (month == "AUG") {
                                                  calDate.setMonth(7);
                                             } else {
                                                  if (month == "SEP") {
                                                       calDate.setMonth(8);
                                                  } else {
                                                       if (month == "OCT") {
                                                            calDate.setMonth(9);
                                                       } else {
                                                            if (month == "NOV") {
                                                                 calDate.setMonth(10);
                                                            } else {
                                                                 if (month == "DEC") {
                                                                      calDate.setMonth(11);
                                                                 } else {
                                                                      calDate.setMonth("N/A");
          calDate.setDate(day);
// IF THE INCOMING DATE IS INVALID, USE THE CURRENT DATE
     if (isNaN(calDate)) {
          noDateSelected = 1;
          calDate = new Date();
     } else {
          startDay = calDate.getDate();
          startMonth = calDate.getMonth();
          startYear = calDate.getYear();
     calDay = calDate.getDate();
     calMonth = calDate.getMonth();
// Set day value to 1... to avoid JavaScript date calculation anomalies
// (if the month changes to Feb and the day is 30, the month would change to
// March and the day would change to 2. Setting the day to 1 will prevent that)
     calDate.setDate(1);
Sets the calendar colours
function setCalColour() {
     bottomBackground = "#6598fe";
     tableBGColor = "#dfefff";
     cellColor = "#ffffff";
     hoverColor = "#dfefff";
     logo = "cal_logo_lilac.gif";
Create the calendar
function buildBottomCalFrame() {
// Start calendar document
     var calDoc = calendarBegin + "<div class=\"calender\"><table align=center border=0 width=140>" + "<tr>" + "<td align=left><a href='javascript:parent.opener.setPreviousMonth()' class='navigate'><</a></td>" + "<td style=\"font-weight:700; color:#ffffff; margin:0; padding:0; text-align:center;\">" + getMonth(calDate.getMonth()) + "</td>" + "<td align=left><a href='javascript:parent.opener.setNextMonth()' class='navigate'>></span></td>" + "</tr>";
calDoc = calDoc + "<tr>" + "<td align=left><a href='javascript:parent.opener.setPreviousYear()' class='navigate'><</span></td>" + "<td style=\"font-weight:700; color:#ffffff; margin:0; padding:0; text-align:center;\">" + calDate.getFullYear() + "</td>" + "<td align=left><a href='javascript:parent.opener.setNextYear()' class='navigate'>></span></td>" + "</tr>" + "</table></div >" + calendarTable;
     month = calDate.getMonth();
     year = calDate.getFullYear();
// Get globally tracked day value (prevents JavaScript date anomalies)
     day = calDay;
     var counter = 0;
     var days = getDaysInMonth();
// If global day value is > than days in month, highlight last day in month
     if (day > days) {
          day = days;
// Determine what day of the week the calendar starts on
     var firstOfMonth = new Date(year, month, 1);
// Get the day of the week the first day of the month falls on
     var startingPos = firstOfMonth.getDay();
     days += startingPos;
     var columnCount = 0;
// Make beginning non-date cells blank
     for (counter = 0; counter < startingPos; counter++) {
          calDoc += blankCell;
          columnCount++;
     var currentDay = 0;
     var dayType = "weekday";
// Date cells contain a number
     for (counter = startingPos; counter < days; counter++) {
          var paddingChar = " ";
          if (counter - startingPos + 1 < 10) {
               padding = "  ";
          } else {
               padding = " ";
          currentDay = counter - startingPos + 1;
// Set the type of day
          if (noDateSelected == 0 && (currentDay == startDay) && (startMonth == calDate.getMonth() && startYear == calDate.getYear())) {
               dayType = "focusDay";
          } else {
               if (noDateSelected == 1 && (currentDay == currentDate.getDate()) && (calDate.getMonth() == currentDate.getMonth())) {
                    dayType = "focusDay";
               } else {
                    dayType = "weekDay";
          calDoc += "<td align=center bgcolor='" + cellColor + "'>" + "<a class='" + dayType + "' href='javascript:parent.opener.returnDate(" + currentDay + ")'>" + padding + currentDay + paddingChar + "</a></td>";
          columnCount++;
// Start a new row when necessary
          if (columnCount % 7 == 0) {
               calDoc += "</tr><tr>";
// Make remaining non-date cells blank
     for (counter = days; counter < 42; counter++) {
          calDoc += blankCell;
          columnCount++;
// Start a new row when necessary
          if (columnCount % 7 == 0) {
               calDoc += "</tr>";
               if (counter < 41) {
                    calDoc += "<tr>";
     calDoc += calendarEnd;
     return calDoc;
Write the monthly calendar once the forward/backward arrow has been clicked on
function writeCalendar() {
// CREATE THE NEW CALENDAR FOR THE SELECTED MONTH & YEAR
     calDocBottom = buildBottomCalFrame();
     newWin.document.open();
     newWin.document.write(calDocBottom);
     newWin.document.close();
Set the global date to the previous month and refresh the calendar
function setPreviousMonth() {
     var year = calDate.getFullYear();
     var month = calDate.getMonth();
     // If month is January, set month to December and decrement the year
     if (month == 0) {
          month = 11;
          if (year > 1000) {
               year--;
               calDate.setFullYear(year);
     } else {
          month--;
     calDate.setMonth(month);
     writeCalendar();
Set the global date to the previous year and refresh the calendar
function setPreviousYear() {
     var year = calDate.getFullYear();
     year--;
     calDate.setYear(year);
     writeCalendar();
// Set the global date to next month and refresh the calendar
function setNextMonth() {
     var year = calDate.getFullYear();
     var month = calDate.getMonth();
// If month is December, set month to January and increment the year
     if (month == 11) {
          month = 0;
          year++;
          calDate.setFullYear(year);
     } else {
          month++;
     calDate.setMonth(month);
     writeCalendar();
// Set the global date to next year and refresh the calendar
function setNextYear() {
     var year = calDate.getFullYear();
     year++;
     calDate.setYear(year);
     writeCalendar();
Get number of days in the month
function getDaysInMonth() {
     var days;
     var month = calDate.getMonth() + 1;
     var year = calDate.getFullYear();
     if (month == 1 || month == 3 || month == 5 || month == 7 || month == 8 || month == 10 || month == 12) {
          days = 31;
     } else {
          if (month == 4 || month == 6 || month == 9 || month == 11) {
               days = 30;
          } else {
               if (month == 2) {
                    if (isLeapYear(year)) {
                         days = 29;
                    } else {
                         days = 28;
     return (days);
Check to see if the year is a leap year
function isLeapYear(Year) {
     if (((Year % 4) == 0) && ((Year % 100) != 0) || ((Year % 400) == 0)) {
          return (true);
     } else {
          return (false);
Build the month select list
function getMonth(month) {
     monthArray = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
// Return a string value which contains a select list of all 12 months
     return monthArray[month];
Set days of the week
function createWeekdayList() {
     daysInWeekLongName = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
     daysInWeekShortName = new Array("Su", "Mo", "Tu", "We", "Th", "Fr", "Sa");
     var weekdays = "<tr bgcolor='" + headingCellColor + "'>";
// Loop through the weekday array
     for (var index = 0; index < daysInWeekShortName.length; index++) {
          weekdays += "<td class='heading' align=center>" + daysInWeekShortName[index] + "</td>";
     weekdays += "</tr>";
// Return table row of weekday abbreviations to display above the calendar
     return weekdays;
Pre-build portions of the calendar (for performance reasons)
function buildCalParts() {
// Generate weekday headers for the calendar
     weekdays = createWeekdayList();
// Build the blank cell rows
     blankCell = "<td align=center bgcolor='" + cellColor + "'>  </td>";
// Build the top portion of the calendar page using CSS to control some display elements
     calendarBegin = "<html>" + "<head>" + "<TITLE>Calendar</TITLE>" + "<style>";
calendarBegin = calendarBegin + "TD.heading { text-decoration: none; color: #ffffff; font: " + headingFontStyle + "; }";
calendarBegin = calendarBegin + "B { text-decoration: none; color: #000000; font: " + headingFontStyle + "; }";
calendarBegin = calendarBegin + "A.focusDay:link { color: " + focusColor + "; text-decoration: none; font: " + fontStyle + "; }" + "A.focusDay:hover { color: " + focusColor + "; text-decoration: none; font: " + fontStyle + "; }" + "A.focusDay:visited { color: #000000; text-decoration: none; font: " + fontStyle + "; }";
calendarBegin = calendarBegin + "A.weekday:link { color: #000000; text-decoration: none; font: " + fontStyle + "; }" + "A.weekday:hover { color: " + hoverColor + "; font: " + fontStyle + "; }" + "A.weekday:visited { color: #000000; text-decoration: none; font: " + fontStyle + "; }";
calendarBegin = calendarBegin + "A.navigate:link { font-weight:700; color:#ffffff; text-decoration: none; }" + "A.navigate:hover { font-weight:700; color:#ffffff; text-decoration: none; }" + "A.navigate:visited { font-weight:700; color:#ffffff; text-decoration: none; }";
calendarBegin = calendarBegin + "</style>" + "</head>" + "<body style=\"background-color:#3d70d6; font:normal 75% arial, helvetica, sans-serif; text-align:center; margin:0; padding:0;\">" + "<center>";
// Netscape needs a table container to display the table outlines properly
     if (isNav) {
          calendarTable = "<table CELLPADDING=0 CELLSPACING=1 border=" + tableBorder + " align=center bgcolor=\"" + tableBGColor + "\"><tr><td>" +
// Build weekday headings
          "<table CELLPADDING=0 CELLSPACING=1 border=" + tableBorder + " align=center bgcolor=\"" + tableBGColor + "\">" + weekdays + "<tr>";
     } else {
// Build weekday headings
          calendarTable = "<table CELLPADDING=0 CELLSPACING=1 border=" + tableBorder + " align=center bgcolor=\"" + tableBGColor + "\">" + weekdays + "<tr>";
// Build the bottom portion of the calendar page
     calendarEnd = "";
// Whether or not to display a thick line below the calendar
     if (bottomBorder) {
          calendarEnd += "<tr></tr>";
// Netscape needs a table container to display the table outlines properly
     if (isNav) {
          calendarEnd += "</td></tr></table>";
// End the table and the HTML document
     calendarEnd += "</table>" + "<a href='javascript: self.close ();' class='linktext' style=\"font-weight:700; color:#ffffff;\">Close Calendar Window</a>" + "</center>" + "</body>" + "</html>";
// Set form field value to the date selected and close the calendar window
function returnDate(selectedDay) {
     calDate.setDate(selectedDay);
// Set the date returned to the user
     var day = "0" + calDate.getDate();
     day = day.substring(day.length - 2, day.length);
     var month = monthArray[calDate.getMonth()];
     month = month.substring(0, 3);
     dateField.value = day + "-" + month + "-" + calDate.getFullYear();
     //dateField.focus();
// Close the calendar window
     if (updateAge === "true") {
          top.calculateAge();
     top.newWin.close();
}

Too much unformatted code to even try and understand.
Is this a Java/JSP question or javascript issue?
Is there an error message loading the page?
Are there any javascript notifications (check the alert bottom left of IE browser)
When does the error occur? Loading the page? Pushing the button?
My suggestion would be to
- view source on the generated HTML. See if the html is valid, and correct.
- change the onclick event of the button to pop up an "alert" so you can see it is actually getting to the button press. Then put alerts through the code you are calling to see if it is actually getting there.
cheers,
evnafets

Similar Messages

  • Mobileme calendar not working with iphone 3.1.3

    I recently updated ical on my mac to 4.0.4 on my Mac running 10.6.7.  My iphone running 3.1.3 can no longer receive the mobile me calendar updates.  All the mail works fine.  I am not sure if the contacts are being kept up either.  I also have an iphone 4 running 4.3.3 and all the mobile me pieces work there.  I have recovered a backup and that didn't fix it.  Deleted the account and rebuilt it.  The only way I can get the calendar to work is to sync it on itunes but that is not satisfactory for adding calendar entries from my phone over to my mobile me cloud.  So...Has 3.1.3 been left in the dust? and I have to retire my old reliable phone?  Say it aint so.  Thanks  Terry

    It looks like that Apple eliminated with this upgrade one of the key functions of the iPhone: Mobility for Mailing.
    Hi Zolee, I have the original 2G iphone running 3.0 and I also have MobileMe and I also have 2 POP accounts as you do, however, I have not had any problems with my POP accounts at all.
    Wishing you a speedy "fix"!! Good Luck!
    Message was edited by: sussurro

  • IPhone 4: Just updated to iOS7.  Keyboard on calendar not working properly.  When "keys" hit, nothing happens.  When repeatedly hit, many letters suddenly appear.  Impossible to add anything to calendar.

    Keyboard not working.  Upon pressing a "key" one letter appears, then everything freezes while one continues to hit keys, then suddenly many letters appear.  Impossible to add any event to calendar.

    Same problem: Letter keys no longer register letters but other functions like "end", "home", opening web browser, etc.
    I need to be sure that this problem does not occur during an exam.
    Possible solution: (1) Press "shift" five times. (2) Click on "Go to the Ease of Access Center...." (3) Uncheck the "Lock modifier keys when pressed twice in a row" under "Options." (4) Click "Apply." (5) Restart computer.
    Please let me know if the solution works. It's too early to tell in my case.

  • Calendar Not Working on iPhone

    My phone appointments stopped syncing to Outlook.  I played with the settings and now the Calendar app will not work at all.  How can I get Calendar working and how can I start syncing again.  I sync with iTunes.

    Hello, mhart252.
    Thank you for the question.  You may find the article below helpful in troubleshooting your issue with Outlook syncing through iTunes. 
    iPhone, iPad, iPod touch: Troubleshooting contact and calendar syncing via USB on Windows
    http://support.apple.com/kb/HT1692
    Cheers,
    Jason H. 

  • IQ505 Calendar Not Working

    Hi,
    I have an IQ505 TouchSmart PC and I have had an error on my screen for a LONG time now.  It says "HP TouchSmart Calendar & Notes has stopped working.  A problem caused the program to stop working correctly.  Windows will close the program and notify you if a solution is available."
    I am running on Windows Vista and this error message stays on my screen ALL the time.  Please help me fix this!  I am sick of looking at it!
    Thanks!

    Hello @Djamour,
    I understand that you are getting a continiuos error concerning HP Touchsmart Calendar & Notes on your HP TouchSmart IQ505 Desktop PC and you would like it resolved. I would advise you to download and install the HP TouchSmart Calendar Application Update, which should update your software and hopefully resolve your error.
    If the update is not successful in removing the error please re-post and I will offer other possible solutions. Thank you for posting on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • Configuring Mail and Calendar not working.

    Hello,
    I have just setup Mac OS X Server with my own domain (server.mydomain.com). I am having trouble getting the mail and calendar to work on my computer that is hosted on google apps. It will not connect at all. My email address is [email protected]  Could there be something wrong with the DNS settings of my server that is causing it conflict to connect? I am hoping someone out there can help me! At the moment I can not find anything anywhere to sort this out.

    For Mail.
    Do a backup.
    Take notes of all account information or take screen shots. You may need to set the accounts up again. Quit Mail.
    Copy the line below.
    ~/Library/Containers/com.apple.mail
    Select Go/Go To Folder from the Finder menu bar. Paste the line into the window. You won’t see it.
    Move the folder com.apple.mail to your desktop. You must move the entire folder, not just the contents.
    Relaunch Mail and test. If the problem is solved, recreate any required Mail settings and import any emails you want to save from the folder on the desktop. If the problem remains, return the folder to where you got it replacing the one that is there. 
    Information learned from Linc Davis.
    If you prefer to make your user library permanently visible, use the Terminal command found below.
    Show User Library Directory in Mac OS X 10.7 Lion & 10.8 Mountain Lion
    You might want to bookmark the command. I had to use it again after I installed 10.8.5. I have also been informed that if you drag the user library to Finder it will remain visible.

  • Subscribed Google Calendar not working

    I have set up my google calendar via CalDav and that's working great. But I also need to subscribe to my boyfriends google calendar, just to view what is there. So I have updated to 3.0 and I go into Settings -> Mail, Contacts, Calendars -> Add Account -> Other -> Add Subscribed Calender
    I put in the address that google gives me to the .ics file for his private calendar. The it says "subscribed calendar account verification failed".
    Anyone else have this problem? And have you been able to fix it?

    I have not been able to get the google subscribed calendars to work either. I was able to connect my main google calendar via CalDAV, but you can't add additional CalDAV accounts. Subcriptions are not working at all. I get this error message every time: "subscribed calendar account verification failed"
    The method you describe here may work, but you won't actually get any updates because you have basically subscribed to a copy of the calendar, not the actual calendar that the original creator presumably keeps upto date.

  • Day link in calendar not working properly

    Hi
    i created a calendar region with
    an sql query like
    select date_column,display_column , link_column from table
    and in
    Day link :
    Target : Page on this app
    set these items : P11_DATE_ITEM
    with values #date_column#
    to redircet to page 11.
    But when i use a previews month is sep 2006 and before
    it is working.Set the P11_DATE_ITEM with the selected day value (ie 12/09/2006)
    When i select a day in current month and after that month it
    returns to P11_DATE_ITEM #date_column# text and not the selexcted day (i e 2/10/2006)
    Anyone can help me with this ?
    Regards
    Aris

    thank you.
    I managed to solve that by setting a null day record for each day and
    now i can select any day in calendar.
    Aris

  • IOS 7 Calendar not working properly

    Hi,
    I can't get my iOS 7 calendar to respond to any commands... it opens, but everything is greyed out (i can navigate the app, but I can't execute anything).  My iCloud is working perfectly, and it syncs with my macbook pro, but my iPhone 4 calendar will not sync or allow me to create new events.  I can however sync successfully with third party apps like the sunrise calendar app for my iPhone.  My contacts and safari are also syncing just fine.
    Believe it or not, I do want to be able to use the default calendar app.  I have tried all the usual solutions in the message boards, and nothing seems to work.  Does anyone have a solution?

    No one is else is havinv this problem?  I'm shocked that no one has replied, not even from Apple.  I am still having this problem and am missing important emails in a timely fashion.  I am not getting emails that were sent 5 hours ago.  THere is something wrong here.  If anyone has any inkling of an idea, it would be much appreciated.
    Thanks
    Mark

  • Function Calendar not working in OBIEE 11G - Analysis

    This code works in 10.1.3 but not in OBIEE 11.1.1, Please let me know the correct code.
    Error: Query Failed: [nQSError: 22025] Function Calendar Extract is called with an incompatible type
    case when "- Calendar"."Year" = YEAR('@{var_date}{2012-11-05}') then 'Current' Else 'Prior' end

    Check the data type of the column being used to populate the variable. The Year Function works fine. I suspect the data type is not date. If you don't have date columns in your database and are creating one (ex., using MM, DD, YYYY columns explicitly)then check the default date format in your environment either double click the physical database folder -> features or in your NQSconfig. it should be in date data type.

  • Calendar not working AT ALL

    to start, I had first set up ical server and everything was working fine, I got all the delegates and shares up and working. it kept that way for a few days, then one day after I updated, everything went wrong. the server wouldn't connect to anything... even itself.
    everything else works fine though. so I deleted the delegates and tried a test user account, and that didn't work either, wouldn't connect, and even the local calendars are gone now too. ical won't let me doing anything, except try to add things or connect, and it refuses, I have no idea what's going on. I am a long time mac user and have never dealt with a server before. I set this up for the small business I work for, my main thing is graphic design, though I do dabble in technical issues here and there, so I was appointed most suited for the task, but now I am chest deep in calendar trouble and have other work I need to do. please save me.
    thanks,
    Trent

    I can connect using the .local,
    but I don't know why it would have changed, another guy here did something
    and I don't know what he did and that was around the time this all started happening, but he doesnt even know what he did. but the .local works, just not the .com
    but it used to work for the workgroup and the calendar, now I have to use .local for both.
    any idea what he could have done?

  • Project 2010 Calendar not working as expected

    I have created a custom 9/80 working calendar for our company.  We work Monday - Friday 7am to 12pm, 12:30 to 4:30 with every other Friday off. 
    I have assigned this calendar to the Project File and even indicated under File, Options that the standard day is 9hr, not the default 8hrs.  I also changed the default start to 7:30 and end 4:30.
    But when I create tasks, link them, etc.... a one day task is showing the start time as 8am and end time at 8am the next day. What am I missing?

    When you say " I also changed the default start to 7:30 and end 4:30", are you talking about the
    project information in the project tab? You're supposed to be able to specify only one of the parameters (start date or finish date) depending if you're back-planning or not.
    Check if the option "ignore resource calendar" on the task if checked.
    Also try to press F9.
    Are the task manually scheduled? Do you have constraints on the tasks?
    Maybe share a screenshot so it'll be easier to help you.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • Travel Time in Calendar not working

    Not sure if this is a common theme amongst others but when I place an address into an event in calendar and then go to add travel time, the menu using my location times out and disapears.

    sberman Southern California
    This solved my questionRe: Calendar Travel Time Starting from Work when I want to Start from Home Oct 23, 2013 8:43 PM (in response to theglenlivet12)
    From Calendar's help:
    To set your starting location, Calendar first looks for your location in any events that are up to three hours before this event. If Calendar doesn’t find a location, it uses your work address during work hours and your home address during other hours. (Your work hours are set in Calendar preferences using the “Day starts at” and “Day ends at” menus.) If your card in Contacts doesn’t have your addresses, Calendar uses your computer’s current location.

  • Calendar not working properly after software upgrade

    Today I upgraded my touch software to version 4.1 (8B117). Since this upgrade, the calendar doesn't work properly. Before the upgrade this is the scenario: I would go into my Calendar (synced with my gmail calendar) in "List" view. There was always a brief pause where the calendar would refresh. The screen would go white for a second and the "List" view would reappear. After the upgrade, I see the same refresh but the screen stays white. It won't display my calendar in "List" view anymore... unless I click on either "Day" or "Month" view and then back to "List". Anyone else experiencing this? I don't know if the upgrade is the reason but that's the only thing that changed today so I'm very suspicious.

    Not sorted on mine,
    Dates are added at random, so are times, i.e. a item in outlook 2010 is set for 09.00am on the 16 dec 2010.
    the date will come up as 14.35pm 20 dec 2010 on the ipod. This also occurs with repeated items, weekly, monthly and annual. as a % its about 5/15% of all appointments but they are the ones that matter most.
    Things I have tried to resolve this include the following,
    I have reset the ipod with factory settings, I have deleted All dates in outlook then synced to ensure all dates have been deleted, I have also tried the above and then reflashed the update before re syncing them.,
    Selected replace items on next sync button in itunes 10.1.0.54
    put repeating dates in and they have All been date changed and hours changed at random. BUT not changed in outlook on re-syncing. I know that the database is fine as I have also synced with an Android phone and a Win Mobile 6.5 phone and the dates Have correctly entered in both devices.
    Some of the dates have changed by as much as 9 days, the hours by minutes up to 16/17 hours.
    Ipod details, 32Gb at present 24Gb free so not a space issue...
    The ipod touch has been updated with 4.2.1 (8C148) Running itunes 10.1.0.54
    settings in ipod are for location london, in general and also im mail.
    (factory reset not upgraded and also tried on 2 computers running win7 pro 1 x32bit 1x64bit)

  • Notifications from Calendar not working

    Since I upgraded to ios6, my calendar notifications only work occasionally.  I have it set to a specific sound (I even tried changing to different ones!) and it is also set to show as an alert.  Even when the sound works, it is very short, it does not show as an alert, and if I miss the sound, it won't show on my lock screen!  Any suggestions?

    Update - resetting and starting over seems to have worked for now - thanks Spiff.
    On the Newstand issue, resetting my ipad and iphone multiple times and trying the "restore purchases" function in the magazine itself finally allowed a download in the ipad, however even though it allowed it, it still gave me the "no purchases made" error - very strange but I have the issue of the magazine on both devices.
    Absolutely no luck with Notifications - I woke up this morning and none of my twitter or facebook or news notifications are there, again, just the apple ones (mail, calendar, messenger).

Maybe you are looking for