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

Similar Messages

  • New Virtual Machine Wizard error: The server encountered an error while configuring hard disk on SEPmW8

    on a backup DNS w2008 R2 server I tried create a new VM.
    [Window Title]
    New Virtual Machine Wizard
    [Main Instruction]
    The server encountered an error while configuring hard disk on SEPmW8.
    [Content]
    You might not have permission to perform this task.
    [Close]
    when I tried creating v a new Vhd using default or custom folder, I get
    [Window Title]
    New Virtual Hard Disk Wizard
    [Main Instruction]
    The server encountered an error trying to create the virtual hard disk.
    [Content]
    You might not have permission to perform this task.
    [Close]
    But I verified the admin ID does have full access to the folders. furthermore it belongs administrators, domain Admins, enterprise admins,
    What gives? what additional privilege I need to give to the login ID, I tried in vain adding to Virtual machines but got rejected. I also could not locate anything like virtual machines in the active directory,
    Btw I finally managed to create a new VM wi/ VHD but still can't create new vhd
    ------------Platform info ---
    the physical quad core Xenon server for backup dns also works as exchange server
    has 12 GB RAM, 931 GB Raid 5 storage with 325 GB free.

    These actions are not performed in the security context of the user.  The Local System / computer account of the Hyper-V Server is what needs the access, not the user.
    Also, many AV products will cause these problems if the exclusions are not set properly, as they block the hypervisor from doing its job.
    Brian Ehlert
    http://ITProctology.blogspot.com
    Learn. Apply. Repeat.

  • Marketing Calendar Configuration manual?

    Can anyone tell me where to find the SAP CRM Marketing Calendar configuration document for 7.0?    I need to learn how to expand our MKT calendar capabilities and how to configure.
    Thanks,
    Carla
    Edited by: Carla  Frassetto on May 5, 2011 2:59 PM

    Hi Carla,
    You can refer to the following SAP help content to know more about marketing calendar and possible configuration in CRM 7.0:
    http://help.sap.com/saphelp_crm70/helpdata/en/30/7a8d1531554aeaa3c06c94a552b927/frameset.htm
    Regards,
    Shiromani

  • Calendar Configuration Question

    Calendar Configuration
    Anybody have copies of the Dad information (calapps and calpalm) for setting up Unified Messaging Calendar? Also, looking for what needs to go in the Calendar Server Setup in the http://host:port/um/admin/CalServerSetup.uix screen.
    Nothing seems to be working......
    Thanks,
    Dennis

    Hi:
    I have compiled some things to check regarding calendar setup.
    Let me know if this helps.
    Unified Messaging Calendar configuration tips:
    1.     If you are unable to insert the calendar data from the admin page you first have to check the information in LDAP doing the following:
    Connect to sqlplus as the calendar user i.e es_cal
    -- Check LDAP info
    set serveroutput on
    declare
    a varchar2(255);
    begin
    get_install_params('LDAPHOST', a);
    dbms_output.put_line('LDAPHOST=' || a);
    get_install_params('LDAPPORT', a);
    dbms_output.put_line('LDAPPORT=' || a);
    get_install_params('ORCLADMINDN', a);
    dbms_output.put_line('ORCLADMINDN=' || a);
    get_install_params('ORCLADMINPASSWD', a);
    dbms_output.put_line('ORCLADMINPASSWD=' || a);
    end;
    This should show the right info like for example:
    LDAPHOST=cangre.us.oracle.com
    LDAPPORT=4032
    ORCLADMINDN=cn=umadmin,cn=EMailServerContainer,cn=Products,cn=OracleContext
    ORCLADMINPASSWD=um
    PL/SQL procedure successfully completed.
    Otherwise there is something wrong during the install of UM.
    2.     Now check if the information in the mailstore is right too:
    -- Check Calendar info in the mailstore
    set serveroutput on
    declare
    p_login_url varchar2(100) :=' ';
    p_logout_url varchar2(100) := ' ';
    p_locale varchar2(200) := ' ';
    p_admin_user varchar2(100) := ' ';
    begin
    CalAdmin_Get_Info ( p_login_url, p_logout_url ,
    p_locale ,
    p_admin_user );
    dbms_output.put_line(' login_url'||p_login_url);
    dbms_output.put_line(' logout_url'||p_logout_url);
    dbms_output.put_line(' locale'||p_locale);
    dbms_output.put_line(' user'||p_admin_user);
    end;
    which should show an output of :
    login_urlhttp://cangre.us.oracle.com:7779/um/templates/CalSSOLogin.jsp
    logout_urlhttp://cangre.us.oracle.com:7779/um/templates/CalSSOLogout.jsp
    localeAlaska
    userCN=ESADMINC1
    3.     If you are unable to store the calendar info from the UMAdmin page you can use the following:
    --This will force Calendar Registration the same way as throug UMAdmin
    webpage:
    -- logon as ES_CAL
    set serveroutput on
    declare
    p_login_url varchar2(100)
    :='http://omcdev6.us.oracle.com:7779/um/templates/CalSSOLogin.jsp';
    p_logout_url varchar2(100) :=
    'http://omcdev6.us.oracle.com:7779/um/templates/CalSSOLogout.jsp';
    p_locale varchar2(200) := 'Alaska ';
    p_admin_user varchar2(100) := 'cn=es_sysadmin';
    begin
    CalAdmin_Set_Info ( p_login_url, p_logout_url ,
    p_locale ,
    p_admin_user );
    end;
    4.     The dad for calapps is very important.
    Check in the $ORACLE_HOME/Apache/modplsql/conf for the file dads.conf and you should have at least the following :
    <Location /pls/calapps>
    SetHandler pls_handler
    Order deny,allow
    Allow from all
    AllowOverride None
    PlsqlDatabaseUsername es_cal
    PlsqlDatabasePassword !Y2Fs
    PlsqlDatabaseConnectString iasdb
    PlsqlAuthenticationMode Basic
    </Location>
    If not you have to create it using :
    Create the Calendar DAD with name as /pls/calapps on the middle tier
    machine.
    ( Login to http://<infra hostname>:1810
    login as ias_admin
    Select middle tier machine -> http server-> )
    Configure generic DAD.
    The name of the dad will need to be /pls/calapps
    5. Follow the instructions on UM Admin guide page 3-3 to setup the
    calendar.
    In the file oc4j.properties in $ORACLE_HOME/j2ee/OC4J_UM/config
    For example:
    calendar.cookie.domain=.oracle.com
    calendar.dad.webserver.port=7779
    calendar.dad.webserver.host=cangre.us.oracle.com
    calendar.mailstoredn=cn=iasdb.cangre.us.oracle.com,cn=MailStores,cn=UM_SYSTEM,cn=EmailServerContainer,cn=Products,cn=oraclecontext
    in toolkit.properties from $ORACLE_HOME/um/client/config
    Calendar Server login and Logout URL should be as follows.
    login URL :
    http://<middletiermachinename>:<port>/um/templates/CalSSOLogin.jsp
    The logout url should be
    http://<middletiermachinename>:<port>/um/templates/CalSSOLogout.jsp
    6. When you create UM users using http://<mid tier host>:<mid tier
    port>/um/traffic_cop
    you need to fill in the calendar dad ( calapps ) name for each user.

  • How can I sinchronize a Beehive Calendar with a APEX one?

    I need to create a calendar on internal APEX that shows all the appointments from Outlook (Beehive) from a certain user. I didn't found any API to help me do that. Do you know how to do that?

    Hi,
    Have a look at https://beehiveonline.oracle.com/comb/v1/docs - you have to get the users personal Workspace, get their default Calendar and then get the meetings - probably byRange . The docs explain how to do this with the REST API.
    Phil

  • Configuration of APEX applications to use Oracle Access Manager for Login

    Is there Oracle documentation on configuring an APEX application to accept a login id passed by Oracle Access Manager? Would someone please help with some instructions on how to do it. Thanks.

    Hi Ravi,
    this looks like a WLS issue.
    1-You can try as a workaround to remove this validator configuration in taglib definition file: .tld and see the behavior.
    2-Or you are missing something into url.
    I hope this helps,
    Thiago Leoncio.

  • Calendar Configuration

    Hi, I'm installing OCS R2 (90411) on Windows 2000.
    I am following the guide posted on OTN documentation.
    I am trying to access the administration page:
    https://Web_server_host:https_port/ocad-bin/ocad.cgi?object=nodeadm
    And the SSO page appears. I have no clue on which user should log on.
    The guide says the following:
    To log on to the Oracle Calendar Administrator, enter the Oracle Calendar administrative password you chose during installation. Do not enter a user name with this password.
    After further reading, I see that the calendar configuration assistant ask for the password of the sysop user (who is the calendar administrator, right?). But I don't remember having executed this configuration assistant.
    It probably failed or I accidentally cancelled it during the middle tier configuration.
    Now my question is: how do i call this configuration assistant?
    Also, can I uninstall the Calendar components and reinstall them later? what is the procedure to accomplish this?
    The only thing I remember having done is:
    - Providing Time Zone for Calendar
    - Providing the OS password for the user that is installing calendar
    - Providing the node id (1)
    - Choosing this node as master node
    Also, this is the outcome I have when i execute the command unistart:
    D:\ocs\midtier\ocal\bin>unistart
    unistart: Oracle Calendar Server 9.0.4
    unistart: Copyright (c) 1993, 2003, Oracle.
    unistart: All rights reserved.
    unistart:
    unistart: Starting the Calendar Lock Manager
    unistart: Starting the Calendar Engine
    unistart: Starting the Calendar Directory Access Server
    unistart: Starting the Calendar Synchronous Network Connections
    unistart: Starting the Calendar Corporate-Wide Services
    unistart: Starting the Calendar Server Manager
    unistart: The Calendar Server started successfully.
    Thanks for any reply.

    Hi 393564
    I did those steps that I mentioned.
    I remember that the password that I provided was for the Windows user with which I was installing OCS, not for SYSOP.
    I even try to log in on the calendar administration webpage:
    https://Web_server_host:https_port/ocad-bin/ocad.cgi?object=nodeadm
    with SYSOP as user and the OS user's password as password
    but it doesn't seem to work.
    Moreover, I cant find the SYSOP user on OID users.
    Where do I find this user? can I reset his password?
    What should I do...
    Thanks for any help.

  • CRM onDemand Calendar - Configure First Day of Week?

    Hi guys,
    by default, the calendar is showing Sunday as the first day of week in the CRM calenadr. is it possible to configure any settings to have monday as the first day?

    Mika, at this time it is not possible to configure the first day of the week.

  • Printer Server configuration for APEX 3.1.2 in 10g XE

    I have APEX3.1.2 installed in 10g XE and I am going thorough the OTN tutorial "[Oracle Application Express 3.0-- Building a Functional Application"|http://www.oracle.com/technology/obe/apex/obe30/apexdev30.htm#l7] in the section "Editing Application Objects".
    When I click "Print Attribute" of a page region, it displayed "{color:#ff0000}Report printing is currently not available, there is no print server configured{color}".
    Can you tell me what this means and how to resolve it. All I have is APEX3.1.2 installed in 10gXE.
    I have searched this forum and it seems that I have to install/configure a printer server?
    Thanks!
    Kevin

    Dan,
    I have the same problem as Kevin.
    Your answer to his question can be very helpful. But if I follow the link you provide, I cant find the step 5.2.
    Step 5.1 is clear. But what are the tasks of step 5.2?
    I hope that you can tell me this.
    Thank you.
    Carlos

  • NetInstall from configured hard drive image - is the OS hardware-specific?

    Hello.
    I deal with the installations, maintenance, etc. of about 30 computers — it's a mix of Intel iMacs, Mac Pros and G5s. About 75% of these machines in configured in one way (including applications, etc.) and the other 25% another way. Other than the OS (as some are Intel, some aren't), there's not a big different between these machines (again, with respect to the installed applications, configurations, etc.). So, I'm looking at starting to use NetInstall of future installations and upgrades and I'd like to use hard drive images of base machine installs (OS, applications, base users, settings) and I'm wondering — is the install of the OS (10.5.x) hardware-specific? Do I need to create an image for specific hardware (not including Intel vs PPC)? For example, if I create the image from an Intel iMac, can I use that image for installing a Mac Pro? I'm not sure how hardware-specific the original OS install is (if it only installs files for the machine it's being installed on, or if it installs all files for use on various machines)?
    Some advice here would be appreciated!
    Thanks,
    Kristin.

    Provided the Build of Mac OS X 10.5.x is the same or newer than that of your newest hardware then technically it is hardware-independent in that case.
    For example 10.5.6 (9G55) will support any model of Mac (meeting Leopard's requirements) which shipped prior to its release - however there are some cases where you may be missing multi-touch demo videos if you didn't start your build from a system containing these. The 10.5.6 (9G66) retail DVD contains these and would serve as a good base. 10.5.6 (9G2141) would support all currently shipping Macs as of March 2nd 2009.
    10.5.x is a fully Universal system so it will support any PowerPC-based Mac (meeting Leopard's requirements).
    Refer to this document for specific build numbers for Intel Macs: http://support.apple.com/kb/HT1159

  • Help Configuring Hard Drives...

    Hey everyone,
    Just finished my first build, everything went pretty smoothly.  My only question involves the configuration of my hard drives.  I am running 3 drives, a 40GB IDE for my OS, an 80GB IDE for music storage, and a 120GB SATA for a video editing scratch disc.  Could someone tell me what my jumper and BIOS settings should be?  Also, what kind of raid and setupwould be best.  I'm somewhat new at all this, so any help is appreciated.  Thanks!

    Sounds like you already got the OS up and running so it wouldn't be a good idea to move around any drives at this point unless you have trouble.
    If you do have the OS installed and all the drives are seen and working properly then don't change any settings in the Bios for the IDE Config menu. If not then I suggest the following for maximum flexibilty:
    Bios>>Integrated Peripherals>>ON-Chip IDE Config:
    Native Mode
    Pata Only
    Keep Sata Active-Yes
    Pata-Both Channels
    Rest will be greyed out or leave at default.
    The jumpers should be set for master/slave/single as per diagram on the drive. If there's any jumpers on the Sata just leave it where it is. You want to set it up so that all your heavy data transfers will not take place between 2 drives on the same IDE channel. The Sata drive has its own channel.
    Your board has no Raid hardware onboard so you would have to buy a PCI Raid card in order to use Raid.  

  • Time span  weekly and daily calendar view in APEX

    I would like to display the start and end time of an event. At the moment I can only see how to select the start time.
    On the daily and weekly calendar only the start time shows
    Edited by: jandeny on 31-Jan-2010 10:48

    Hello Jan
    When you say you want to display the start and end time of an event, how are you wnating to diasplay it? What is the context? In a report? Read only text?
    Kind regards
    Simon Gadd

  • Why are subscribed calendars so hard to deal with???

    I use-
    iCal on my imac.
    calendar app on my iphone
    MobileMe Calendar (beta).
    I don't have any complicated google calendar subscriptions, or Exchange calendars or anything like that.
    I have 2 simple iCal calendars that I subscribe to.
    And for some reason that has to be a big production??
    In iCal they work fine.
    In Mobile me they just don't work at all- the beta doesn't support subscribed calendars yet. fine.
    And on my iPhone, they're a mess.
    They appear in the calendar list (albeit with the wrong colors, and I can't edit the colors)
    but the actual events on the calendar don't show up in my calendar.
    Then the birthday calendar- what the heck is going on with that?
    Again, works fine in ical.
    Even works in mobileme.
    But on my phone its listed twice, and I have to turn one off?
    I don't understand why it can't be consistent... why is this so complicated???
    I just want the calendar on my phone to match the calendar on my desktop.
    Same colors, and with the events actually showing up and syncing. I don't care if I can't edit the subscribed calendar, I just want to be able to SEE it.
    Message was edited by: Alexroet

    Sorry, but your post is to me contradictory. First you say you want to remove movies, then you say you want to add them. Then you complain that you have to convert movies before you add them to iTunes. So I'm at a loss to understand what it is you are really trying to accomplish. Please post back and explain clearly what it is you are trying to do and where you are running into difficulty.. Leave out the invective and it will be easier for us to understand.
    As to iTunes being "fussy", the formats iTunes and the iPad can support are pretty clearly stated in Apple's information. No application, on any platform, supports all content formats, so if you want to use a format iTunes doesn't support, then of course you have to use some other software to convert it first. That's just simple logic.
    Regards.

  • List of calendar events/ hard to read

    Before I installed Snow Leopard, iCal allowed me to see a list of all entries in a calendar group. How do I get this feature?
    I use iCal as a means of documenting past events such as birthdays or medical visits. Seems this latest revision has made a step backwards or have I missed something.
    Also, the contrast is poor. Difficult to read. Can't adjust font size. Obviously designed by a young person not for us seniors.

    What kind of entries? Calendars?
    If I create a calendar group, calendars appear individually in a list after rotating the triangle on the left of the group name, assuming I dragged them there already to be inside the group. Do you have that appearance available?
    Contrast is definitely weird from iCal, as if testing showed people were confused about ground colours versus highligh colours when the entire rainbow was in play. I don't like it either. Don't forget that you can "get info" on a calendar and use the colour picker to select the darkest colours available if that helps you. The burgundy of iCal's icon makes a unique dark colour if you use the magnifying glass to select something.

  • Calendar configuration for peoplesoft source system

    Hi All,Need one clarification.
    we are using people soft as our source system.now we need to configure globalcalendar id parameter in dac.for that we ran below query in given source DB
    SELECT SETID|| ‘~’|| CALENDAR_ID FROM
    PS_CAL_DEFN_TBL.But for this no results were presenting in given database.So we thought of proceeding with default parameter 'SHARE~01'.Shell we proceed like that?will data load?otherwise any ware house generated calender we need to configure?.If yes what we need to configure.Please provide your valuable suggestions on this.
    Thanks in advance.
    Thanks,
    Anusha

    Its better to check with functional guys from your project, they better know what they need for reporting as of your client.

Maybe you are looking for