Calendar program

HI All,
I'm a student of Java and recently stumbled across this site. Its fab, excellent work!
I am working on a program that just prints out a Calendar of a specified year. I have it working fine except one thing :)
From the year specified the program works out leap years, the day a month starts on etc.. However,
Line 117-122 has an error somewhere. It returns an ArrayOutOfBounds error, so i added an if command to reset the array pointer, now the output has changed and i can't work out what i'm doing wrong.
Any help greatly appreciated.
Many thanks.
Ken.
import java.util.*;
public class mycal2379122 {
     static void nl(int n) {
          // Procedure for creating new lines, n times on screen.
     for (int j = 0; j < n; j++) {
          System.out.println();
     static String padMonth(String s) {
          // Function to take a string as a parameter and return it with stars appended
          String ch = "--------------------";
          s = s.substring(0,s.length()) + ch.substring(s.length(),ch.length());
          return s;
     static int[] getStartDays(int y) {
          // Function to return an int array holding the start days for each month in y
          // where 0 = Monday ... 6 = Sunday
          int[] startDays = new int[12];
          int[] daysInYear = daysInYear(y);
          int firstDay = ((y - 1900) * 365 + (y - 1901) / 4) % 7;
          for (int i = 0; i < 12; i ++) {
               if (i == 0) {
                    startDays[i] = firstDay;
                    firstDay = (firstDay + daysInYear) % 7;
               else {
                    startDays[i] = firstDay;
                    firstDay = (firstDay + daysInYear[i]) % 7;
          return startDays;
     static int[] daysInYear(int y) {
          if (isLeap(y)) {
               int DaysInMonth[] = {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
               return DaysInMonth;
          else {
               int DaysInMonth[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
               return DaysInMonth;
     static boolean isSingle(int d) {
          if (d <= 9) {
               return true;
          else {
               return false;
     static boolean isLeap(int y) {
          // function to return true if y is a leap year, otherwise false.
          if (y % 4 == 0 && y % 100 != 0 || y % 400 == 0) {
               return true;
          else {
               return false;
     static void getMonth(int monthName, int startDay, int numDays) {
          String days[] = { "Mo.", "Tu.", "We.", "Th.",
               "Fr.", "Sa.", "Su." };
          String months[] = { "JANUARY.", "FEBUARY.", "MARCH.", "APRIL.",
          "MAY.", "JUNE.", "JULY.", "AUGUST.", "SEPTEMBER.",
          "OCTOBER.", "NOVEMBER.", "DECEMBER." };
          String row[] = { "", "", "", "", "", "", "", "" };
          int startPos = 1 - startDay, count = 0, currentRow = 2;
          String buildRow = "";
          // Populate month grid with data
          // The only thing to change here is the month name
          row[0] = padMonth(months[monthName]);
          // This row will never change
          row[1] = "Mo.Tu.We.Th.Fr.Sa.Su";
          // 6 rows by 20 colums left
          for (int i = 2; i < 8; i ++) {
               row[i] = "....................";
          // loop to build a single row in grid
          for (int d = startPos; d != 42-startPos; d++) {
               if (d >= 1 && d <= numDays) {
                    if (isSingle(d)) {
                         buildRow = buildRow + " ";
                    buildRow = buildRow + d;
               else {
                    buildRow = buildRow + " ";
               count ++;
               if (count == 7) {
                    count = 0;
                    row[currentRow] = buildRow;
                    buildRow = "";
                    currentRow ++;
                    if (currentRow == 7) { currentRow = 2; }
               else {
                    buildRow = buildRow + " ";
          //print grid
               for (int i = 0; i < 7; i ++) {
          System.out.println(row[i]);
     public static void main(String[] args) {
     Scanner input = new Scanner(System.in);
     int year = 0;
     int i = 0;
     String[] monthGrid = new String[8];
     String[] concatGrid = new String[8];
     // Force year within range
     while (year < 1901 || year > 2099) {
          System.out.print("Please enter a year in range of 1901-2099: " );
          year = input.nextInt();
     // At this stage i know the year & can work out the start days for each month.
     int startDays[] = getStartDays(year);
     int daysInYear[] = daysInYear(year);
     while (i != 20) { // testing loop
          i = input.nextInt();
          getMonth(i,startDays[i],daysInYear[i]);

HI, Sorry i didn't know about the CODE Tags for the forums...
Here is the code re-posted with the code tag, Thanks for the help guys. Its much appreciated.
import java.util.*;
public class mycal2379122 {
     static void nl(int n) {
          // Procedure for creating new lines, n times on screen.
         for (int j = 0; j < n; j++) {
              System.out.println();
     static String padMonth(String s) {
          // Function to take a string as a parameter and return it with stars appended
          String ch = "--------------------";
          s = s.substring(0,s.length()) + ch.substring(s.length(),ch.length());
          return s;
     static int[] getStartDays(int y) {
          // Function to return an int array holding the start days for each month in y
          // where 0 = Monday ... 6 = Sunday
          int[] startDays = new int[12];
          int[] daysInYear = daysInYear(y);
          int firstDay = ((y - 1900) * 365 + (y - 1901) / 4) % 7;
          for (int i = 0; i < 12; i ++) {
               if (i == 0) {
                    startDays[i] = firstDay;
                    firstDay = (firstDay + daysInYear) % 7;
               else {
                    startDays[i] = firstDay;
                    firstDay = (firstDay + daysInYear[i]) % 7;
          return startDays;
     static int[] daysInYear(int y) {
          if (isLeap(y)) {
               int DaysInMonth[] = {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
               return DaysInMonth;
          else {
               int DaysInMonth[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
               return DaysInMonth;
     static boolean isSingle(int d) {
          if (d <= 9) {
               return true;
          else {
               return false;
     static boolean isLeap(int y) {
          // function to return true if y is a leap year, otherwise false.
          if (y % 4 == 0 && y % 100 != 0 || y % 400 == 0) {
               return true;
          else {
               return false;
     static void getMonth(int monthName, int startDay, int numDays) {
          String days[] = { "Mo.", "Tu.", "We.", "Th.",
               "Fr.", "Sa.", "Su." };
          String months[] = { "JANUARY.", "FEBUARY.", "MARCH.", "APRIL.",
          "MAY.", "JUNE.", "JULY.", "AUGUST.", "SEPTEMBER.",
          "OCTOBER.", "NOVEMBER.", "DECEMBER." };
          String row[] = { "", "", "", "", "", "", "", "" };
          int startPos = 1 - startDay, count = 0, currentRow = 2;
          String buildRow = "";
          // Populate month grid with data
          // The only thing to change here is the month name
          row[0] = padMonth(months[monthName]);
          // This row will never change
          row[1] = "Mo.Tu.We.Th.Fr.Sa.Su";
          // 6 rows by 20 colums left
          for (int i = 2; i < 8; i ++) {
               row[i] = " ";
          // loop to build a single row in grid
          for (int d = startPos; d != 42-startPos; d++) {
               if (d >= 1 && d <= numDays) {
                    if (isSingle(d)) {
                         buildRow = buildRow + " ";
                    buildRow = buildRow + d;
               else {
                    buildRow = buildRow + " ";
               count ++;
               if (count == 7) {
                    count = 0;
                    row[currentRow] = buildRow;
                    buildRow = "";
                    currentRow ++;
                    if (currentRow == 7) { currentRow = 2; }
               else {
                    buildRow = buildRow + " ";
          //return row;
               for (int i = 0; i < 7; i ++) {
          System.out.println(row[i]);
     public static void main(String[] args) {
     Scanner input = new Scanner(System.in);
     int year = 0;
     int i = 0;
     String[] monthGrid = new String[8];
     String[] concatGrid = new String[8];
     // Force year within range
     while (year < 1901 || year > 2099) {
          System.out.print("Please enter a year in range of 1901-2099: " );
          year = input.nextInt();
     // At this stage i know the year & can work out the start days for each month.
     int startDays[] = getStartDays(year);
     int daysInYear[] = daysInYear(year);
     while (i != 20) {
          i = input.nextInt();
          getMonth(i,startDays[i],daysInYear[i]);

Similar Messages

  • When I am on a phone call and I double click the button to go to my home screen, then open another application (usually my calendar program, Calengoo), my screen goes blank and I am not able to return to either the app, the phone, or the home screen.

    When I am on a phone call and I double click the button to go to my home screen, then open another application (usually my calendar program, Calengoo), my screen goes blank and I am not able to return to either the app, the phone, or the home screen. If I am speaking to a person, if they hang up then I am back to the phone application. If I'm leaving a message, I am unable to return to the phone screen to end the call, and have to wait until the other phone hangs up. I'm also unable to switch back and forth to look at my calendar if I'm calling someone about scheduling. This has only started happening since the most recent iOs update. I run into situations similar to this about once per day during the work week, as I use my phone is this manner quite often. While not life altering it is quite frustrating. Can anyone here help me figure out a way to avoid this? If it helps, I have noticed a general downgrade in overall performance starting two system updates ago (apps opening more slowly, closing unexpectedly more often, etc.). I have an iPhone 3GS with the latest OS update.
    Thank you for any help or suggestions,
    Chris

    I could be corrupted backup.
    You can check the notification settings for message.
    Settings>Notification Center>Messages>Alert Style
    It should be on Banners or Alerts.
    Settings>Messages> Turn on Imessage and send as SMS and below that "Blocked" to check if you have any numbers block might be blocking the message.
    You can also do a hard reset by holding power and home till it restarts and release after seeing the apple logo.
    Still doesn't work? Settings>General>Reset>Reset all settings

  • Calendar Program Question

    Hello! Among the lab assignments I have done for my class, I have this calendar project I've been working on for a good while now. My only question is how do I set the days of the month properly with the empty columns I have encoded in the program? This is a long program and I really haven't put any time into making it look neat, so bare with me!
    What I get so far in the interaction pane is:
    March  2008
                  1  2  3
      4  5  6  7  8  9 10
    11 12 13 14 15 16 17
    18 19 20 21 22 23 24
    25 26 27 28 29 30 31
    and what I'm looking for, obviously, is:
    March  2008
                        1
      2  3  4  5  6  7  8
      9 10 11 12 13 14 15
    16 17 18 19 20 21 22
    23 24 25 26 27 28 29
    30 31> Sometimes I over look something minor, but I'm stumped and this is the ONLY thing I have to do to finish this project!
    /* Calendar Program that displays the days of the
    * month between January 1800 to December 2099
    import javax.swing.JOptionPane;
    public class CalendarProgram
      public static void main(String[] args)
        String monthStr, yearStr, displayStr;
        int year, firstTwoYear, lastTwoYear;
        int daysinMonth = 0, dayofWeek = 0;
        int firstDayofMonth = 1;
        //asks user for input, and then checks if monthStr matches with the user, then displays it.
        monthStr = JOptionPane.showInputDialog(null, "Please enter the month (e.g. January):");
        if(monthStr.equals("January"))
            displayStr = monthStr;     
        else    
        if(monthStr.equals("February"))
            displayStr = monthStr;
        else
        if(monthStr.equals("March"))
            displayStr = monthStr;
        else
        if(monthStr.equals("April"))        
            displayStr = monthStr;
        else
        if(monthStr.equals("May"))
            displayStr = monthStr;
        else
        if(monthStr.equals("June"))
            displayStr = monthStr;
        else
        if(monthStr.equals("July"))
            displayStr = monthStr;
        else
        if(monthStr.equals("August"))
            displayStr = monthStr;
        else
        if(monthStr.equals("September"))
            displayStr = monthStr;
        else
        if(monthStr.equals("October"))
            displayStr = monthStr;
        else
        if(monthStr.equals("November"))
            displayStr = monthStr;
        else
        if(monthStr.equals("December"))
            displayStr = monthStr;
        //asks for the year from user
        yearStr = JOptionPane.showInputDialog(null, "Please enter the year between 1800 and 2099:");
        year = Integer.parseInt(yearStr);    
        //displayStr that displays the user's month and year.
        displayStr = monthStr + "  " + yearStr + "\n";
        System.out.print(displayStr);
        //computation of the first two digits and last two digits of the year.
        firstTwoYear = year / 100;
        lastTwoYear = year % 100;
        //HUGE computation to check the dayofWeek variable. This should compute where the first day of the month will display on the calendar.
        if ((lastTwoYear >= 0) && (lastTwoYear <= 99))
         dayofWeek = lastTwoYear * (1/4);
        if (firstTwoYear == 18)
          dayofWeek = dayofWeek + 2;
        else if (firstTwoYear == 19)
          dayofWeek = dayofWeek;
        else if (firstTwoYear == 20)
          dayofWeek = dayofWeek + 6;
        //Checks to see if a given year has a leap year or not.
        boolean leapYear =
          (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);
        if(monthStr.equals("January"))
          daysinMonth = 31;
          if(leapYear)
             dayofWeek = dayofWeek + 6;
           else
             dayofWeek = dayofWeek + 1;
        else    
        if(monthStr.equals("February"))
           if(leapYear)
             dayofWeek = dayofWeek + 3;
             daysinMonth = 29;
           else
             dayofWeek = dayofWeek + 4;
             daysinMonth = 28;
        else
        if(monthStr.equals("March"))
             dayofWeek = dayofWeek + 4;
             daysinMonth = 31;
        else
        if(monthStr.equals("April"))
             dayofWeek = dayofWeek;
             daysinMonth = 30;
        else
        if(monthStr.equals("May"))
             dayofWeek = dayofWeek + 2;
             daysinMonth = 31;
        else
        if(monthStr.equals("June"))
             dayofWeek = dayofWeek + 5;
             daysinMonth = 30;
        else
        if(monthStr.equals("July"))
              dayofWeek = dayofWeek;
              daysinMonth = 31;
        else
        if(monthStr.equals("August"))
              dayofWeek = dayofWeek + 3;
              daysinMonth = 31;
        else
        if(monthStr.equals("September"))
              dayofWeek = dayofWeek + 6;
              daysinMonth = 30;
        else
        if(monthStr.equals("October"))
              dayofWeek = dayofWeek + 1;
              daysinMonth = 31;
        else
        if(monthStr.equals("November"))
              dayofWeek = dayofWeek + 4;
              daysinMonth = 30;
        else
        if(monthStr.equals("December"))
              dayofWeek = dayofWeek + 6;
              daysinMonth = 31;
        dayofWeek = dayofWeek + firstDayofMonth;
        dayofWeek = dayofWeek % 7;
        //this checks if dayofWeek equals 0, it will be placed on the 7th column (Saturday)
        //else the dayofWeek will enter 1-6 like normally (Sunday-Friday)
        int colnum;
        if (dayofWeek == 0)
          colnum = 7;
        else
          colnum = dayofWeek;
        for(int i = 0; i < colnum; i++)
          System.out.print("   ");
        //Displays days of the month and inserts empty columns before 1st day
        for(int day = 1; day <= daysinMonth; day++)
       if (day < 10)
         System.out.print("  " + day);
       else
         System.out.print(" " + day);
       if ((colnum + day) % 7 == 0)
         System.out.println();

    Well, I could move the displayStr = monthStr into the other section of the code where the months are at, but as far as using java.util.Calendar/GregorianCalendar classes the professor made no recommendation of it (though it would be easier no doubt.) That's what he told us to use to display the month properly. I did look in the web for other examples and they did use the java.util.Calendar/GregorianCalendar classes, but I have no idea how to properly implement it. Besides, I was not asking about redundancy.
    After I made the thread, I did work on it a little bit more, and I changed:
       if ((lastTwoYear >= 0) && (lastTwoYear <= 99))
         dayofWeek = lastTwoYear * (1/4); into:
    if ((lastTwoYear >= 00) && (lastTwoYear <= 99))
         dayofWeek = (int) (lastTwoYear * .25);The year 2008 was properly displaying everything on the correct dates, but the other years are off by a few days. So now its either the computation in the long sequence of dayofWeek variable, or (what the professor mentioned in the assignment) it could be:
         loop (for the number of days in the month)
           displayStr = displayStr + <digit in field width of 3>
           if last digit in row, then append �\n� to displayStr}The whole loop, including the "append "\n" to displayStr" doesn't make much sense. So that could be where I'm having problems.

  • Calendar program for my vista that will work on iphone

    I'm looking for a calendar program that I can load on my dell vista that will sync to my new iphone.
    I'm new to Apple Iphone and need the calendar program to keep up with what and where my husband and I are going from day to day without having to carry a paper calendar.
    As I'm not a kid any more (62) need the KISS if possible.
    Thanks

    Just found out that Google calendar is perfect.
    It will walk you thu and the sync so almost a blink.
    You can also do contacts as well.

  • I have a client who was working with Now to Date, which is now obsolete.  She is looking for a mac calendar program that is as close to Now to Date as possible.  She has installed Outlook 2012 but finds that is takes too much time to enter data.  Help?

    I have a client who has been using Now to Date on her Mac.  That program is now obscure and she is looking for software that is extremely similar.  She has tried Outlook for Mac and it is too labor-intensive for her.  She wants a professional look, and something that is not linked to e-mail as she works with a lot of proprietary information.  Help?

    I could not identify that app in macupdate.com. If a Calendar program, what about iCal? did she try it and disliked? If you go to macupdate.com, and type ‘calendar’ in seach filed, you will be given a lot of apps, you or she should test what it most appropriate for your/her needs.

  • PC calendar Programs that can sync to BB

    Can anyone tell me what PC calendar programs are available that will sync to BB besides Outlook?  Does BB Desktop Manager have a calender built in?  If so I can't find it.  If not, why not?
    Thanks...totally frustrated with my new Curve.

    If you haven't got or don't want to use one of the supported calendars listed in the link Allan Sampson provided then you can use a combination of Sunbird and Google calendars as per the instructions here

  • Installed Firefox on other Windows laptop, but don't see a way to get your Calendar program (with the Ribbon) installed or downloaded.

    My IBM laptop was stolen yesterday and I am trying to recover on a Dell laptop.
    Mozilla Firefox is installed, but how do I get your Calendar program showing up under Tools, like it did on my first laptop?

    I don't think it was a Google Calendar program. It came some time (years) ago with Mozilla Firefox. Its name may have included "Reminders". Originally, the icon of a ribbon showed up on the top of the browser, like next to "Help". You clicked on it there you got the Calendar. A few months ago, the ribbon icon disappeared and you had to click on "Tools" and that program showed up in about the 4th position. I think the data was stored on the Web, and therefore I was hoping to recover it.
    Sorry, I don't know what Thunderbird is or Lightning.
    Thanks for trying to help,
    Joost Mortelmans

  • Calendar program has dropped all my calendars and appointments.

    For some reason my calendar program on my iPad has lost all my calendars and appointments. The one for my iMac, Macbbook Pro and iPhne are still ok. What do I do now? How do I force it to sync up again? Any help appreciated.

    What are you syncing from? Your Mac or an email system like Exchange?

  • Sync 3rd party calendar program installed on palm to outlook to bb?

    as the subj line states...
    i have a palm t/x running a 3rd party calendar program (calendarscope) which i sync from my desktop because that is where the master is.
    from research i understand that i have to sync my palm calendar program with outlook using the import function in outlook, then sync (convert) it with my bb using the switch device wizard?
    as of right now, when i click on the switch device wizard, my select desktop organizer cannot be chosen as the whole screen is grey and won't let me chose any of the 2 options.
    i need help PLEASE!

    anyone?????????????????????????????????

  • What is the wisdom of a calendar program that wrongly changes appt times?

    Does anyone know why the iCal program doesn't have safeguards to "lock" appointment dates and times a user sets?
    This week has to be a real eye opener for hundreds if not thousands of Mac users whose appointment times were changed by the DST patch.
    After the Daylight Savings Time patch, my clock was correct but my appointment times were changed--ALL WERE MOVED FORWARD ONE HOUR. In other words a 10:00 am appointment now reads 11:00 am.
    1.) Has this been addressed by Apple?
    2.) Is this a problem with all OS versions and all iCal versions?
    3.) Finally, if a calendar can't keep times, what good is it?
    Does anybody have the definitive answers to these questions?
    I'd love to hear Apple has changed this in later versions of iCal. Otherwise, I have to start looking for a new calendar program. I just about lost a major contract yesterday because I showed up at the wrong time because of iCal.
      Mac OS X (10.4.9)   also use Mac OS X (10.4.3) and .Mac

    Robert,
    I'm hoping this was a problem addressed by Apple and that because I synced with an older version of ical it came up. In looking through past posts, most are from last year. Your problem was mentioned in past posts. I don't change my times so I haven't seen that problem--use when my clock was adjusted for DST.
    I'm looking for someone who knows more about it.

  • Any other calendar programs for iPod?

    I wanted a stand-alone calendar program, so I downloaded mozilla sunbird. Unfortunately, I am finding that it says 'Microsoft Outlook must be installed in order to synchronize calendars'. Outlook is crap. Is there any fix to get my sunbird calendars on it?

    I am looking too. I would rather not use Outlook for anything. Support of Sunbird and Thunderbird would be awesome. I know Apple has ties to Google so Google Calendar and Gmail would be nice too.

  • Can I download holiday, moon, sun calendars to the apple calendar program?

    I'd like to add holidays, moon, and sun information to my calendar program. Is there a way to do this?

    http://www.apple.com/downloads/macosx/calendars/
    There may be more other places. Just google or bing or whatever search you'd prefer.

  • TS2198 ical (the calendar program) that came with this apple mac pc suddenly stopped working, then disappeared from the computer, from the desktop where I have been using it for the past two years, without trouble, then from the list of applications. . .

    ical (the calendar program) that came with this apple mac pc suddenly stopped working. When I pulled the icon from the desktop, it then disappeared from the computer.I have been using it from the desktop for the past two years, without trouble. It has uninstalled itself, without my intervention and has eradicated all traces of it, including all my entries from the computer memory. There is no program in the applications list. Can you say why this may have happened please?

    I opened one of the .calendar folders. There was a folder named Events which had either one or some files ending .ics. I opened several of these, which put up a dialogue window showing some parameters with data strings attached as follows :-
    BEGIN:VCALENDAR
    VERSION:2.0
    PRODID:-//Apple Inc.//iCal 4.0.4//EN
    CALSCALE:GREGORIAN
    BEGIN:VEVENT
    CREATED:20110824T070048Z
    UID:6AAAB8A2-64C7-4E88-8E5E-46A4D1036544
    DTEND;TZID=Europe/London:20110824T104500
    TRANSP:OPAQUE
    SUMMARY:Try to avoid general urticaria triggers such as stress\, alcohol
    \, aspirin\, hot baths\, rapid temperature changes\, tight clothing and
    junk or processed foods containing sulphur dioxide\, sodium benzoate\, s
    alicylate and tartrazine.\n\nAvoid tomatoes\, strawberries\, strong chee
    se\, dark fish and fermented foods.
    DTSTART;TZID=Europe/London:20110824T094500
    DTSTAMP:20110824T070102Z
    X-APPLE-EWS-BUSYSTATUS:BUSY
    SEQUENCE:2
    END:VEVENT
    END:VCALENDAR

  • Calendar program with mapping of holidays

    n KDE 4.5 it is possible to turn on the holidays in the calendar, is there a program-analog, which will include holidays, not tied to a DE, probably console app?

    Did you check the repositories and the AUR?
    pacman -Ss calendar
    http://aur.archlinux.org/packages.php?O … _Search=Go
    Also, this is not a GNU/Linux Discussion, moving to Workstation User.

  • This just about the calendar program on my mini. Random alarm failure

    My calendar is seemingly deciding is some arcane way to fail to deliver some of the alarms that I set...which are many. I'm old and need those things to function. The calendar has a lot of stuff on it..I use only one...my home calendar. I haven't been able to detect any rhyme or reason to which things work and which don't.
    Can anyone come up with a reason and/or a solution?
    Thanks.

    Yes, same problem with my ipad2.

Maybe you are looking for

  • How do I set a preference for opening one of multiple email accounts first?

    I have multiple email accounts and prefer to open one of them first when I open the email app.  After setup of all my email accounts the app is opening one of the accounts that is not my preference even though I setup my preferred account as the defa

  • HT201364 Need help to install Mavericks

    I bought my macbook in July 2008. I have just installed Snow Leopard and its running. There are no more updates to install, still it won't download OS X Mavericks. What else do I need to do. I would like to order a photobook I made.

  • Help, my chart-problem columns

    hello. i used adobe flex build 3.0. Now i had problem about my chart i want to create LineChart. I have date. And my date update  minute by minute. My chart  have 16 spaces : (8h-9h), (9h-10h)....(22h-23h). I want my chart show as the picture blow: O

  • Reports Builder won't start (iDS 9.0.4 on RHEL 3.0)

    I have just completed a fresh install of Developer Suite 9.0.4 on RedHat Enterprise Linux 3.0. The Forms builder (f90desm) runs fine but the Reports builder (rwbuilder) gives the error below. This server also has Oracle 9i DB and the Forms and Report

  • Performance issue EP on Sun Solaris

    Hi All, I have a EP NW04 SR1 installation on Sun solaris 5.9 machine , single CPU. When i stop the EP server , the idle time on the server shoots up to 98%. On the r other hand when i run "startsap" ( the server is just starting) , the idle time come