Calendar in APEX 3.0.1

Is it possible to have a build in calendar display months in other languages?
Thanks,
Art
P.S.
I've got the show name option checked in but my name doesn't appear anyway.

http://forums.oracle.com/forums/ann.jspa?annID=283

Similar Messages

  • Google Calendar with Apex

    Hi Friends,
    Any one tell me How to integrate google calendar with Apex.
    Thanks

    Hi 805629,
    Please see the following: http://www.google.com/intl/en/googlecalendar/event_publisher_guide.html#site
    Ta,
    Trent

  • Is there a way to Integrate Oracle calendar with Apex

    Hi
    I'm using APEX 3.2. Is there a way to integrate Oracle Calendar (workspace calendar) with Apex?

    Yes, Just sync them to the same calendar on your computer or internet, i.e. Google, Yahoo, etc.

  • Time Interval for Daily Calendar in APEX 3

    Hi,
    we're looking at upgrading to Apex 3 and I have a question about the Daily Calendar time interval. Is there a way to change the interval to say, 15 minutes from the default 1 Hour?
    Cheers
    Kofi

    Hello Kofi,
    "Now looking at what I can see on apex.oracle.com, are you saying we'd just have to modify the daily calendar template?"The template only control the look of the calendar, not its functionality. If the default daily view meets your needs, you don't have to define any new templates.
    "I'd imagine that the whatever is creating the tags that will be displayed by the template needs changing to incorporate the other 15 minute cells I would add"Most of the calendar functionality you can control can be defined on the "Calendar Attributes" tab. The most important is the date column. If this column includes reference of time (on top of the date, of course) the APEX engine will automatically associate your entry with the proper "Hour" row. You are not adding cells. You are adding calendar entries. If several of these entries share the same hour slot, APEX will put all of then in the same row.
    The best way to understand it is simply define these entries. As I understand, you have access to apex.oracle.com, so it shouldn't be a problem.
    Regards,
    Arie.

  • Diplay TImestamp in Daily calendar in APEX

    Hi,
    I want to display appointments within the time row in an apex calendar (daily and weekly view). With the Date picker I can choose a time which is stored correctly in the timestamp of my table. But I did not find a way to use the saved time to display the specific item in the time row it is concidered for. The Items are always displayed at 0:00. Time is completely ignored.
    I was searching hours to find out the issue but did not find a solution yet. I'm sure it's quite simple but I don't see the answer.
    Can anybody help?
    Thank you in advance.

    What are you using as your date column for the calendar region?
    Your data is fine and your select is not truncating the time. I am not really sure what is causing the problem, The only thing I can think of now is either the calendar template has been modified or there is a random problem with the region.
    Try to make a basic calendar on this table on a different page. You may have to just recreate the region or you can go through the motions and import the app to apex.oracle.com and i can look at it.
    Cheers,
    Tyson Jouglet

  • 4.0 Calendar link 'length is null or not an object'

    After upgrading to 4.0 earlier this week, we now have a problem with our calendars that were built in 3.1.1. Whenever I click on an event link in IE i get the error "length is null or not an object". When I click the link from Firefox I get the error "b is undefined" from the apex_widget_4_0.js file. After reading the user guide for 4.0, I deleted the region and re-added it with the same SQL, but I get the same error.
    Any ideas on how to fix this?
    Thanks,
    Jonathan
    Edited by: YodaHart on Jul 21, 2010 12:40 PM

    Hi,
    It will be great if you can point to the url where you are facing this issue maybe a url from apex.oracle.com. The comment like clicking on event is throwing an error is confusing, here which event you are talking about.
    I created a calendar in apex.oracle.com of various types SQL Calendar, SQL Calendar with Partial Page Refresh as display type, Easy Calendar , Easy Calendar with partial Page refresh as Display Type and all these calendar provided with day and column link and did not get any issues as specified.
    It will really helpful if you can provide a URL in apex.oracle.com or any other site with the specified issue and also with clear explanation of what "clicking on event" means here
    thanks
    JS

  • DHTML Calendar

    Has anyone of you experienced any problems with DHTML Calendar and ApEx 3.0? I
    installed the files as required, created shortcuts, included the required string in the page
    header and when I try to click on the calendar icon, I receive the following error:
    Calendar._TT has no properties
    Calendar(1, Thu Apr 26 2007 09:46:59 GMT+0200, onSelect(cal), function())calendar.js (line 32)
    (no name)()calendar-setup.js (line 164)
    [Break on this error] this.dateFormat = Calendar._TT["DEF_DATE_FORMAT"];
    I used the same procedure as described here:
    http://htmldb.oracle.com/pls/otn/f?p=18326:54
    Denes Kubicek

    Hi Denes,
    Your link is broken.
    I assume is this "http://htmldb.oracle.com/pls/otn/f?p=18326:54:2243586845924305::::P54_ID:2102"
    Using a DHTML calendar by GUIDO ZEELEN.
    Had installed and works as documented.
    Note:
    US Users: You may have to download an addition file to put in the /i/calendar/lang directory for those whose language is set to en-us. You can right-click and save this link.
    The file had to be save is is name calendar-en-us.js.
    P.S.
    Using Apex 3.0 / Oracle 10G Windows 32 XP SP2
    HTH
    Zack Message was edited by:
    Zack.L

  • Change "Date" From a Column in Table A, to New Column in Table B:

    I'm trying to pull a Date from TABLE_A, and change the year to a current date, and popluate this into a new table. I also want to pull the PK of TABLE_A over, so that I can create a link back to the master record.
    In my example I'm useing SYSDATE for my current date. Once I get the script working, I want to pull the Calander_Date from my "Current Calendar" in APEX.
    1. INSERT INTO TABLE_B (NAME_ID,Date,New_Date VALUES (
    2. NAME_ID , (This is a Column FROM TABLE_A),
    3. DATE, (This is also a Colum From TABLE_A)
    4. TO_CHAR(DATE,'DD')||'-'||
    5. TO_CHAR(DATE,'MON')||'-'||
    6. TO_CHAR(SYSDATE,'YY') )
    7. FROM TABLE_A
    8 WHERE TO_CHAR(DATE,'MON') = TO_CHAR(SYSDATE,'MON');
    Needless to say, this doesn't work!!! I'm very new to SQL and APEX. I've also tried embedding SELECT STATEMENTS, as shown below, but still now dice (Trying to figure out out to calculate the TO_CHAR FROM DUAL and from TABLE_A for the "DATE" Column)
    1. INSERT INTO TABLE_B (NAME_ID,Date,New_Date VALUES (
    2. SELECT NAME_ID FROM TABLE_A,
    3. ELECT DATE FROM TABLE_A,
    4. SELECT TO_CHAR(DATE,'DD')||'-'||
    5. SELECT TO_CHAR(DATE,'MON')||'-'||
    6. SELECT TO_CHAR(SYSDATE,'YY') ) FROM
    7. FROM NAMES
    8 WHERE TO_CHAR(DATE,'MON') = TO_CHAR(SYSDATE,'MON');
    Depending on the modifications I make I usually get the following two errors:
    ORA-0933: SQL Command not properly ended (in the first example)
    ORA-00936: Missing Expression (in the second example).
    Appreciate any thoughts you all might have!!!
    LEONHARK

    So here's a question: are the different pieces of the day stored in the same column in Table A, or different columns? If they are the same, you can simplify a lot of your data copy procedure to:
      insert into TABLE_B (NAME_ID, SOME_DATE, NEW_DATE)
       values (select KEY_ID, to_date(ORIG_DATE,'DD-MM-YYYY') from TABLE_A
      where to_date(ORIG_DATE,'MM') = TO_DATE(SYSDATE,'MM'));If the dates are stored in individual fields in Table_A, use something like:
      insert into TABLE_B (NAME_ID, SOME_DATE, NEW_DATE)
       values (select KEY_ID, to_date(ORIG_DAY || '-' || ORG_MONTH || '-' || ORIG_YEAR,'DD-MM-YYYY') from TABLE_A
      where to_date(ORIG_DATE,'MM') = TO_DATE(SYSDATE,'MM'));An alternate for your where clause that uses a range of dates instead of a specific month is
      where to_date(ORIG_DATE,'DD-MM-YYYY') between TO_DATE('01-01-2007','MM-DD-YYYY') and TO_DATE('12-31-2007','MM-DD-YYYY');A couple of advantages: a date comparison is much faster than a string comparison and more accurate to what you want. Convert the strings to dates rather than the dates to strings. In my opinion, dealing with dates can be one of the biggest headaches for those learning SQL. There are a lot of good helps out there, but you will want to familiarize yourself with the TO_DATE() and TO_CHAR() functions, because you will use them a lot!
    Also, store dates as DATE datatypes! Do NOT store them as text! You will save yourself a lot of headaches and your queries will run much faster if you use DATE datatypes.

  • How can I change the event display in an APEX 4.2 calendar?

    Colleagues:  The APEX calendar feature is pretty neat, but of course there's a feature I'd like to use but can't find how/where to change it.  In other calendaring apps (e.g., Thunderbird) when an event is logged, like tomorrow's staff meeting, the time is blocked out vertically for the length of the event.  So for example: if staff is from 2pm-4pm, both 2-3 and 3-4 are colorized so a quick visual will show what times during the day are not available.
    The APEX calendar will show a colored bar for the start time of the event, but not a blocked-out vertical for the entire event.  Make sense?  Any way I can change the calendar/event view to accommodate this?
    Thanks for your help.
    Broc Norman II
    Sr DBA
    GIT / Hillsboro Manufacturing Site

    use - Region Plugin - SkillBuilders Calendar which is useful to display event as your requirement
    Try this.
    Pars.

  • Calendar configuration --- hard Apex 3.2

    Dear Apex Users!
    I'm trying use the apex. I have an aplication and i would like to make a dynamic calender. im imagine two calendar, i have a main calendar where i'm use a sql query. Whit my query i can write an message to every day in the calendar. And in my database, i have Msg table and Notice table. Every Msg's have a own Notice. Im use the date by primary key. And between the two table i have a foreign key.
    I'm made a new calendar for the Notice, because i made a link in the main calender from every day. My link is redirect me to the Notice calendar where i can watch the Notice in daily view.
    Unfortunately i have two problem. When i click to link' I look a monthly view from Notice calendar. I don't know where can delete the monthly and weekly view.
    My second problem is that. When i m click to link i would like to see the selected day. But im look the current day. Im try to resolve this 5 days ago.
    Please help me Anyone!
    I'm using Apex 3.2
    postscript: sorry for my English.
    Edited by: 789131 on Aug 18, 2010 12:11 AM
    Edited by: 789131 on Aug 18, 2010 12:28 AM

    On the Page where you have the Calendar you will find a Hidden item like P1_CALENDAR_TYPE. This item determines whether the view will be Monthly, Weekly or Daily. The default is Monthly.
    To directly show the Day view do this.
    1. Create a On Load Before Header Computation on (say) P1_CALENDAR_TYPE. Type Static Assignment
    2. Assign the Value D (upper case) to the item
    This will take you to the Daily View
    As for your 5 days ago, I am not sure why. Depends on the code.
    Regards

  • Is there a way to generate an .ics or .vcs file from an APEX calendar?

    In our APEX application, we have a calendar that we would like to be able to give the users a link to download an appointment so that they can save it to their personal calendars. Is this available functionality?
    Thanks,
    Karla

    We also wanted to return it as a BLOB to make it easier to use as an attachment, so our end code looked like:
    FUNCTION ical_event (  
       p_summary         IN VARCHAR2  
    , p_organizer_name  IN VARCHAR2  
    , p_organizer_email IN VARCHAR2
    , p_description     IN VARCHAR2  
    , p_start_date      IN DATE 
    , p_end_date        IN DATE 
    , p_version         IN VARCHAR2 := NULL 
    , p_prodid          IN VARCHAR2 := NULL 
    , p_calscale        IN VARCHAR2 := NULL 
    , p_method          IN VARCHAR2 := NULL 
       RETURN BLOB  
    AS    
       l_retval VARCHAR2(32767);  
       l_lf CHAR(2) := CHR(13)||CHR(10);
       result      blob := EMPTY_BLOB;
    BEGIN 
       l_retval := '' 
          || 'BEGIN:VCALENDAR' || l_lf  
          || 'VERSION:' || NVL(p_version,'2.0') || l_lf  
          || 'PRODID:' || NVL(p_prodid,'-/FDIC//NONSGML ICAL_EVENT//EN') || l_lf  
          || 'CALSCALE:' || NVL(p_calscale,'GREGORIAN') || l_lf  
          || 'METHOD:' || NVL(p_method,'REQUEST') || l_lf  
          || 'BEGIN:VEVENT' || l_lf  
          || 'SUMMARY:' || p_summary || l_lf  
          || 'ORGANIZER;CN="' || p_organizer_name || '":MAILTO:' || p_organizer_email || l_lf  
          || 'DESCRIPTION:' || p_description || l_lf
          || 'DTSTART:' || TO_CHAR(p_start_date,'YYYYMMDD') || 'T' || TO_CHAR(p_start_date,'HH24MISS') || l_lf  
          || 'DTEND:' || TO_CHAR(p_end_date,'YYYYMMDD') || 'T' || TO_CHAR(p_end_date,'HH24MISS') || l_lf  
          || 'DTSTAMP:' || TO_CHAR(SYSDATE,'YYYYMMDD') || 'T' || TO_CHAR(SYSDATE,'HH24MISS') || l_lf  
          || 'UID:' || RAWTOHEX(SYS_GUID()) || '@fdic.gov' || l_lf  
          || 'STATUS:NEEDS-ACTION' ||  l_lf  
          || 'END:VEVENT' || l_lf  
          || 'END:VCALENDAR';  
        dbms_lob.createtemporary(result, TRUE);
        dbms_lob.open(result, dbms_lob.lob_readwrite);
        dbms_lob.writeappend(result, length(l_retval), utl_raw.cast_to_raw(l_retval));
        dbms_lob.close(result);
       RETURN result;  
    END ical_event;Edited by: Fairfax_Al on Apr 20, 2009 8:16 AM

  • Display all dates between a start and end date on an Apex Calendar

    Hi Guys,
    I am encountering an issue where Apex doesn't display the data from a valid query in a Calendar.
    I have a simple table used to capture events data with the following columns and data:
    event_id   start_date   end_date
    1           20-APR-09   22-APR-09
    2           24-APR-09   24-APR-09Using an Apex Calendar I would like to display the continuous dates of an event on each relevant date, so in the above example I would like to see Event ID 1 shown on the 20th, 21st & 22nd April in the Calendar.
    I have created the following query :
    SELECT     ees.event_id,
               ees.start_date + LEVEL - 1 AS date_range
    FROM       dual
             , (SELECT ee.event_id,
                       (ee.start_date) AS start_date,
                       (ee.end_date)   AS end_date
                FROM   ees_event ee  ) ees
    CONNECT BY LEVEL <= (ees.end_date - ees.start_date + 1)the results from this query list the dates as I require them in terms of an ID and a row for each date in the date range.
    I then wrap this query into a view and use that to base an Apex Calendar on and the when I run the page nothing is displayed on the Calendar?!
    Does anyone have any tips or pointers please?
    Kind regards,
    stu

    A bit more digging and once again I have found my solution on Denes' website - thanks for such and excellent resource!
    Solution I have used can be found here:
    http://apex.oracle.com/pls/otn/f?p=31517:83:4441524250972745::NO

  • Altering an ApEx Calendar page

    Hello,
    I was wondering if it was possible to alter an ApEx calendar page in order to make it into a resource scheduling page. Instead of the days listed across the top, it would have a list of resources (like shared meeting rooms), then times would be listed in a vertical column, showing who was using what resources.
    Thanks!

    Hi,
    You can use something like this:
    http://www.moyosoft.com/joc/
    This is not Open-Source, it might be the case that Apache POI is working on something for Outlook now since Microsoft release the main API calls not too long ago.
    You will need the native library, and I assume somehow you can do a WebStart application to run the code in the client machine. Information regarding Java WebStart can be found on http://java.sun.com/javase/technologies/desktop/javawebstart/index.jsp
    I did not really investigate other ways of doing this, maybe there are better approaches.
    Also, take a look here http://java.sun.com/products/javamail/Third_Party.html
    Hope it helps,
    Daniel
    Edited by: Daniel Ruiz on May 3, 2010 1:11 PM

  • Repeating event in an apex calendar

    Hi all,
    I would like to have a repeating meeting let's say every day
    from 8 to 10 am
    what would be the best way to do this in apex calendar ?
    what I do now is 2 * 5 inserts, one for eacht weekday and one for 8 and one for 9 o'clock
    is there no between somewhere
    Kr
    Martin

    Hello Martin,
    Seems you have to check out [Dan McGhans|http://www.danielmcghan.us/] PlRecur package... It is available on SourceForge.
    Greetings,
    Roel
    http://roelhartman.blogspot.com/
    You can reward this reply by marking it as either Helpful or Correct ;-)

  • Apex Calendar synchronize with Google Calendar

    Hi Friends,
    i have create an calendar region and i have enter my new appointment details on 15 november at 3:00 Pm .
    Then these value would be show on my calendar .
    But i want to see this appintment in google calendar also.
    How Can i synchronize apex Calendar with google Calendar.
    How can i do this.
    Thanks

    Hi 805629,
    I don't have the exact answers to your questions... but some extra details might help others.
    i.e. Which way do you want to synchronize - google to oralce; oracle to google; both? Does it need to be automated?
    Not too sure how easy an automated synchronization would be. Check out this thread: Is there a way to generate an .ics or .vcs file from an APEX calendar? on exporting the ICS file (which you would be able to upload into Google Calendar).
    You may want to check out this site - http://code.google.com/apis/calendar/ - In particular, the Data API. You should be able to get your app to create events directly in the google calendar when you create them in APEX. But again, I haven't dealt with this.
    By the way, what is the reasons for wanting synchronization between a google calendar and an apex calendar? (as opposed to just having the google calendar embedded in your site)
    Good luck :-)
    Ta,
    Trent

Maybe you are looking for