Java-specific way to show and select dates on a calendar in JSP?

I need my JSP to show a calendar and let a user choose a date. However, I know this is normally done in Javascript and I don't want to use Javascript ever. Is there an all-Java/HTML way to do this? Thanks.
Ken

try dis code out this may help....
<%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" errorPage="iCardsErrorPage.jsp" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
     <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
     <title>Choose Day</title>
     <script language="javascript">   
          function gotoPage()
               var year = document.selectdate.year.options[document.selectdate.year.selectedIndex].value;
               var month = document.selectdate.month.options[document.selectdate.month.selectedIndex].value;
               if ((month=="")||(month==null))
                    alert("Please enter a month and year.");
                    return false;
               if ((year=="")||(year==null))
                    alert("Please enter a month and year.");
                    return false;
               document.location = 'selectdate.jsp?year='+year+'&month='+month+'&formName=<%= request.getParameter("formName")%>&where=<%= request.getParameter("where")%>';
     </script>
</head>
<body bgcolor="#999999">
     <%@ page import="java.util.Calendar" %>
     <%@ page import="java.util.Date" %>
     <%@ page import="java.util.GregorianCalendar" %>
     <form name="selectdate">
     <%
          Calendar calendar = new GregorianCalendar();
          Date trialTime = new Date();
          calendar.setTime(trialTime);
          Calendar calendar2 = new GregorianCalendar();
          calendar2.set(calendar.get(Calendar.YEAR), calendar.get(Calendar.MONTH), 1);
          int today = calendar.get(Calendar.DAY_OF_MONTH);
          int currentYear = calendar.get(Calendar.YEAR);
          String Month = "";
          int daynum= 1;
          int column = 1;
          int row = 1;
          int year = 0;
          int month = 0;
          String y = request.getParameter("year");
          if (y==null)
               year = calendar2.get(Calendar.YEAR);
          else
               year = Integer.parseInt(y);
               calendar2.set(year,calendar2.get(Calendar.MONTH),1);
          String m = request.getParameter("month");
          if (m==null)
               month = calendar2.get(Calendar.MONTH);
          else
               month = Integer.parseInt(m);
               calendar2.set(calendar2.get(Calendar.YEAR),month,1);
          int firstDay = calendar2.get(Calendar.DAY_OF_WEEK);
          switch (month)
               case Calendar.JANUARY: Month = "January";break;
               case Calendar.FEBRUARY: Month = "February";break;
               case Calendar.MARCH: Month = "March";break;
               case Calendar.APRIL: Month = "April";break;
               case Calendar.MAY: Month = "May";break;
               case Calendar.JUNE: Month = "June";break;
               case Calendar.JULY: Month = "July";break;
               case Calendar.AUGUST: Month = "August";break;
               case Calendar.SEPTEMBER: Month = "September";break;
               case Calendar.OCTOBER: Month = "October";break;
               case Calendar.NOVEMBER: Month = "November";break;
               case Calendar.DECEMBER: Month = "December";break;
          }      %>
            <TABLE border="0" cellpadding="0" cellspacing="0" WIDTH="200" ALIGN="LEFT" >
              <TR>
                     <TD ALIGN="CENTER" COLSPAN="4" >
                         <SELECT NAME="month" SIZE="1" ONCHANGE="gotoPage();return false;">
                              <OPTION VALUE="0" <% if (month==0){%>SELECTED<% } %>>Jan</OPTION>
                              <OPTION VALUE="1" <% if (month==1){%>SELECTED<% } %>>Feb</OPTION>
                              <OPTION VALUE="2" <% if (month==2){%>SELECTED<% } %>>Mar</OPTION>
                              <OPTION VALUE="3" <% if (month==3){%>SELECTED<% } %>>Apr</OPTION>
                              <OPTION VALUE="4" <% if (month==4){%>SELECTED<% } %>>May</OPTION>
                              <OPTION VALUE="5" <% if (month==5){%>SELECTED<% } %>>Jun</OPTION>
                              <OPTION VALUE="6" <% if (month==6){%>SELECTED<% } %>>Jul</OPTION>
                              <OPTION VALUE="7" <% if (month==7){%>SELECTED<% } %>>Aug</OPTION>
                              <OPTION VALUE="8" <% if (month==8){%>SELECTED<% } %>>Sep</OPTION>
                              <OPTION VALUE="9" <% if (month==9){%>SELECTED<% } %>>Oct</OPTION>
                              <OPTION VALUE="10" <% if (month==10){%>SELECTED<% } %>>Nov</OPTION>
                              <OPTION VALUE="11" <% if (month==11){%>SELECTED<% } %>>Dec</OPTION>
                       </SELECT>
                         <SELECT NAME="year" SIZE="1" ONCHANGE="gotoPage();return false;">
                              <OPTION VALUE="<%= currentYear-2 %>" <% if (year==currentYear-2){%>SELECTED<% } %>><%= currentYear-2 %></OPTION>
                              <OPTION VALUE="<%= currentYear-1 %>" <% if (year==currentYear-1){%>SELECTED<% } %>><%= currentYear-1 %></OPTION>
                              <OPTION VALUE="<%= currentYear %>" <% if (year==currentYear){%>SELECTED<% } %>><%= currentYear %></OPTION>
                              <OPTION VALUE="<%= currentYear+1 %>" <% if (year==currentYear+1){%>SELECTED<% } %>><%= currentYear+1 %></OPTION>
                              <OPTION VALUE="<%= currentYear+2 %>" <% if (year==currentYear+2){%>SELECTED<% } %>><%= currentYear+2 %></OPTION>
                       </SELECT>
                    </TD>
              </TR>
              <TR valign="top" >
                     <TD valign="top" align="left" class="header" WIDTH="20%"> </TD>
                     <TD valign="middle" colspan="2" ALIGN="CENTER" class="header" WIDTH="60%">
                         <font style="font-family:Verdana, Arial, Helvetica, sans-serif" style="font-size:12px" style="font-weight:normal" style="color:#FFFFCC" style="vertical-align:middle"><%= Month %> <%= year %></font>
                    </TD>
                     <TD valign="top" align="right" class="header" WIDTH="20%"> </TD>
              </TR>
              <TR>
                     <TD CLASS="FORMTABLE" COLSPAN="4">
                         <TABLE border="0" cellpadding="0" cellspacing="0" WIDTH="100%" >
                         <!--<TR>
                                   <TD CLASS="FORMTABLE" ALIGN="RIGHT"><B>Year</B></TD>
                              <TR>
                                   <TD COLSPAN="7" ALIGN=center CLASS="FORMTABLE"><B>
                                   <%= Month %> <%= year %></B></TD>
                              </TR>-->
                              <TR>
                                <TD ALIGN=center><font style="font-family:Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF" style="font-size:14px">Sun</font></TD>
                                   <TD ALIGN=center><font style="font-family:Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF" style="font-size:14px">Mon</font></TD>
                                   <TD ALIGN=center><font style="font-family:Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF" style="font-size:14px">Tue</font></TD>
                                   <TD ALIGN=center><font style="font-family:Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF" style="font-size:14px">Wed</font></TD>
                                   <TD ALIGN=center><font style="font-family:Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF" style="font-size:14px">Thu</font></TD>
                                   <TD ALIGN=center><font style="font-family:Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF" style="font-size:14px">Fri</font></TD>
                                   <TD ALIGN=center><font style="font-family:Verdana, Arial, Helvetica, sans-serif" color="#FFFFFF" style="font-size:14px">Sat</font></TD>
                              </TR>
                              <TR>
                           <%
                                   int maxdays = calendar2.getActualMaximum(Calendar.DAY_OF_MONTH);
                                   String max = String.valueOf(maxdays);
                                   while (daynum<=maxdays)
                                        if (row==1)
                                             for (int j=1; j<firstDay; j++)
                                             { %>
                                               <TD ALIGN=center> </TD>
                                               <%
                                                       column++;
                                        while ((column<8)&&(daynum<=maxdays))
                                        { %>
                                          <TD ALIGN="CENTER"><font style="font-family:Verdana, Arial, Helvetica, sans-serif" style="color:#FFFFFF" style="font-size:14px" style="cursor:hand"><A onclick="sendDate('<%= daynum %>'); return false;"
                                             <%
                                                  if ((calendar.get(Calendar.MONTH))==(calendar2.get(Calendar.MONTH)) &&
                                                     (calendar.get(Calendar.YEAR))==(calendar2.get(Calendar.YEAR)) &&
                                                     (calendar.get(Calendar.DAY_OF_MONTH))==daynum)
                                                  { %>
                                                       CLASS="RED"
                                              <% } %>><%= daynum %> </A></font></TD>
                                               <%
                                                  column++;
                                                  daynum++;
                                        if (column!=8)
                                             for (int j=column; j<8; j++)
                                             { %>
                                               <TD ALIGN="CENTER" > </TD>
                                     <%  }
                                        } %>
                              </TR>
                              <%
                                   if (daynum<maxdays)
                                   { %>
                                        <TR>
                                <% }
                                   column=1;
                                   row++;
                                   } %>
                       </TABLE>
                    </TD>
              </TR>
            </TABLE>

Similar Messages

  • Is there a way to show the end dates of the previous month stand out?

    is there a way to show the end dates of the previous month in bold or make it stand out? so 30,31 and 1st of this month don't all look the same? For example the 30,31st get a regular text since they are a part of the the last month and this month gets bold dates? Its hard to read the dates anyways.

    Pics and more
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.
    5:05 PM Sunday; January 4, 2009

  • Best way to show the following data?

    Hi Experts,
    I am designing a validation solution in java webdynpro.
    I need to process 1000 records against certain logic and need to show the errors in the interface..Each record has more than 30 columns. I would like to get your suggestions on,
    1. How to display 1000 records with nearly 30 columns? A normal table with scrolling is enough or i need to split into 2 or 3 tabs based on some grouping and show these 1000 records?
    2. What would be the best way to show the error messages on these records?, Is it advisable to show the error messages on a tooltip? Is it possible to show a tooltip for each record in a table?
    Any suggestions would be really helpful for my work...
    Thanks in advance..
    Regards,
    Senthil
    Edited by: Senthilkumar.Paulchamy on Jun 23, 2011 9:18 PM

    Hi,
    Depending on your data would use a TableColumnGroup to group your 30 columns under a common header (displaying only the most significant data)
    Expanding the row would then show all 30 columns' data
    To display the errors, I would display the common header rows in bold red to make them stand out from the non-erroneous rows.
    Furthermore, I would add a toggle button, to alternate between 'all records' and 'erroneous records only'
    Best,
    Robin

  • Best way to export and import data from an iPhone app?

    How do people here prefer to export and import data from an iPhone app?
    For example, suppose your app creates or modifies a plist. It might be nice to provide that plist to the user for separate backup and later allow them to re-import it.
    How do people do that? Email the plist to an address? If so, how would one later get it back in?
    Is there a common way people do this kind of thing?
    Thanks,
    doug

    Or maybe the best approach for this is some sort of file synchronization feature? Is there a way of having files from the app's filesystem automatically get stored on the computer's filesystem when synchronizing and vice-versa?
    doug

  • Best way to control and read data from multiple instruments?

    Hello,
    I'm building an application to test power supplies involving multiple pieces of equipment over a couple of different comm busses. The application will also send control instructions to some of the instruments, and read data from some of the instruments. The reading and control profiles will not run on the same schedule (variable length control steps, configurable read interval).
    I was thinking of using a queued statemachine (producer/consumer) for the control profile and another to read the data, but I got concerned that there would be collisions between sending control commands and read commands to the same machine. Is there a suggested design pattern for implementing something like this?
    Timing of the commands isn't critical down to the milisecond, but I need to collect reasonably accurate timestamps when the data is read. The same is true for the control commands.
    Here are the instruments I'm going to use, if the are control, read, or both, and the communication method
    Instrument Funtions Comm Method
    Power Supply Read data Communicates to PMBus Adapter
    PMBus to USB Adapter Read data USB (Non-Visa)
    Switch control relays USB (VISA)
    Power Dist. Unit read data/control outlets SNMP (Ethernet)
    Electronic Load read data/control load GPIB (VISA)
    Thermal Chamber read data/control temp Ethernet (VISA)
    Thanks,
    Simon

    Hello, there is a template in LV called "Continuous measurement and Logging".
    It can give you some idea how to properly decouple the "GUI Event handler" top loop (where your Event structure is) from the DAQ and other loops.
    You do not need to totally replicate the above example, but you can find there nice tricks which can help you at certain points.
    The second loop from the top is the "UI message loop". It handles the commands coming from the top loop, and regarding to the local state machine and other possible conditions and states, it can command the other loops below.
    During normal run, the different instrument loops just do the data reading, but if you send a control command from the top loop to a certain instrument loop (use a separate Queue for every instrument loops), that loop will Dequeue the control command, execute it, and goes back to data reading mode (in data reading mode the loop Dequeu itself with a "data read" command automatically). In this way the control and data read modes happen in serial not in parallel which you want to avoid (but I think some instrument drivers can even handle parallel access, it will not happen in really parallel...).
    In every instrument loop when you read a value, attach a TimeStamp to it, and send this timestamp/value couple to the DataLogging loop via a Queue. You can use a cluster including 3 items: Source(instrument)/timestamp/value. All the instrument loops can use the same "Data logging" Queue. In the Datalogging while loop, after Dequeue-ing, you can Unbundle the cluster and save the timestamp and data-value into the required channel (different channel for every instrument) of a TDMS file.
    (Important: NEVER use 2 Event structures in the same top level "main" VI!)

  • How to restrict user to select date from the calendar into a text item

    Hi All,
    I am using oracle 10g.IN a form i am having a block 'client_block' in that i am having a text_item ' entry_date' which is a datebase item and i have set enabled false in property palette and i created an image item on the same form and i have an calendar icon on it .In when_image_pressed trigger for image item i have written this code
    SET_ITEM_PROPERTY('CLIENT_BLOCK.ENTRY_DATE',ENABLED,PROPERTY_TRUE);
    DATE_LOV.Get_Date(sysdate,'CLIENT_BLOCK.ENTRY_DATE');
    This is working perfectly but user can enter or delete date into the text_item through keyboard i want to restrict that they can only select date from calendar.
    I have tried setting item property enabled false in triggers but it is not working.
    Can someone help me what trigger i have to use and how?.
    Thanks
    Sri

    Hi,
    This is working perfectly but user can enter or delete date into the text_item >>>through keyboard i want to restrict that they can only select date from calendarSet Insert allowed to 'NO' in property pallete of item ENTRY_DATE.
    In ON-ERROR Trigger::
    BEGIN
    DECLARE
    err_code CONSTANT NUMBER := error_code;
    err_type CONSTANT VARCHAR2(3) := error_type;
    BEGIN
    IF (err_type = 'FRM'
    AND err_code IN (40200)) THEN
    Message('Updates Not allowed, Please Select Your Date from Calendar');
    Message(' ');
    ELSE
    NULL;
    END IF;
    END;
    END;
    Thanks,
    Bhujendra

  • Chinese character Display for Date from Gregorian calendar in JSP

    Hi
    I am doing internationalization for my JSPs, as part of that i am doing character encoding to utf-8(for chinese/japanese). Evrything is fine..
    Now the problm is i am displaying gregorian calendar to select date in a small window using some javascript code...
    For default encoding it is working fine....for utf-8 or other encoding it is raising error.(may be javascript)and also the date is nto displaying properly..i think the problem would be in javascript/.
    So can you pls tell me how to over come this problm...
    thanks in adance...
    regards
    bhaskar

    Sorry ..forgot to include the output...
    this is the output i am getting instead of 29-Nov-2005 00:00:00
    29-A-2005 00:00:00

  • What is the Best way To Copy and paste data from 1 book to another

     I have 18 sheets in 5 different books that I want to extract data from specific cells.  What is the best way to do this?  Example:  1 sheet is called Numbers E-O1 data in 13:WXYZ. The data updates and moves up 1 row every time I enter
    a new number. So let's say I enter the number 12. Through a lot of calculations the output goes in 13:WXYZ. To what I call a counter which is a 4 digit number.  Anyways, how can I send that 4 digit number to a totally different sheet?  To bullet
    what I'm talking about
    data in cells Row 13:WXYZ in book called Numbers sheet E-O1
    send data to book called "Vortex Numbers" Sheet E-O row 2001:CDEF
    What formula or Macro can I use to make this work?
    thank you!

    Hello Larbec,
    Syntax:
    '[BookName]SheetName'!Range
    Enter in cell  2001:CDEF:
    ='[Numbers]E-O1'!13:WXYZ
    This assumes that the file is open in Excel. Otherwise you need to add the path:
    'ThePath[BookName]SheetName'!Range
    Best regards George

  • Best way to show movie release date by year under "Movies" section

    I am a proud owner of a new 2nd gen Apple TV. It does everything I hoped. I am using IDentity 2 to capture the movie Metadata and import into a new m4v file. All data is trnsferred into iTunes. The question: What is the best way to have the release year show in Apple TV? I currently have a description, actor, director, time, etc showing. The Metadata is taken from IMDB, so the release date is listed in the video description when I "get info" in iTunes. As you can imagine, I don't want to manually input the release year in every movie file name. Any suggestions?

    No asnswer. I can't find an answer on the web either. How many more years till Apple fixes this?

  • What is the best way to load and convert data from a flat file?

    Hi,
    I want to load data from a flat file, convert dates, numbers and some fields with custom logic (e.g. 0,1 into N,Y) to the correct format.
    The rows where all to_number, to_date and custom conversions succeed should go into table STG_OK. If some conversion fails (due to an illegal format in the flat file), those rows (where the conversion raises some exception) should go into table STG_ERR.
    What is the best and easiest way to archive this?
    Thanks,
    Carsten.

    Hi,
    thanks for your answers so far!
    I gave them a thought and came up with two different alternatives:
    Alternative 1
    I load the data from the flat file into a staging table using sqlldr. I convert the data to the target format using sqlldr expressions.
    The columns of the staging table have the target format (date, number).
    The rows that cannot be loaded go into a bad file. I manually load the data from the bad file (without any conversion) into the error table.
    Alternative 2
    The columns of the staging table are all of type varchar2 regardless of the target format.
    I define data rules for all columns that require a later conversion.
    I load the data from the flat file into the staging table using external table or sqlldr without any data conversion.
    The rows that cannot be loaded go automatically into the error table.
    When I read the data from the staging table, I can safely convert it since it is already checked by the rules.
    What I dislike in alternative 1 is that I manually have to create a second file and a second mapping (ok, I can automate this using OMB*Plus).
    Further, I would prefer using expressions in the mapping for converting the data.
    What I dislike in alternative 2 is that I have to create a data rule and a conversion expression and then keep the data rule and the conversion expression in sync (in case of changes of the file format).
    I also would prefer to have the data in the staging table in the target format. Well, I might load it into a second staging table with columns having the target format. But that's another mapping and a lot of i/o.
    As far as I know I need the data quality option for using data rules, is that true?
    Is there another alternative without any of these drawbacks?
    Otherwise I think I will go for alternative 1.
    Thanks,
    Carsten.

  • Best way to browse and read data from a lot of files?

    Hi All,
    I am trying to read tags from music files. Currently I'm listing all the files and then reading through the tags, as below:
    List<File> result = new ArrayList<File>();
    FilenameFilter mp3filter = new FilenameFilter() {
         public boolean accept(File dir, String name) {
              return name.endsWith(".mp3");
    FilenameFilter wmafilter = new FilenameFilter() {
         public boolean accept(File dir, String name) {
              return name.endsWith(".wma");
    FileFilter dirFilter = new FileFilter() {
         public boolean accept(File file) {
              return file.isDirectory();
    File[] dirList = aStartingDir.listFiles(dirFilter);
    File[] mp3files = aStartingDir.listFiles(mp3filter);
    File[] wmafiles = aStartingDir.listFiles(wmafilter);
    List<File> filesDirs = Arrays.asList(dirList);
    List<File> filesMp3 = Arrays.asList(mp3files);
    List<File> filesWma = Arrays.asList(wmafiles);
    for (File file : filesMp3) {
         result.add(file);
    for (File file : filesWma) {
         result.add(file);
    for (File file : filesDirs) {
         List<File> deeperList = getFileListing(file);
         result.addAll(deeperList);
    }and then read the files in a for loop through the list.
    Is there a better way to do the same?

    Well, you could optimize that just a little bit by only calling listFiles once with a filter that would accept directories, wmas, and mp3s all in one go. Then you could iterate through the results and separate them into the three categories after you had the complete recursive directory listing. That may be faster. But your OS will likely cache the results of the directory listing, thus minimizing the effort of your current approach. But honestly, no... you need the headers from every file, so you'll need to find each file and then check the headers.
    If you want, you can cache the results somewhere for future reference. Are you concerned about performance or some such?

  • Best way to store and retrieve data in a text file

    I want to write to a text file and then in another Applescript read the same data into an array
    I'll have 5 lines of text data
    What would be the best format?
    CSV?
    XML maybe?
    Just a plain file with each line of data separated by pressing enter?
    Thanks
    Omar

    I agree with Frank - for just 5 lines, simple text is probably sufficient.
    However, if the point is just to pass data between two AppleScripts you could even use native AppleScript objects - for example, you could write the list (array) to the file and then read it back in directly, e.g:
    Write the data:
    -- create a list of any types:
    set myList to {"a string", 3.14159, "foo", {name:"Joe", age:21}}
    -- create a file
    set f to open for access (choose file name) with write permission
    -- write your (binary) data to it
    write myList to f
    -- and close the file
    close access f
    Now, separately, you can read it back:
    set x to read (choose file) as list

  • SSRS Line graphs, change the axis maximum and minimum by month, and change data series from calendar year to financial year

    I am using SSRS and I cannot access SQL server to answer my problem, so the solution needs to be done via SSRS only.
    I am currently trying to graph some data. The problem is, the months on the X axis are aligned by calendar year. I need the first month to commence with July, with the last month on the axis to be June. This also means that the year series need to be changed
    from calendar year to Australian financial year.
    Screenshots are provided in the comments.

    Hi Northern,
    Per my understanding that you want to show the month in the x axis as the order of the financial year(7,8,9,10...4,5,6) and also display the year in the series group as the financial year, right?
    I have tested on my local environment and we can modify the query in the sql to get the financial year value based on the fields of Calendar year, details information below for your reference:
    1. Modify the query as below:
    SELECT
    Calendar_Date,CASE WHEN MONTH(Calendar_Date)>=7 THEN
    YEAR(Calendar_Date)+1
    ELSE YEAR(Calendar_Date) END AS Financial_Year,
    MONTH(Calendar_Date)as Financial_Month,
    Billing_Amount
    FROM TableName
    order BY
    Calendar_Date
    2. Add the "Billing_Aomount" in the Value area, "Financial_Month" in the Category group area and "Financial_Year" in the Series group area.
    3. Right click the  "Financial_Month" under the Category group to select the "Category group properties",click the sorting and add below expression in the Sort by to specify the order for the month in the x-axis:
    =switch(Fields!Financial_Month.Value="7",1,Fields!Financial_Month.Value="8",2,
    Fields!Financial_Month.Value="9",3,Fields!Financial_Month.Value="10",4,
    Fields!Financial_Month.Value="11",5,Fields!Financial_Month.Value="12",6,
    Fields!Financial_Month.Value="1",7,Fields!Financial_Month.Value="2",8,
    Fields!Financial_Month.Value="3",9,Fields!Financial_Month.Value="4",10,
    Fields!Financial_Month.Value="5",11,Fields!Financial_Month.Value="6",12)
    4. Preview you will get the sample chart display as below according to my sample data:
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Change Color on selected date in APEX calendar

    Hello all,
    Does anyone know that how to change the background color of the date once it has been clicked?

    Swetha
    I created an application using Apex. It is a calendar application to show events that are happening. I ran into an issue with it
    If there is an event that occurs during an interval like August15 - August22, the event is shown only on August15, which is the first day of the event. I would like to show it in all days from August15-22.
    Here are the items coming from the page
    event_id number,
    employee_id number
    date_from date,
    date_to date,
    due_date date,
    act_id number,
    act_loc varchar2,
    reminder varchar2,
    frequency varchar2,
    division varchar2,
    event_status varchar2
    I am looking to write a process / procedure where it can show the same event on all the days it is occurring
    Thanks in advance
    Latha

  • HT2623 My information on me. Com address and other data such as calendar, notes and reminders have disappeared as well as contact named for my contacts. Any ideas?

    Hi
    Over the last five days my iphone4s has lost the following data: contact names, reminder notes details,
    Notes data. Some of this information is sensitive. IE password and bank details ( coded)  so I would like to know how to retrieve it. All sensible replies would be gratefully received.

    Hi
    Over the last five days my iphone4s has lost the following data: contact names, reminder notes details,
    Notes data. Some of this information is sensitive. IE password and bank details ( coded)  so I would like to know how to retrieve it. All sensible replies would be gratefully received.

Maybe you are looking for