APEX Calendar Help - I'm stuck!

Hello,
First let me preface this by saying I am not an APEX expert and have been learning on the fly for the past few weeks. As a trainer for my organization it was important to have a dynamic training and events calendar with some specific features. I found a pre-packaged [Sample Calendar|http://www.oracle.com/technetwork/developer-tools/apex/application-express/packaged-apps-090453.html] application, uploaded that and have modified it to fit about 90% of my needs. Here is where I am stuck:
1. I need to change how the events sort. I need alpha sorting, ideally.
2. I currently have two different calendar groupings, soon to be three. Meaning, I have some events labelled as Training & Events and others labelled as Birthdays. I would like to color code these on my calendar so that it is clear to users what is what. I know how to change the highlighting color of all events, but not how to specify based on an identifiable column in my table.
3. I created a page to reflect event details. When you click on a given event, it redirects to another page and shows the name, date, start time, web conference and dial-in details. The problem is the latter two items are showing blank when there is data in my table. Ideas?
Any help or guidance is greatly appreciated. I am using APEX 4.2.
Thank you,
Christina

Hi,
1. I need to change how the events sort. I need alpha sorting, ideally. - The current calendar design overrides your sorting and uses the Calendar date column instead. There is a workaround for this provided your Calendar is SQL based.
select display_column, cast(date_column as timestamp) + numtodsinterval('0.00' || rownum,'SECOND') shift_date, sort_column from
(select display_column, date_column, sort_column
from your_table
order by sort_column desc)
http://sathishkumarjs.blogspot.in/2013/05/trick-to-sort-apex-calendar-data-based.html
2. I currently have two different calendar groupings, soon to be three. Meaning, I have some events labelled as Training & Events and others labelled as Birthdays. I would like to color code these on my calendar so that it is clear to users what is what. I know how to change the highlighting color of all events, but not how to specify based on an identifiable column in my table. -
To acheive this yo need to modify the SQL statement with additional case statement to get the color of your choice and modify the display column as custom and add the column value as background/foreground color of your choice this needs some custom HTML / this also can be achieved by Modifying the Calendar Template. if needed will blog this with practical example.
3. I created a page to reflect event details. When you click on a given event, it redirects to another page and shows the name, date, start time, web conference and dial-in details. The problem is the latter two items are showing blank when there is data in my table. Ideas? -
If you mean some data columns displays correctly will others does not show data, want you to check the data source of those columns, whether it is similar to columns which work fine, if not want to know does the columns which does not display the value is in anyway related to display / date column used by calendar.
thanks
Sathish

Similar Messages

  • 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

  • Apex calendar report url problems

    Hi
    im having problems with the "day link" attribute in an apex calendar report.
    i have the calendar set up so that when you click the date in the calendar it sends the date formatted correctly to the date picker field in my create a new appointment page. so pre-populating the field as the page is loaded.
    initially i used the standard "page in this application" function and passed the substitute string #DD# #MON# #YYYY# to the date picker item P6_APT_DATE, setting the link to go to page 6 etc....
    this actually works fine but apex converts in into a URL
    f?p=&FLOW_ID.:6:&SESSION.::&DEBUG.:6:P6_APT_DATE:#DD#-#MON#-#YYYY#
    which does exactly the same thing. and both work perfectly
    However - nether are saved by apex? if i go back to edit the report the "day link" section is blank but both continue to work even when i refresh / re-cache the page.
    i have had similar happen in the past when the link isn't formatted correctly, the problem here is that it all works fine until you go back in to edit the calendar report, at which point the url / links vanish.
    im just starting out with apex so my apologies if i have missed anything obvious. any help would be appreciated
    regards - Solomon Hill
    Message was edited by:
    SolomonHill

    Solomon,
    I'm not sure exactly how your calendar page works, but the # character cannot appear in URLs except as an named-anchor reference.
    If you can show me your app on apex.oracle.com, I'll take a closer look.
    Scott

  • About APEX Calendar views (monthly, weekly, daily)

    Hi,
    How can I display a DAILY APEX CALENDAR?
    I read in some APEX-related articles that it is possible to have 3 different views: monthly, weekly, and daily.
    example 1. http://insum-apex.blogspot.com/2008/07/apex-calendar-enhanced-behavior.html
    example 2. http://examples.apex-evangelists.com/pls/apex/f?p=286:29:0:::::
    I tried to follow the directions given in one of those examples but I found out that the tags in my local environment differ from the ones shown in the example. I don't have the MONTHLY CALENDAR, WEEKLY CALENDAR and DAILY CALENDAR tabs mentioned in the example.
    Please help.

    Hi user10284066,
    Thank you for mentioning this link http://insum-apex.blogspot.com/2008/07/apex-calendar-enhanced-behavior.html
    in this forum. Helped a lot.
    For people who want to know where to find these tabs,
    Home>Application Builder>Application XXX>Shared Components>Templates
    select calendar and you must see those(monthly, weekly, daily) tabs under
    Home>Application Builder>Application XXX>Shared Components>Templates>Edit Calendar Template
    or upgrade to a newer version

  • Translate daynumber to date in APEX calendar

    Hello all,
    I've got a problem with a query for a calendar.
    My current customer has two tables to see wether or not an employee is available.
    One to see if an employee has parttime hours.
    EMP_CALENDAR
    - empno number
    - day_name varchar2(24)
    - day_number number
    - work_hours number
    - non_work_hours number
    Each employee gets 5 rows. One for each workday of the week showing 0 to 8 in the work_hours and non_work_hours column.
    And one to see if an employee has time-off.
    EMP_NON_AVAILABILITIES
    - empno number
    - start_date date with timestamp
    - duration number
    - description varchar2(255)
    My predicament is that I have to build screens with monthly calendars and week calendars to show both data.
    A query for the non-availabilities is easy enough, because I have a date field available. Using the timestamp I can show it correctly in a week calendar. But showing the part-time hours is a bit more challenging.
    Can anybody help me with this? I don't have a clue how to transform the EMP_CALENDAR data to integrate with the EMP_NON_AVAILABILITIES data when using an APEX calendar.
    The trouble is that I can translate a single date to a workday without a problem, but the APEX calendar only gives me 1 date; the CALENDAR_DATE. The other days of the week aren't available in an ITEM as far as I know.

    I've found a solution myself. I don't think it's very pretty, but it does the trick.
    select empno display_value
         , start_date return_value
      from emp_non_availabilities
    where empno = :APP_USER
    union all
    select empno display_value
         , dd.return_date return_value
      from emp_calendar
         , (SELECT (to_date(:P110_CALENDAR_DATE,'YYYYMMDD') + (LEVEL-7)) return_date
              FROM DUAL
           CONNECT BY LEVEL < 14) dd
    where day_number = to_char(dd.return_date,'D')
       and empno = :APP_USERI have to select 14 days from 7 days before :P110_CALENDAR_DATE until 7 days after, so I can get all data for my weekcalender. I don't know in advance which day of the week my CALENDAR DATE will be.

  • When I click on 2014 month view in calendar iPhone 5 s stucks, lagging. What is the problem I don't know????

    When I click on 2014 month view in calendar iPhone 5 s stucks, lagging. What is the problem I don't know????

    Should read 'When I '''clicked''' on your update this a.m......

  • My iphone 4s wont turn on with out being pluged in and when i unplug it it dies instantly i pluged it in put it in dfu mode and tried to restore it hoping it might help but its stuck in dfu and has restore error 21 help!!!

    my iphone 4s wont turn on with out being pluged in and when i unplug it it dies instantly i pluged it in put it in dfu mode and tried to restore it hoping it might help but its stuck in dfu and has restore error 21 help!!!

    Hey jestinsinclairr,
    Thanks for using Apple Support Communities.
    After reviewing your post, it sounds like you had one issue and then got a second trying to resolve the first. A frustrating situation for sure. The first article linked has what to do if it is not powering on unless plugged in. The second article addresses the error you are receiving when trying to restore.
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    Will not turn on, will not turn on unless connected to power, or unexpected power off
    Resolve iOS update and restore errors
    http://support.apple.com/kb/TS3694#10
    Check for hardware issues
    Related errors: 1, 3, 10, 11, 12, 13, 14, 16, 20, 21, 23, 26, 27, 28, 29, 34, 35, 36, 37, 40, 1000, 1002, 1004, 1011, 1012, 1014, 1667, or 1669.
    Have a nice day,
    Mario

  • Changing first day of week in Calendar help

    Hi,
    I want to change the first day of week from Monday to Sunday in Webdynpro ABAP screen's default calendar help. I implemented BADI CALENDAR_DEFINITION to change the first day of week, it worked for SAP GUI calendar help but not working for WebDynpro ABAP screen.
    Thanks,
    Alok

    Hi,
    Try using the data type TVDIR-GENDATE for date field. It will populate serach help Calendar and it should trigger the BADI from web dynpro also.
    Refer SAP Help. It is pointing to the same BADI.
    http://help.sap.com/saphelp_nwpi711/helpdata/en/3d/e53642e2a3ab04e10000000a1550b0/frameset.htm
    Thanks,
    Jyothi

  • Calendar help for Date i/p field in SRM 5.0 shopping cart

    Hi All,
    I am working on SRM 5.0..I have a requirement for the addition of custom field ie. lease termination date field on SRM shopping cart screen and having a calendar help for this date input field.
    Has anyone tried to add calendar help for an input date field in the ITS service??What all additions have to be done for this(style,images etc)...Does any one has any idea?Please help.
    Thanks & Regards,
    K rav.

    Disha can you please send me these images.
    IMAGES/CALENDAR/ICO12_CALENDAR.GIF
    IMAGES/CALENDAR/LEFT1.GIF
    IMAGES/CALENDAR/LEFT2.GIF
    IMAGES/CALENDAR/RIGHT1.GIF
    IMAGES/CALENDAR/RIGHT2.GIF
    my email id: [email protected]
    and should i store these images in mime repository? Also I have the below code to be attached in template for calendar function give by Zakhar..do you know where exactly in the template do you insert this code? and do you insert it in the standard template itself. My field will appear in shopping cart line item level (CUF field) so what will be the template number??
    <input type=text
              id="`ZAPPSSPR_INCL_ITEM_CSF_AVL-ZZSPR_DKK_DATE.name`"
              name="`ZAPPSSPR_INCL_ITEM_CSF_AVL-ZZSPR_DKK_DATE.name`"
              value="`ZAPPSSPR_INCL_ITEM_CSF_AVL-ZZSPR_DKK_DATE.value`"
              onBlur="BBP_ITS_EXTW_CloseCalendar()" maxlength="10" size="10">
         <a id="a_ZAPPSSPR_INCL_ITEM_CSF_AVL-ZZSPR_DKK_DATE" name="a_ZAPPSSPR_INCL_ITEM_CSF_AVL-ZZSPR_DKK_DATE"
             href="javascript:BBP_ITS_EXTW_OpenCalendarDomRel(window.document.BBPForm.elements['`<b>zappsspr_incl_item_csf_avl-zzspr_dkk_date.name</b>`'], 'a_ZAPPSSPR_INCL_ITEM_CSF_AVL-ZZSPR_DKK_DATE')">
      <img src="/sap/public/bc/its/mimes/bbpglobal/99/images/calendar/ico12_calendar.gif" border="0"></a>
    Thanks,
    Krupa

  • Calendar app icon is stuck on date of upgrade

    Since upgrading on Saturday to Yosemite, the calendar app icon is stuck on Saturdays date (8 NOV), but if I open the calendar the correct date is highlighted (Nov 11).   I have tried quitting and restarting calendar but that doesn't do anything   Oh and it is still asking for a password to my google account every time (really irritating).
    N.B. I am NOT technical!!!

    Thanks for the suggestion DaVBMan, sadly it didn't work. The only thing that did work was to wait until midnight and it corrected itself. In the mind of the phone it lived a whole day twice and then skipped one completely in order to get back on track. Very odd and also I have since discovered it has happened to a few of my friends too.
    It's not happened again so I have no idea what so ever what caused it. Fingers crossed it never recurs.

  • Calendar help: how do I get One event to show up on two calendars

    Calendar help: how do I get One event to show up on two calendars? For example I want to enter vacation only once but I wanted to show up on the calendar that I share with my husband and the calendar I have with my assistant.

    The signature should show up with each account. Usually the complaint is not having an option for multiple signatures or not being able to have a different signature for each account.

  • Pls.help my iphone stuck in recovery mode and itunes wont recognize it..i tried the other options that posted here,,,pls tell me what to do..

    pls. help my iPhone stuck in recovery mode and iTunes wont recognize it..i tried the other options that posted here,,,pls tell me what to do..before it was just stuck in an apple logo but when i tried recovery mode to itunes then it stuck..

    Hi awison,
    If your iPhone is not recognized by iTunes on your Windows computer you may want to use the steps in this article to troubleshoot -
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    This may also resolve your recovery mode issue. If it does not, use the steps in this article to resolve it -
    Use iTunes to restore your iOS device to factory settings
    http://support.apple.com/kb/HT1414
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • I have an ipod 2g , The keyboard won't work! Or at least some of it's letters and numbers won't. please help i'm stuck with emojis

    i have an ippd touch 2g , a part of my keyboard won't work , i can type letters but i can't type numbers . please help i'm stuck with emojis keyboard

    Try restarting the iPod by holding down the lock and home button together and then slide the power button to turn it off and then wait 10 seconds and start it up again. If it is not a reset issue then it may be a hardware issue. Is your iPod damaged or have you dropped it recently? If it is a hardware problem then you may not be able to fix it. If your iPod has multitasking options like the new iOS devices, close out the app and then try again, it should reset your device to letters instead of emojis.

Maybe you are looking for

  • HT201413 I cannot get home sharing working, using windows 8 . does anyone have a solution?

    i cannot get home sharing on itunes to work using windows 8. I also have Norton 360 and have unstalled and disabled it but still cannot get home sharing to operate so that i can use the remote APP on my ipad to control music through the house. does a

  • Regarding MM Data Source

    Hi, I have to enable LO setup for the following MM data Source: 2LIS_03_BF. I activated the DataSource. Now I have to enable the Collection Run. How to enable the Collection run for it. In SBIW, I have followed the Navigation: Logistics -> Setting Fo

  • ISight camera not working with Myspace Karaoke

    Hi guys! I searched the forum and couldn't seem to find anything on this...I'm trying to upload an audition for Glee on Myspace using my iSight camera. The audio seems to be recording fine, but when I try to play back what I've just recorded there is

  • Login Database use sqlnet slow,it can take 40sec

    System is Redhat 5.4 Database 11g When i try to connection the Database use conn system/[email protected]:1521/orcl.localdomain it will take 40 sec to complete the connection why it can used so long times,and connect successful my pc is connect t

  • Why are Sony ads SO FRIGGIN LOUD??!!

    I don't mind the ads much. Spotify does a good job spacing them out so you get a couple ads ever couiplafew songs - so much better than radio where you get 5 minutes of straight ads. ugh...  But why is it all the SONY ads are TWICE AS LOUD AS EVERYTH