Auto pop alter message - Help needed

Hello Experts,
I need your little help in making the select list editable. Does any of you have any idea?
Please find the following information/details:
I have an appointment page where I need to set an appointment.
So I have 7 fields (same as of my table - Appointments) on my page
Pxx_Start_Date (appointment start date) (date picker)
Pxx_From_Hour (appointment start hour) (select list 00 to 23)
Pxx_From Min (appointment start minutes) (select list 00, 15, 30, 45)
Pxx_End_date (appointment end date) (date picker)
Pxx_End_Hour (appointment end hour) (select list 00 to 23)
Pxx_End_Min (appointment end minutes) (select list 00, 15, 30, 45)
Pxx_Description (appointment description) (text item)
All appointments are stored in Appointments table.
and what I required is:
* to alert (Pop a Message) the user before 15 minutes of the next appointment.*
eg: start_date - 08/12/2009, from_hour - 15, from_min - 30, end_hour - 16, end_min - 00, end_date 08/12/2009 and Description - Apex meeting, room no 1.
So it should alert at 15:15.
Your help would be appreciated. It would be nice if you can put an example with steps on apex.oracle.com.
Kind Regards,
Bhavin
London, UK

Hi here's a starting idea....
Put this in your HTML Header of the page (or in the page template)
<script>
function alertMe(){
if (document.getElementById('alertMe'))
{alert('Get to your meeting!');
</script>Then put this in the HTML body attribute
onload="alertMe();"Then create an application process On-load like this
BEGIN
htp.p('<div id="alertMe"></div>');
END;Just stick your logic in that application process so if the user is due then do the htp.p, and end if.
Cheers
Ben

Similar Messages

  • Error messages help need asap!!!!

    hi this is my code and I need help with what i need to do and how to do it to get rid of the error messages
    CREATE OR REPLACE FUNCTION
    no_of_task_types (x NUMBER)
    RETURN NUMBER IS
    my_val NUMBER;
    BEGIN
    SELECT COUNT(distinct t.task_type_no)
    INTO my_val
    FROM employee e, assignment a, task t
    WHERE e.employee_id = x
    AND e.employee_no = a.employee_no
    AND t.task_id = a.task_id
    RETURN tasktotal;
    END;
    SHOW ERRORS
    these are the error messages:
    Warning: Function created with compilation errors.
    Errors for FUNCTION NO_OF_TASK_TYPES:
    8/1     PL/SQL: SQL Statement ignored
    13/27     PL/SQL: ORA-00933: SQL command not properly ended

    Hi,
    Welcome to the forum!
    Don't say things like "urgent" or "asap" (as in your title, "error messages help need asap!!!!"). It's rude.
    971848 wrote:
    hi this is my code and I need help with what i need to do and how to do it to get rid of the error messages
    CREATE OR REPLACE FUNCTION
    no_of_task_types (x NUMBER)
    RETURN NUMBER IS
    my_val NUMBER;
    BEGIN
    SELECT COUNT(distinct t.task_type_no)
    INTO my_val
    FROM employee e, assignment a, task t
    WHERE e.employee_id = x
    AND e.employee_no = a.employee_no
    AND t.task_id = a.task_id
    RETURN tasktotal;
    END;
    SHOW ERRORS
    these are the error messages:
    Warning: Function created with compilation errors.
    Errors for FUNCTION NO_OF_TASK_TYPES:
    8/1     PL/SQL: SQL Statement ignored
    13/27     PL/SQL: ORA-00933: SQL command not properly endedIt looks like you're missing a semicolon at the end of line 13; that's why the statement beginning at line 8 can't be understood.
    Also, you store a number in my_val, but never use that number, and you have a variable called tasktotal that's never defined. Should my_val and tasktotal be the same variable?
    Perhaps this is what you want:
    CREATE OR REPLACE FUNCTION
           no_of_task_types (x NUMBER)
    RETURN NUMBER IS
        tasktotal   NUMBER;
    BEGIN
        SELECT  COUNT(distinct t.task_type_no)
        INTO    tasktotal
        FROM    employee e, assignment a, task t
        WHERE   e.employee_id = x
        AND     e.employee_no = a.employee_no
        AND     t.task_id        = a.task_id;          -- ; at end is important
        RETURN tasktotal;
    END;
    /This question doesn't have anything to do with SQL*Plus, so maybe the SQL*Plus forum isn't the best place for it. This is strictly a PL/SQL problem; in the future, post questions like this in the PL/SQL. The FAQ page for that forum, {message:id=9360002} , can really help you.

  • Xml messages help needed

    Hello guys
    SELECT XMLELEMENT
    "order",
    XMLELEMENT("load",
    XMLATTRIBUTES(T.ID AS "foio",
    'AL' AS "acio",
    DECODE(i.type,'b',5001,'NA',5002) "pinio"
    FROM inventory i,
    ORDERS O
    WHERE i.ID=O.TICKET;
    I am getting out put as
    <order>
    <load foio=1 acio="AL" pinio="5001" >
    </order>
    But i need
    <?xml version = "1.0"?>
    <order>
    <load foio=1 acio="AL" pinio="5001" >
    </order>
    like this
    How can i include <?xml version = "1.0"?> above the xml message?
    Help needed
    Sm

    Hai i used
    SELECT SYS.XMLTYPE.createxml('<?xml version = "1.0"?>'||''||
    XMLELEMENT
    "order", XMLELEMENT("load",
    XMLATTRIBUTES(T.ID AS "foio",
    'AL' AS "acio",
    DECODE(i.type,'b',5001,'NA',5002) "pinio"
    FROM inventory i,
    ORDERS O
    WHERE i.ID=O.TICKET;
    it is working fine
    pls give more suggestions
    S

  • Pop up message help for 'POPUP_TO_DISPLAY_VALUE'

    Hi friends,
    I want to display a pop up message in the screen with my input variables.
    Which function module can assign for this....
    i.e., just wants to display the information,i passed thru var/field.PLs reply.
    ******If it can be done thru error message(not from message classs), pls notify me.
    Pls post ur comments with some good example codes.
    thanks & regards
    sankar.
    Edited by: sankar babu on Jan 3, 2008 1:14 PM

    Hai,
    You can use 'POPUP_TO_CONFIRM'.
    See the below example:
    data: asdf(60) type c.
    message i000 with 'aer' 'Eswar' into asdf.
    CALL FUNCTION 'POPUP_TO_CONFIRM'
      EXPORTING
      TITLEBAR                    = ' '
      DIAGNOSE_OBJECT             = ' '
        text_question               = asdf
      TEXT_BUTTON_1               = 'Ja'(001)
      ICON_BUTTON_1               = ' '
      TEXT_BUTTON_2               = 'Nein'(002)
      ICON_BUTTON_2               = ' '
      DEFAULT_BUTTON              = '1'
      DISPLAY_CANCEL_BUTTON       = 'X'
      USERDEFINED_F1_HELP         = ' '
      START_COLUMN                = 25
      START_ROW                   = 6
      POPUP_TYPE                  =
    IMPORTING
      ANSWER                      =
    TABLES
      PARAMETER                   =
    EXCEPTIONS
       TEXT_NOT_FOUND              = 1
       OTHERS                      = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • I need help. My ipad 2 was stuck in recovery mode. i tried to connect it to itunes and restore but after downloading the file and extracting the software there is a pop up message that says "the device is full" i dont know what to do. Its been 2 days now.

    I need help. My ipad 2 was stuck in recovery mode. i tried to connect it to itunes and restore but after downloading the file and extracting the software there is a pop up message that says "the device is full. Deleting files and emptying your recycle been will help you restore." how am i going to erase files if i can't open my ipad. i dont know what to do. Its been 2 days now. please help. thanks.

    yes i am sure. This are the exact words... "The iPad "iPad" could not be restored. The disk you are attempting to use is full. (Removing files and emptying the recycle bin will free up additional space". i tried some options, hard reset, redsnow, tinyumbrella but still it's stuck.

  • Everytime I open lightroom I get a pop up message saying "Lightroom encountered an error when reading from its preview cache and needs to quit" and it closes. Ive already tried reinstalling, nothing seems to work. Help please!

    Every time I open lightroom I get a pop up message saying "Lightroom encountered an error when reading from its preview cache and needs to quit" and it closes. Ive already tried reinstalling, nothing seems to work. Help please!

    Open the folder containing your catalog. In that folder you will find another folder with the extension .lrdata, and you need to delete that folder. After you do that, Lightroom should start normally and will create a new preview cache.

  • Need help with Pop Up message

    I've created a pop up message for a client that notifies you
    when you are leaving a site. You can press ok to get redirected to
    another site or cancel out by pressing the X. But when you press
    the X it redirects you to the site anyways. Is there a way to
    cancel the action or redirection of the pop up message window. Or
    do I need to create a seperate page for the pop up message.

    If you haven't already, you would be well served searching
    through the
    archives for the answer to your question. The archives can be
    found here:
    http://groups.google.com/group/macromedia.dreamweaver
    http://groups.google.com/group/macromedia.dreamweaver.appdev
    In this case, I think you'll find an answer that says, "Don't
    do this,
    people know what they want to do".
    You don't need to repost the topic, if somebody wants to help
    you they will.
    It's doubtful anybody will, though, because it's not a
    popular behavior on
    the net.
    The only place that still does it that I surf is my bank, and
    I can't think
    of a worse security botch up. What if I just leave and
    somebody comes in
    behind meand clicks "cancel". Stupid.

  • Need help with POP UP messages

    I've created a pop up message that notifies you when you are
    leaving a site. You can press ok to get redirected to another site
    or cancel out by pressing the X. But when you press the X it
    redirects you to the site anyways. Is there a way to cancel the
    action or redirection of the pop up message window. Or do I need to
    create a seperate page for the pop up message.

    Don't do this at all. People know what they want to do.
    James M. Shook
    http://www.jshook.com

  • Help needed, M getting this message sandbox environment error no test user account, when downloading any application from iTunes, friend told me to sign out and sign in iTunes it might solve the problem but instead I cannot login I to my itune account.

    Help needed,
    I am getting this message sandbox environment error no test user account, when downloading any application from iTunes, friend told me to sign out and sign in iTunes it might solve the problem , and i triyed it but still  I cannot login I to my itune account. Same message keeping. Popping up,  this problem started supricly today.

    Take a look at the instructions here.
    http://www.technogal.net/2012/03/this-is-not-test-user-account-please.html

  • Pop up window says need to upgrade to newer version to work on document from the cloud. go to app store and it says already installed...help

    pop up window says need to upgrade to newer version to work on document from the cloud. go to app store and it says already installed...help. Am trying to work on document from office computer at home on laptop.
    This is what the pop up says:
    You need a newer version of Numbers to open this spreadsheet.
    You can download the latest version of Numbers from the Mac App Store.
    Thanks,

    WS,
    At first, it can be difficult to determine which version of Numbers you are using. The user interfaces are different, but if you are new to the apps you may think you are using the new version when if fact you have launched the older version. Make sure you are using Version 3.x. Then you won't get the message that you need a newer version.
    Use Spotlight to launch Numbers. After typing Numbers into the search field, pick the result that says "Numbers -- Applications".
    Jerry

  • Need Flash Player Pop-up Message Suppressed in Quiet Installer

    Hello Flash Player Installer Gurus,
    Thank you in advance for your help.
    I am launching the Adobe Flash Player 10 installer from another installer and I am running the Adobe Flash Player 10 installer in quiet mode.  However, even though I am running it in quiet mode, the installer pops-up the following:
    "The version of Adobe Flash Player Activex that you are trying to install is not the most current version.  Please visit http://www.adobe.com/go/getflashplayer to obtain the latest, most secure version. | OK"
    You can get this message to show up by, say, installing Flash Player 10.1, uninstalling Flash Player 10.1 and then attempting to install Flash Player 10.0.
    I understand why I am getting this error message, but I'm trying to prevent this and any other error messages being shown in quiet mode.  When an installer runs in quiet mode it shouldn't do stuff like this.  I need a truly quiet Adobe Flash Player Installer.  The fact that Adobe's Flash Player installer is not quiet is a big problem for us because the user needs to acknowledge this pop-up and we want to run our installer in unattended mode.
    The command line we are using is as follows:
    msiexec /i "install_flash_player_10_active_x.msi" /qn
    This correctly runs the installer in quiet mode (except for the previously mentioned pop-up message I am getting).
    Does anybody know how to run the Adobe Flash Player 10 installer in truly quiet mode so that the pop-up message described above does not show?
    Thanks in advance,
    Dencolp

    Hi Jim,
    Thanks for writing to us with your issue mentioned fully. A similar query like your's had been answered recently in this same Flash Player forum - http://forums.adobe.com/message/5144102.
    May I suggest you to please read and follow the suggestions mentioned in the above link. Hope the solution works. Else do write back with your issues.
    With regards,
    Prabhu

  • I have the interactive student mathematics CD from Haese & Harris Publications that requires Adobe Reader and includes a 'Self-help Tutor". I can open all the features using Adobe Reader except the Self-Tutor. I get a pop-up message saying I require an ap

    I have the interactive student mathematics CD for the Cambridge IGCSE Mathematics (0607) Extended from Haese & Harris Publications that requires Adobe Reader and includes a 'Self-help Tutor". I can open all the features using Adobe Reader except the Self-Tutor. I get a pop-up message saying that: I require an app to open "26Unitary Method.app". I can find no mention of this app online so can someone please help me?
    Thank you.

    Thank you for the prompt reply.  The CD says that it needs Adobe Reader (and it does read the 'Text book'), but it is not opening the interactive elements. Great!
    I am doing as you suggest and contacting Haese directly. Again, many thanks.

  • Blue screen keeps popping up after "you need to restart" message

    While I was rendering a movie in After Effects, the screen turned black with the message "you need to restart your computer". So I did. But after the restart nothing will load. So in the upper right corner the only thing there is the magnifying glass (so no time, airport etc). If I want to start something (like Chrome or whatever) it loads and a few seconds after that a blue screen pops up and than the app is closes again... If I do nothing a blue screen keeps popping up also (guess something wants to start and gets shut down again).
    I tried the apple hardware test (extended) and it said everything was ok. I also disconnected everything from my iMac, no help. Then I tried reinstalling OS X, problem was still there. I also repaired disk and permissions.
    So I really don't know what to do now, hope you can help.
    I got a iMac 27" i7 8gb ATI Radeon HD 5750 and I was running the newest OS X (10.6)

    that was a [_*Kernel Panic*_|http://docs.info.apple.com/article.html?path=Mac/10.6/en/8965.html]
    try booting into _*safe mode*_. if your Mac boots into safe mode, repair permissions while in it, then reboot normally.
    edited by the Jolly Green Giant (where Green stands for environmentally friendly)

  • I have the latest version of Pages installed, yet there are documents I try to open and the message "you need a newer version of Pages to open this document".  Help?

    When I try to open some of my documents, the message "you need a newer version of Pages" appears; yet, I have installed the latest/newest version. How do I clear this up? Thanks.

    You have 2 versions of Pages on your Mac.
    Pages 5.2 is in your Applications folder.
    Pages '09/'08 is in your Applications/iWork folder.
    You are alternately opening the wrong versions.
    Pages '09/'08 can not open Pages 5 files and you will get the warning that you need a newer version.
    Pages 5.01 can not open Pages 5.2 files and you will get the warning that you need a newer version.
    Pages 5.2 can open Pages '09 files but may damage/alter them. It can not open Pages '08 files at all.
    Once opened and saved in Pages 5 the Pages '09 files can not be opened in Pages '09.
    Once opened and saved in Pages 5.2 files can not be opened in Pages 5.
    Anything that is saved to iCloud is also converted to Pages 5 files.
    All Pages files no matter what version and incompatibility have the same extension .pages.
    Pages 5 files are now only compatible with themselves on a very restricted set of hardware, software and Operating Systems and will not transfer correctly on any other server software than iCloud.
    Apple has removed over 95 features from Pages 5 and added many bugs:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Archive/trash Pages 5, after exporting all Pages 5 files to Pages '09 or Word .docx, and rate/review it in the App Store, then get back to work.
    Peter

  • Urgent help needed - new to Macs, accidently cut and paste over top of photo folder and now no sign of folder or file, no auto back-up in place, how can I restore photos pls

    Urgent help needed - new to Macs, accidently cut and paste over top of photo folder and now no sign of folder or file, no auto back-up in place, how can I restore photos pls

    Thanks for prompt reply, yes we have tried that but have now closed down the browser we where the photos were.
    We haven't sent up time machine, do you know whether there is any roll-back function on a Mac?
    Thanks

Maybe you are looking for