Leap Year Calendar

I am working on a project where the user enters a year. The string is then converted into an int and goes through a series of tests to see if it is a leap year or not. The problem I am having is when the user inputs letters when they are supposed to enter numbers. This gives the "java.lang.NumberFormatException" error. I used the try and catch code to make the user re input a year, but how do you make that into a loop. I want to make it so if the user keeps putting in letters, the computer keeps asking for numbers.
this is my code so far:
import javax.swing.JOptionPane; //import this at top
public class finding_the_leap_year {
public static void main(String[]args){
int year = 0;
{color:#ff0000}
try{
String inputValue = JOptionPane.showInputDialog("Input a year");
year = Integer.parseInt(inputValue);
catch(java.lang.NumberFormatException ex){
while(????????????????????){
System.out.println("Please enter a year");
String inputValue = JOptionPane.showInputDialog("Input a year");
year = Integer.parseInt(inputValue);
}          }{color}
if(year % 4 == 0)
System.out.println(year + " is a leap year.");
if(year % 100 == 0)
if(!(year%400==0)){
System.out.println(year + " is a leap year.");
else{
System.out.println(year + " is not a leap year.");
Edited by: chibioj on Sep 29, 2007 12:50 PM
Edited by: chibioj on Sep 29, 2007 12:51 PM

Put more in the while loop. I sometimes use a boolean value such as dataValid or inputValid and set it to false. I only set it to true if the input entered is ok. It is set to true in the try block but AFTER the data is obtained and parsed. The code will only reach that line if the input is valid.
        String inData = "";
        boolean dataValid = false;
        while (!dataValid) // while we don't have a correct answer yet
            try
                inData = JOptionPane.showInputDialog("Input a number");
                if (inData != null)  // if they didn't press the cancel button
                    year = Integer.parseInt(inData);                   
                dataValid = true; // won't get here if numberformatexception tripped
            catch (java.lang.NumberFormatException ex)
                JOptionPane.showMessageDialog(null, "You didn't enter a valid year.  Please try again.");
        if (inData != null) // if cancel button not pressed on input dialog
            if (......Also, you have some logic errors in the rest of your code that need fixing.
Good luck!

Similar Messages

  • IPhone Leap year calendar issues anyone?

    Is anyone having a problem with scheduling meetings in outlook for February 29th and then they show up on the iPhone as March 1st instead?  Is there something that is not configured right because of leap year?

    I have a reoccurring appoint that happens every wednesday. But I noticed yesterday that it put that appointment on  Tuesday - Feb 28th instead of Feb 29th. When you open up the event it says:
    "Tuesday, 28 Feb, 2012
    from 6:30 PM to 8:30 PM
    repeats every week on Wednesday"
    I'm quite sure I didn't add a single instance of this event on the Tuesday. I'm a software developer and took a guess that the weekly event falling on Feb 29th of a leap year was the most likely culprit of this bug.
    Note that I used the iCloud control panel to push out my events from Outlook to iCloud a couple of weeks ago. So the logic error could be in that software. Or in Outlook, or in Google (as I used to synch my google calendar to outlook before going to iCloud). But I doubt it was caused by Outlook or Google calendar. No proof of that, just my gut feeling.

  • Problem with leap years in Calendar demo

    I've just looked at the Calendar demo component:
    http://developers.sun.com/prodtech/javatools/jscreator/reference/codesamples/samplecomps/calendar.html
    There is a little bug : it doesn't seem to manage leap years.
    Go to february 2008, and you won't the the 29th of February 2008 in the calendar.
    Please try to correct this bug quickly. It is a bad idea to let people get source code with bugs as a a demo.
    Thanks
    Thibaut REGNIER
    See TastePhone, my Open Source app made whith Java Studio Creator:
    http://www.club-java.com/TastePhone/J2ME/MIDP_mobile.jsp

    The Calendar Component does take account of the leap year.
    If you look at the code, it has
    if ((month == FEBRUARY) && (isLeapYear(year))) numCells++;Not sure what went wrong. I'll take a look at it.
    - Winston

  • How to do a date validation with leap years

    I'm doing a date validation program in my Java class, and well it's pretty hard (for me that is). I have to be able to type in a date, have it say whether it's a leap year or not, and print out the number of days in the month. It seems pretty straight forward, but I get confused on trying to do the 'if else' statements and even the simplest things like getting the day prompting to work. >< The years I'm doing only goes through 1000 to 1999, so that's why those numbers are there. The program isn't complete, so if anyone could help show me what I'm doing wrong in the areas I'm working on then I'd appreciate it...and I'm still kind of in the basics of Java so if you do hint me with some code then I'd appreciate it if it was stuff that's not too advanced so yea.
    // Dates.java
    // Determine whether a 2nd-millenium date entered by the user
    // is valid
    import java.util.Scanner;
    public class Dates
    public static void main(String[] args)
    int month, day, year; //date read in from user
    int daysInMonth; //number of days in month read in
    boolean monthValid, yearValid, dayValid; //true if input from user is valid
    boolean leapYear; //true if user's year is a leap year
    Scanner scan = new Scanner(System.in);
    //Get integer month, day, and year from user
    System.out.print("Type in the month: " );
              month = scan.nextInt();
    System.out.print("Type in the day: " );
              day = scan.nextInt();
    System.out.print("Type in the year: " );
              year = scan.nextInt();
    //Check to see if month is valid
    if (month >= 1)
    month = month;
    else
    if (month <= 12)
    month = month;
    else;
    //Check to see if year is valid
    if (year >= 1000)
    year = year;
    else
    if (year <= 1999)
    year = year;
    else;
    //Determine whether it's a leap year
    //Determine number of days in month
    if (year == 1 || 3 || 5 || 7 || 8 || 10 || 12)
         System.out.println (Number of days in month is 31);
         else (year == 4 || 6 || 9 || 11)
         System.out.println (Number of days in month is 30);
    //User number of days in month to check to see if day is valid
    //Determine whether date is valid and print appropriate message
    // Dates.java
    // Determine whether a 2nd-millenium date entered by the user
    // is valid
    import java.util.Scanner;
    public class Dates
    public static void main(String[] args)
    int month, day, year; //date read in from user
    int daysInMonth; //number of days in month read in
    boolean monthValid, yearValid, dayValid; //true if input from user is valid
    boolean leapYear; //true if user's year is a leap year
    Scanner scan = new Scanner(System.in);
    //Get integer month, day, and year from user
    System.out.print("Type in the month: " );
              month = scan.nextInt();
    System.out.print("Type in the day: " );
              day = scan.nextInt();
    System.out.print("Type in the year: " );
              year = scan.nextInt();
    //Check to see if month is valid
    if (month >= 1)
    month = month;
    else
    if (month <= 12)
    month = month;
    else;
    //Check to see if year is valid
    if (year >= 1000)
    year = year;
    else
    if (year <= 1999)
    year = year;
    else;
    //Determine whether it's a leap year
    //Determine number of days in month
    if (year == 1 || 3 || 5 || 7 || 8 || 10 || 12)
         System.out.println (Number of days in month is 31);
         else (year == 4 || 6 || 9 || 11)
         System.out.println (Number of days in month is 30);
    //User number of days in month to check to see if day is valid
    //Determine whether date is valid and print appropriate message
    }

    Here are some helpfull hints for you:
    1. Your code is really hard to read, there are two main reasons for this. First, your indentation sucks. Second, you seem to be fascinated with saving two (ok four if you count the shift key) keypresses to avoid using { and }.
    2. Not using the brackets (you know { and } which you like to avoid) also is causing your code to do some stuff you don't realize or want to happen, or at least it would be if your code compiled.
    3. If statements require arguements, "year == 1" is an arguement, "3" is not an arguement. Each operator like the or operator ("||") is essentially a new if and requires a complete arguement. So the following code peice:
    if (year == 1 || 3 || 5 || 7 || 8 || 10 || 12)Literally translates to if year equals 1 or if 3 or if 5 or if 7 or if 8 or if 10 or if 12. Doesn't make much sense in english, and it doesn't make much sense in Java either.
    4. I am pretty sure "year" is not the variable you want in the code snippet above (the one used in hint 3), especially considering years 1, 3, 5, 7, 8, 10, and 12 are not between 1000 and 1999. You need to be really carefull not make these kind of mistakes when coding, because they are by far the hardest to track down and fix later since they don't really throw up any flags or anything at compile or run time. Take your time and think thuroughly about each line of code while coding it, it will save you tons of time in the long run.
    5. What exactly do you expect statements like "month = month;" to do? That translates as make month equal to month. Do you go to the bank and say " I have exactly $3.56 in my pocket, so I would like to deposite all $3.56 and then withdraw $3.56 and put it back in my pocket"? How do you think the teller would look at you? Teller would probably do it, but the teller would feel like he/she wasted time with you and that you are not really right in the head. Java feels the same way when you make it do the same thing, and you love to do it.
    6. Code like the following is all wrong, and for more reasons than pointed out in hint 5.
    if (month >= 1)
    month = month;
    else
    if (month <= 12)
    month = month;
    else;Let's say someone put 13 in as the month. It passes the first check because 13 is greater than or equal to 1. so month which is 13, now gets set to 13 (gee that was effective). Now we hit the else and things get confusing because you didn't use brackets or proper indentation (hint 1) so we don't know what your real intent was. Did you mean else do nothing, and the next if statement is then executed, or did you mean to just run the next if statement if the else condition was met? Fortunatly it doesn't matter here because the next if statement is failed anyways since 13 is not less than or equal to 12.
    So, we leave this code with month ebing 13, wait when did we add a 13th month to the calendar? Are you using the Jewish calendar? Could be, except even if I put 1234567 as the month your code would except it as valid, and I know no calendar with that many months. Try writing this in english first and translating it to jave, like i would probably say "if the month is greater than or equal to 1 and less than or equal to 12 then the month is valid." Course now what do you do if it is invalid? Hmm, maybe I would actually say "while the month is less than 1 or greater than 12 ask the user for the month" until they get it right.
    There are a few other problems, but most of them are probably things you haven't learned yet, and they are not show stoppers so we will let them fly. You already have a lot of work to do to make this better. But I do have one more really really big usefull hint for you:
    Never, ever, under any circumstances, should you ever ask in any way or even hint at asking for someone else to provide code solutions to your problems. So "so if you do hint me with some code then I'd appreciate it if it was stuff that's not too advanced " was a very bad thing to do, but fortunatly for you you followed it with proof you were trying to write the code yourself. Had the code you provided not been so full of problems it was obvious a beginner wrote it, you would probably have gotten much less cordial responses. I would seriously consider avoiding any implication of wanting code, at least until you become a regular poster here and people know you are not just looking to get your homework done for you.
    Hope some of this helps.
    JSG

  • Leap year issues

    how do you corr5ect leap year issues with calendar?

    I have a reoccurring appoint that happens every wednesday. But I noticed yesterday that it put that appointment on  Tuesday - Feb 28th instead of Feb 29th. When you open up the event it says:
    "Tuesday, 28 Feb, 2012
    from 6:30 PM to 8:30 PM
    repeats every week on Wednesday"
    I'm quite sure I didn't add a single instance of this event on the Tuesday. I'm a software developer and took a guess that the weekly event falling on Feb 29th of a leap year was the most likely culprit of this bug.
    Note that I used the iCloud control panel to push out my events from Outlook to iCloud a couple of weeks ago. So the logic error could be in that software. Or in Outlook, or in Google (as I used to synch my google calendar to outlook before going to iCloud). But I doubt it was caused by Outlook or Google calendar. No proof of that, just my gut feeling.

  • Get previous year from leap year

    Hi all,
    I'm stuck here trying to get the previous year for the current year, I tried these function module but didn't work, CCM_GO_BACK_MONTHS and CALCULATE_DATE.
    The problem is, in the leap year, there's Feb 29th, so I want to get 1 year before the date I enter, 2008 is a leap year, when I entered feb 29th 2008, then used the FM, then it showed me Feb 29th 2007, but 2007 doesn't have Feb 29th.
    Any advice? thanks!

    Try                                                                               
    /SAPNEA/J_SC_CALENDAR          Calendar
    /SAPNEA/JSC_LEAP_YEAR          Leap year check between two date
                                                                                    EAU0
    ISU_LEAP_DAYS_BETWEEN_2_DATES
                                                                                    FF04
    FIMA_LEAP_DAYS_BETWEEN_2_DATES
                                                                                    FV02
    LEAP_DAYS_BETWEEN_TWO_DATES                                  
    You can also look at class "CL_HRSEN00_LEAP_DAY_TOOLS"
    ^ Saquib

  • ICal and Leap Year

    I had set up a yearly recurring event for a birthday notification for Feb 29 (Leap Year) with a Alarm notification 6 days in advance of the day so I could be sure to send out a card in time, etc. etc. However, because there is no Feb 29 in calendar year 2010 it appears that the Alarm notification isn't working. Is this a bug or did I possibly do something wrong?

    Yes, I noticed this the other day but didn't make a connection with the US holidays. Odd quirk.

  • Leap Years

    Im kinda stuck .. will anyone help me 2 solve this problem.. >,<
    Background Information
    A year with 366 days is called a leap year. A year is a leap year if it is divisible by 4 (For example, 1996), except that it is not a leap year if it is divisible by 100 (For example, 1900); however, it is a leap year if it is divisible by 400 (for example, 2000); and there were no leap years before the introduction of the Gregorian Calendar on October 15, 1582.
    part 2 is
    Find the number of leap years elapsed between two leap years when February 29th occurred on the same day. For example if 29th of February 2000 is on a Tuesday, find the next leap year when 29th of February happens on Tuesday, display both years and the number of leap year in between.
    here is what i have done so far.
    import java.util.Scanner;
    public class leapyears
         public static void main(String[]args)
              int dayNumber,
              year,
              startLeapYear = 2000,
              endLeapYear = 2999;
              Scanner scan = new Scanner(System.in);
              System.out.println(" The first part of the program is to calculate and show the number of leap year\n"
                        + " between the year of 2000 and 2999.\n The second part is the number of leap years"
                        + "between two leap years when Febuary occurs on \n on the same day.\n");
              displayLeapYear( 2000, 2999);
              System.out.println("");
              int count = 0;
              do
                   System.out.println("Please enter the leap Year:");
                   year = scan.nextInt();
                   count ++;
              }while(!checkLeapYear(year));
              dayNumber = zeller(29,2,year);
              nextDay(year , dayNumber);
    public static void displayLeapYear(int startLeapYear, int endLeapYear)
    int count = 0;
    for( ; startLeapYear <= endLeapYear ; startLeapYear ++)
    if ( checkLeapYear(startLeapYear))
    System.out.print( startLeapYear+" ");
    startLeapYear ++;
    count++;
    System.out.println("\n There are "+ count+ " leap years");
    public static boolean checkLeapYear(int year)
    if( year % 4 == 0)
    if(year % 100 == 0 && year % 400 != 0)
    return false;
    return true;
    return false;
         public static String dayName(int dayNumber)
              switch(dayNumber)
              case 0:
                   return "Sunday";
              case 1:
                   return "Monday";
              case 2:
                   return "Tuesday";
              case 3:
                   return "Wednesday";
              case 4:
                   return "Thursday";
              case 5:
                   return "Friday";
              case 6:
                   return "Saturday";
              default :
                   return "Error";
         public static int zeller(int year, int month, int day)
              int dayNumber;
              int startMonth, startYear, leapFactor;
              day = 1;
              month = 2;
              startYear = 2000;
              if (month < 3)
                   startMonth = 0;
                   startYear = year -1;
              else
                   startMonth = (int)(0.4 * month + 2.3);
                   startYear = year;
              leapFactor = (startYear/4) - (startYear/100) + (startYear/400);
              dayNumber = ((365 * year + 31 * (month-1) + day + leapFactor - startMonth)-1) %7;
              return dayNumber;
         public static void nextDay(int year, int dayNumber)
              int startDay = 7, count = 0 ;
              do
                   year += 4;
              if(!checkLeapYear(year));
              else
                   startDay = zeller(29, 2, year);
                   System.out.print(year + " ");
                   count++;
              }while(startDay != dayNumber);
              System.out.println("The ");
         System.out.println("This day is "+ dayName(dayNumber));
    }

    http://java.sun.com/j2se/1.5.0/docs/api/java/util/GregorianCalendar.html#isLeapYear(int)
    ~

  • When I tried to import fro my camera, I cant get the last day to import. Could  it have anything to do with Feb 29,2011 being Leap Year?

    When I tried to import  from my camera, the last day did not import, I keep retrying, but will not import. Could it have anything to do with the date Feb 29, 2012 as it was Leap Year?

    OK Texas, so nothing strange with the calendar (unless you folk have seceded since the last time I checked the news )
    Image Capture is an Apple App that comes with the OS. Allows you to do a bunch of things. Import pictures from your camera is one. Open the app with your camera connected. If you have Aperture set to open when the camera is connected just close Aperture and then open Image Capture.
    You'll see the camera and it should show you the images on the camera card. See if the images from the 29th show up.
    post the results.
    regards

  • Handling weeks in Planning with leap years

    How are people handling weeks-based forecasting in Planning?
    I have a Planning app that has 53 time periods with an extra week in August to handle the leap year (thus the 53). There are dynamically calculated months, quarters, and the always-loved YearTotal in Time as well.
    This works fine in a leap year, but is kludgy otherwise as it includes an additional month in August – this skews form spreads.
    And it gets even uglier when calculating/data viewing year over year forms as the start week for September should vary across leap and non-leap years.
    It occurred to me that I could create a custom dimension called “Weeks” with all 53 weeks and then use a nested dimension strategy that combined a 12 months Time dimension and the relevant weeks (some hard coding there on forms). I could then use the form column/row suppression to show/hide weeks by month.
    The upsides:
    1)     Smaller block size, as Weeks would go sparse and Time would get reduced from 53 to 12 members.
    2)     True week/month relationships in reporting/forms through prepopulated data and suppression.
    3)     True 4-4-5 spreads to months (although an algorithm to spread to the separate Weeks would have to exist, but that is irrespecitive of the 4-4-5 spread). NB -- 445, etc., concepts don't work in a Planning app with weeks.
    I see a few downsides to this:
    1)     The possibility of entering data by week into the wrong month <-- Form construction could mitigate this.
    2)     Block creation issues in calcs as there is another sparse dimension to take care of.
    3)     Many more blocks <-- How about 53 of them?
    Any thoughts on this approach? I’m not scared of the calcs although I appreciate it’s a little more complicated. I don’t think it breaks the Scenario dimension’s opening/closing of periods. I guess I’m trying to see if there are any hidden issues with this approach and if anyone has figured out a better way to do this.
    Thanks,
    Cameron Lackpour

    The Calendar Component does take account of the leap year.
    If you look at the code, it has
    if ((month == FEBRUARY) && (isLeapYear(year))) numCells++;Not sure what went wrong. I'll take a look at it.
    - Winston

  • HELP! Files won't open and previously had Firefox icon instead of DW icons!  Leap Year thing?

    Hi!  I went to update my website, which I do every night before the first day of every month and all the files had a FIrefox icon instead of the usual Dreamweaver one.  I have shut down, reinstalled DW MX 2004 but the files still do not open.  The icons have now changed to DW but they are not opening with right click, opening from Applications folder, double clicking the file, from get info and open with DW.  I am stumped. HELP!  Need to update for March 1st.
    Is it something to do with Leap Year 29th Feb?  Checked the clock in preferences but can't see how this affects it.
    Firefox is always updated but the latest version does not seem to be as efficient as previous upgrades.  We installed Chrome as well.  Do they interfere with each other?

    Hi Ken
    I wish the 7.1 updater download had helped but it didn¹t.  All the files
    were backed up before the installation, which went fine.
    Mac 10.5.8
    We used Disc Warrior to defrag the hard drive, which did not make a
    difference.
    We recently started using Chrome, so now have 3 browsers in the dock,
    Safari, Firefox and Chrome.  Do they interfere in any way with each other?
    The files, which I hadn¹t touched for a month as I update on a monthly
    basis, initially had the Firefox icon.
    Below is the message to send to Apple, which did not go through their report
    system!  A little disillusioned with the service!
    Model: iMac9,1, BootROM IM91.008D.B08, 2 processors, Intel Core 2 Duo, 3.06
    GHz, 4 GB
    Graphics: kHW_NVidiaGeForceGT130Item, NVIDIA GeForce GT 130,
    spdisplays_pcie_device, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8E),
    Broadcom BCM43xx 1.0 (5.10.91.22)
    Bluetooth: Version 2.1.9f10, 2 service, 0 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: WDC WD1001FALS-40K1B0, 931.51 GB
    Serial ATA Device: PIONEER DVD-RW  DVRTS08
    USB Device: Built-in iSight, (null) mA
    USB Device: Keyboard Hub, (null) mA
    USB Device: iLok, (null) mA
    USB Device: Apple Optical USB Mouse, (null) mA
    USB Device: Apple Keyboard, (null) mA
    USB Device: Deskjet 3840, (null) mA
    USB Device: BRCM2046 Hub, (null) mA
    USB Device: Bluetooth USB Host Controller, (null) mA
    USB Device: IR Receiver, (null) mA
    FireWire Device: d2 quadra (button), LaCie, 800mbit_speed
    Does not mean a thing to me.
    I am not late with updating the site, which is about New Zealand culture,
    month by month (www.englishteacher.co.nz). Probably only the third time I
    have been late since 2005. Not a huge amount of traffic, ~300 a month and
    free access to content but I would like to solve this problem.
    Could a reciprocal link have caused a problem?
    At my wits end.
    I really appreciate the help though.
    Cheers Yvonne
    From: Ken Binney <[email protected]>
    Reply-To: <[email protected]>
    Date: Wed, 29 Feb 2012 06:42:11 -0700
    To: Yvonne and Bill Hynson <[email protected]>
    Subject: HELP! Files won't open and previously had Firefox
    icon instead of DW icons!  Leap Year thing?
    Re: HELP! Files won't open and previously had Firefox icon instead of DW
    icons!  Leap Year thing?
    created by Ken Binney <http://forums.adobe.com/people/Ken+Binney>  in
    Dreamweaver - View the full discussion
    <http://forums.adobe.com/message/4236682#4236682>
    Not necessarily related, but did you also install the 7.1
    updater? http://www.adobe.com/support/dreamweaver/downloads_updaters.html
     Windows or MAC?
    Replies to this message go to everyone subscribed to this thread, not
    directly to the person who posted the message. To post a reply, either reply
    to this email or visit the message page:
    http://forums.adobe.com/message/4236682#4236682 To unsubscribe from this
    thread, please visit the message page at
    http://forums.adobe.com/message/4236682#4236682. In the Actions box on the
    right, click the Stop Email Notifications link. Start a new discussion in
    Dreamweaver by email
    <mailto:[email protected].ad
    obe.com>  or at Adobe Forums
    <http://forums.adobe.com/choose-container!input.jspa?contentType=1&container
    Type=14&container=2240>  For more information about maintaining your forum
    email notifications please go to
    http://forums.adobe.com/message/2936746#2936746.

  • Unable to generate the file report pdf on 29 february 2012 or during any leap year day...

    hii this is manab......
    sir/mam i have face the following error in 29 february 2012 for my overall company report .But i can easily get the
    report of another department on 29feb 2012....but when i try generate the overall report of my comapany then i find the errors
    REP-1401: 'cf_mc_prod_lyrformula': Fatal PL/SQL error occurred.
    ORA-01839: date not valid for month specified
    The following is the logfile.........
    ...........................................................................................log file................................................................................................................
    HPCL Custom Application: Version : UNKNOWN
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    HPCCMDS module: HPC Modified CMD Report
    +---------------------------------------------------------------------------+
    Current system time is 04-SEP-2013 11:37:20
    +---------------------------------------------------------------------------+
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    P_MILL='NPM'
    P_TRANSACTION_DATE='2012/02/29 00:00:00'
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.US7ASCII
    REP-1401: 'cf_mc_prod_lyrformula': Fatal PL/SQL error occurred.
    ORA-01839: date not valid for month specified
    Report Builder: Release 6.0.8.24.0 - Production on Wed Sep 4 11:37:20 2013
    (c) Copyright 1999 Oracle Corporation.  All rights reserved.
    Enter Username:
    +---------------------------------------------------------------------------+
    Start of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    End of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    Program exited with status 1
    Concurrent Manager encountered an error while running Oracle*Report for your concurrent request 11426643.
    Review your concurrent request log and/or report output file for more detailed information.
    +---------------------------------------------------------------------------+
    Executing request completion options...
    Finished executing request completion options.
    +---------------------------------------------------------------------------+
    Concurrent request completed
    Current system time is 04-SEP-2013 11:59:23
    +---------------------------------------------------------------------------+
    kindly give me solution .....i have e-business suite 11i
    internet explorer latest version...

    Hi,
    Please confirm whether this is a custom or standard report.
    If this is a custom report, then probably the respective issue has not been handled by exception handling.
    Also please refer note:
    How to check if version 11.5.10.2 is certified to Handle Leap Years (Doc ID 549937.1)
    Thanks &
    Best Regards,

  • How do I create a new calendar for the current year, using last years calendar's birthday's/photos and comments from the lower pages?

    Each year for the past 5 years I make a family calendar and send copies to all he family members around the globe.  I hate that I have to recreate all the birthdays and special occasions from scratch, and re-drag all the photos onto these dates, in the lower half of the page of each month on the new calendar.  How can I create a new calendar for the current year and port all of these photos/comments into the new calendar from last years calendar, to save having to redo all this work!!  I am not talking about the upper half page of the photos only...I am referring to the calendar page of each month.
    Thanks in advance. 
    Colin

    Welcome to the Apple Discussions. Open iWeb so you see your original site in the left hand pane. Use the File->New Site menu option to create a new site. Give it the name you want.
    Now select a page in your original site and type Command+D. That will duplicate the page. Drag the duplicate page down to the new site and rename it as needed. Do that for the other pages you need in the original site.
    OT

  • Search / Find in Year Calendar View

    GW 2012 SP2
    If I look at a calendar in Year view, I can see all the days that have
    calendar entries (they're bolded)
    If I want to find an appointment with 'Smith' in this view, I type it
    into the Find field ...
    However, there are no changes to the view - all calendar days still
    show as bold
    If I switch to Details view, the Find works fine
    Is there a way for this to work in the Year Calendar View ?
    Steve

    Not sure what the client's support status is on this .... will check -
    perhaps SP3 will have this fix but who can wait for another year !!
    laurabuckley wrote:
    >
    > Hi Steve,
    >
    > There have been some irregularities reported in the year view of the
    > GroupWise 2012 client.
    >
    > If you are in a position to do so, may I suggest that you open a
    > Service Request with Novell Technical Support to get the latest FTF
    > version of the client. This may just address the issues that you are
    > having.
    >
    > Please let us know how you proceed.
    >
    > Cheers,

  • How to have few distincts colors per day on the year calendar, ( like month or day calendar ) thank

    When i use Ical, ( dayly, week, month ) i can have lot of distinct colors for each days, few colors in the same day,
    When i use Ical ( year ) just one color appear each day,
    Can i change that to have the same wiev of day in each calendar ( ex: in the year calendar, how to see i've doctor the 2013 01 10 in blue
    the teacher the 2013 01 10 in yellow and pay the taxe the 2013 01 10 in red )
    thank for reply
    sorry for my english

    I believe, I have answered my own question....
    thx

Maybe you are looking for