How to set time in calendar?

Hi all,
is possible set time in a calendar component in WVP with JSF1.2?
i.e '10-12-2007 12:30'.
any free component that do this?
thank's in advance!

No, I store ok and retrieve from DB.
But in DB I have a datetime field in Mysql and I need to store the data in this way DATE 01-10-07 and time 10:15 pm.
I need a component to do this. I don't believe that nobody had this situation.
I need like the swing component JCALENDAR http://www.toedter.com/en/jcalendar/
in JCAlendar you can set a dateformatpattern like dd/MM/yyyy HH:mm
how is possible to do this, I think that 2 textfields, one to hours other to minutes is a poor solution.
Thank's

Similar Messages

  • Where can I find a video that tells me how to set time on photos to 1 second each?

    where can I find a video that tells me how to set time on photos to 1 second each? Where can I find a video that tells me how to add black space to the sides of all photos so that they display completely instead of only showing the center (which shows peoples' crotches but cuts off their heads- great huh?)? Would like to import whole folders of photos, set each to 1 second, have each display completely without distorting to fill. and "play" the timeline as I build it so that I can see if its working before putting in 2000 pics?

    Hello Cain,
    You can see the Domestic Outbound Scenario (DOT) for how to use incompatibility scenario.
    You can find the Customizing guides at SAP Support Poratl.
    Regards
    Nitesh

  • In Forms, how to set time to control editng?

    hi guys, Im doing a data entry module.This module used to encode our daily transactions. Sometimes, there are editing/updating of data that happen everyday. My problem is that, i want to control this editng everday to lessen some data problem. My question is how to set time in an oracle forms to control this everyday editing or updating. I want to their editing/updating allow only during the date they encode that particular transactions.
    Can anybody help me solve this problem. Thank you!
    Lala

    Do you want to get the current date?
    You can use SYSDATE for that (getting the database-date) or SYSTEM.CURRENT_DATETIME (getting the OS-date)

  • How to set time zone for a session in Client Only installation

    Environment:
    OS : Unix (HP-UX 11.0)
    Oracle DB : Ver 8.0.5
    Developer : Ver 1.6 ( Client only Installation)
    Developer also on Unix.
    RDBMS and Developer Installed on different
    home directories.
    Our development is Forms 4.5 on X windows.
    Runtime is forms character mode.
    Probelm Description:
    To run the application I am using TWO_TASK to connect to the database. In our application we have to take care of time zones. For that in previous versions(NO TWO_TASK used) I used TZ unix environment variable, to get time zone dependent time wherever sysdate is used.
    Now because I am using TWO_TASK, oracle is no more using users TZ settings.
    Question : Is there any way I can make oracle to use the TZ environment setting

    Thanks for replying Johnny!
    What you are referring to is adding a city. I need to know how to set the time zone in settings -> Date & Time -> Timezone. Unless & untill this is set properly the iPod will never show me the right time. Please help me with it.
    I will definately use your advice on the second query.
    Thanks once again!
    Windows XP Pro

  • Setting time in Calendar

    Does the option to set time for task or reminder exists on Q10

    Hello a022.
    In the calendar options you have the options to make new appointments, recordartorios, birthdays and other ... in this way Remember that day you can have a pending event and what time.
    Kudos **Do not forget to give those people who help and advise you regarding your questions, as well give the answer like**
    @ gutijose14
    BBM Channels  PIN: C0007093A
    Do not forget to give LIKE    Those people who help you and advise you about your doubts.  if the review has been SOLVED** # 4LL  #ÉliteRoad  Make a backup of your BlackBerry
    BlackBerry Protect and  BlackBerry Link constantly.  #ichooseBlackBerry10 Gutijose14 Forums Veteran I

  • How to set timer intervals for object + and a motion for entering stage

    Hi, I am making a simple game but I have a couple problems/queries.
    1) My game is a touch an object and you get a point game, currently the objects appear randomly over the screen, however I am trying to get it to slide into the screen similar to the Fruit Ninja game, but not limited to entering from one side, does anyone know how to set this?
    2) As I mentioned above my objects appear randomly, I have set a timer when I change the timer from 800 to another number, it just makes all the objects on the screen last for 800 milliseconds all at the same time then disappear and appear somewhere else on the screen for another 800 milliseconds and it repeats, what I am trying to do is make them come at different intervals, for example:
    Object 1 - constantly appears, so when the 800 millisecond is over, it comes back on a different part of the stage
    Object 2 - I want it to appear every 5 seconds, so when the 800 millisecond is over it will come back on the stage in 5 seconds, but not instantly like Object 1
    But I have no idea how to do this :/ anyone have the code needed for me to do this?
    Sorry for the long questions, I only asked because I really am stuck, I have been trying to do this for over 2 weeks now.
    Thanks very much.
    My Code
    [Code]
    //importing tween classes
    import fl.transitions.easing.*;
    import fl.transitions.Tween;
    import flash.utils.Timer;
    //hiding the cursor
    Mouse.hide();
    var count:Number = 60;
    var myTimer:Timer = new Timer(1000,count);
    myTimer.addEventListener(TimerEvent.TIMER, countdown);
    myTimer.start();
    function countdown(event:TimerEvent):void {
    myText_txt.text = String((count)-myTimer.currentCount);
    if(myText_txt.text == "0"){
    gotoAndStop(5)
    //creating a new Star instance;
    var star:Star = new Star();
    var box:Box = new Box();
    var bomb:Bomb = new Bomb();
    //creating the timer
    var timer:Timer = new Timer(800);
    var timerbox:Timer = new Timer(850);
    var timerbomb:Timer = new Timer(1000);
    //we create variables for random X and Y positions
    var randomX:Number;
    var randomY:Number;
    //variable for the alpha tween effect
    var tween:Tween;
    //we check if a star instance is already added to the stage
    var starAdded:Boolean = false;
    var boxAdded:Boolean = false;
    var bombAdded:Boolean = false;
    //we count the points
    var points:int = 0;
    //adding event handler to the timer;
    timer.addEventListener(TimerEvent.TIMER, timerHandler);
    //starting the timer;
    timer.start();
    function timerHandler(e:TimerEvent):void
              //first we need to remove the star from the stage if already added
              if (starAdded)
                        removeChild(star);
              if (boxAdded)
                        removeChild(box);
              if (bombAdded)
                        removeChild(bomb);
              //positioning the star on a random position
              randomX = Math.random() * 800;
              randomY = Math.random() * 1280;
              star.x = randomX;
              star.y = randomY;
              star.rotation = Math.random() * 360;
              box.x = Math.random() * stage.stageWidth;
              box.y = Math.random() * stage.stageHeight;
              box.rotation = Math.random() * 360;
              bomb.x = Math.random() * stage.stageWidth;
              bomb.y = Math.random() * stage.stageHeight;
              bomb.rotation = Math.random() * 360;
              //adding the star to the stage
              addChild(star);
              addChild(box);
              addChild(bomb);
              //changing our boolean value to true
              starAdded = true;
              boxAdded = true;
              bombAdded = true;
              //adding a mouse click handler to the star
              star.addEventListener(MouseEvent.CLICK, clickHandler);
              box.addEventListener(MouseEvent.CLICK, clickHandlerr);
              bomb.addEventListener(MouseEvent.CLICK, clickHandlerrr);
    function clickHandlerr(e:Event):void
              //when we click/shoot a star we increment the points
              points +=  5;
              //showing the result in the text field
              points_txt.text = points.toString();
                        if (boxAdded)
                        removeChild(box);
              boxAdded = false;
    function clickHandler(e:Event):void
              //when we click/shoot a star we increment the points
              points++;
              //showing the result in the text field
              points_txt.text = points.toString();
              if (starAdded)
                        removeChild(star);
              starAdded = false;
    function clickHandlerrr(e:Event):void
              gotoAndPlay(5);
    [/Code]

    The only thing that affects TopLink is the increment by, as increasing this is what allows TopLink to reduce the number of times it needs to go to the database to get additional numbers. Ie, an increment value of 1 means TopLink needs to go the database after each insert; an increment value of 50 allows it to insert 50 times before having to get a value from the sequence. The cache on the sequence object in the database affect the database access times. While it may improve the access times when the sequence number is obtained from the database, but I believe the network access to obtain the sequence is the greater concern and slow down for most applications. It all depends on the application usage and design though - an increment (and application cache) of 50 numbers seems to be the best default.
    I cannot say what effect the cache vs nocache settings will have on your application, as it will depend on the database load. Only performance testing and tuning will truly be able to tell you whats best for your application.
    Best Regards,
    Chris

  • How to set up iOS calendar app with shared Google Calendar data

    At work (in our small office) I've been given access to the shared Google Calendar that has our work schedule. It was set up using this page (click on Share an existing calendar):
    https://support.google.com/calendar/answer/37082
    The question I have is how to set it up to work with iOS calendar app on my iPhone?

    "currently there is no shared group calendar support."
    Well, not really. You hinted at it with: "set up a group wiki."
    Go into Workgroup Manager and set up an Open Directory group. Add people to it.
    Each client must then go into iCal --> Preferences --> Accounts and add an account. The name and password entered must be the same as that added to the group, Kerberos must be unchecked, and the account URL will be like (fill in the blanks properly):
    http://<your domain name here>:8008/principals/groups/<your group name here>/
    Now each properly logged in user of that group can make changes to the shared group calendar, without any "hacks" like making dummy users and delegation.
    However, I am getting a notifier: "Request Error: Accesss to <event name> in <your group name here> in account <your group name here> is not permitted." But that seems to be a lie, since multiple members of the group can make changes and others can see the changes.
    Oh yea, make sure you have a functioning DNS with valid reverse lookup.
    Message was edited by: Bytesmiths

  • How to set up group calendar

    Hi - I have set up a server on my mac pro. I have everything configured between the server and the clients, and the calendars are able to invite / respond to calendar events from others. What I am wondering about, however, is how to create a common shared group calendar where everyone sees everything that everyone does on the group calendar. I.e. not just events 'shared' or invited to...
    Thanks,
    Gareth

    "currently there is no shared group calendar support."
    Well, not really. You hinted at it with: "set up a group wiki."
    Go into Workgroup Manager and set up an Open Directory group. Add people to it.
    Each client must then go into iCal --> Preferences --> Accounts and add an account. The name and password entered must be the same as that added to the group, Kerberos must be unchecked, and the account URL will be like (fill in the blanks properly):
    http://<your domain name here>:8008/principals/groups/<your group name here>/
    Now each properly logged in user of that group can make changes to the shared group calendar, without any "hacks" like making dummy users and delegation.
    However, I am getting a notifier: "Request Error: Accesss to <event name> in <your group name here> in account <your group name here> is not permitted." But that seems to be a lie, since multiple members of the group can make changes and others can see the changes.
    Oh yea, make sure you have a functioning DNS with valid reverse lookup.
    Message was edited by: Bytesmiths

  • HT1178 how to set time capsule on new network

    I had a time capsule set up on a wireless network. The network changed modems and I forgot to change the time capsule. Now it will not register on the new network. How do I get it to register.

    Do a factory reset.

  • How to set time delay in javascript for indesign cs2?

    while am running the js, am using function date.getMonth, date.getDate()...
    this function produce the error, which return the function as error message,
    if i set alert before running this every time , am not getting the errror
    how to solve this?
    thanks in advance
    subha

    Dear Subhaoviya
    Please use the below coding and get your date and Time functions
    var today = new Date();
    var myDate = today.getDate();
    Thanks & Regards
    T.R.Harihara SudhaN

  • How to set time out in the abap program?

    Hi,
    I want to set the execution time in the IN_UPDATE block of a BADI, could you tell me how to code that?
    When the specified execution time reaches, and the badi is still running, then pop up a window and tell the end user the time out message.
    Does SAP have any function regarding this? Thanks in advance.

    You can have the INPUT be a number of seconds, then calculate the max endtime = SY-UZEIT + INPUT. Have checks throughout the program that returns an error as OUTPUT if exittime >= SY-UZEIT(current time).
    There may be an easier way but this is all I can think of as a user set timeout option.

  • Timing Function in IDM ;  how to set "timer"

    I have a question which has not been discussed here before (or, if it has, I haven't noticed).
    It concerns the use of a TIMER function in IDM.
    I am pretty sure IDM has one; just not sure how to implement this.
    Let's say you want to evaluate the time difference between when a person logs into the system, and today's (current) date? If a certain amount of time has elapsed, send that person an Email Notification?
    Or : someone has not performed a certain required action; after a certain time, send them a "*notice*" (could also be an email notification).
    Or, even more complex : send 2 or 3 such notifications, at regular intervals; and, if the person does not respond, then IDM will automatically perform an action of its own (maybe, disable that person's account, etc)
    Basically, my point is : does IDM possess a certain "*internal clock/timer*" which can be activated, to monitor certain activities; and, based on how much time has elapsed, perform a certain action ??
    If yes, then how can I configure and/or implement such a function?

    Going with the deferred task example you'd have to do something like this:
    (Again, it doesn't have to be a deferred task.)
    <Action id="0" name="Add Deferred Task" application="com.waveset.session.WorkflowServices">
        <Argument name="op" value="addDeferredTask"/>
        <Argument name="type" value="User"/>
        <Argument name="name" value="$(accountId)"/>
        <Argument name="subject" value="Configurator"/>
        <Argument name="task" value="Your Workflow Name"/>
        <Argument name="date"> <!-- date the deferred task is to execute -->
            <ref>date</ref> <!-- precalculated date -->
        </Argument>
        <Argument name="date_task_added">
            <!-- add the time the task was actually registered -->
            <invoke name="getTime"> <!-- calculates "now" -->
                <invoke name="getInstance" class="java.util.Calendar"/>
            </invoke>
        </Argument>
        ... other deferred task arguments here
    </Action>IDM will wait until the date the task is to be executed, see the "date" argument. When IDM actually executes the deferred task (it may be a long time after it was originally scheduled to execute if there's been a delay or an outage or whatever) you'll have a variable in your workflow called "date_task_added" that should be a java date object. (Or a string, I can't remember. If it is you'll just have to convert it, no biggy.) That will give you the date the deferred task was registered. Within the workflow you can build another date object using the exact same code to calculate "now".
    From there getting the time difference between both objects is a simple matter of getting the milliseconds for each and doing the math to get the difference. That's just one way, there's dozens of ways of calculating time differences with the java date and calendar objects.
    Note: untested code. You may have to tweak it to work properly.

  • Set time and calendar

    I have an iPad 2 , and I live inMexico.  I can't find a way to set my clock to the correct time and my calendar reverts to Feb2 every time I close it.  I have synced to iTunes but no avail.  Is it possible there is no manual clock setting on this?
    Sorry to be such a beginner but I also have no idea where to look for operation system, so I don't know sorry.  I look forward to any response. thx

    Open the Setting app and select General. Localization settings, including Date and Time are found by scrolling down the screen.

  • How to set 2 factory calendar in 1 plant?

    Now I setup 1 factory calendar and assign to plant and it contains 5 workday (Monday-Friday) per week.
    In the future , For 1 plant we want to separate into 2 production lines and the workday are different. What should I do?
    Sample of different workday
    Production 1 , workday are 1-15 of each month
    Production 2 , workday are Monday-Friday
    Look forward to hear any suggestion.

    Dear DB49
    Thanks for you recommendation,Could you please tell me which parameter I have to set in OPU5?
    Now I set parameter as below detail but it still have problem about basic date in planed order.
    Parameter in OPU5
    Detail Scheduling -> SelID:Detailed = 01
    Scheduling = Checked
    Generate capacity reqs. = Checked
    Scheduling level   = Via Detailed Scheduling
    Adjust dates = Adjust basic dates,adjust dep. reqmts to operation date
    For capacity scheduling = Always basic dates, dep.reqmts to operation dates
    Scheduling type = Backwards
    Reduction type = All operation in the order will be reduced
    Maximum reduction level = Do not reduce
    Example
    I set 3 working days on factory calendar (Monday,Tuesday,Wednesday)
    PIR   -> requirement date 18.10.2010
    Total Operation time = 5 Days (from tcode c203)
    When run MPS (MD40/MD41) with scheduling = Lead Time Scheduling and Capacity Planning
    Planned order
                          Basic Dates                                  Production Dates
    Finish              18.10.2010                                  20.10.2010
    Start                05.10.2010                                  05.10.2010
    Why basic finish dates is not equal 20.10.2010?
    Best regards,
    Jariya

  • How to Set Time Period for KM Scheduler

    Hi ,
           I have created one Par based application in which i have assigned one role to perticular id dynamically and i scheduled this task by using KM Scheduler. but this scheduler assigns this task for 1 mins or greater than 1 hrs. i wanted to run this task for every 10 mins or 20mins or 30 mins. actually i tried to edit the time table property  for KM Scheduler for 10 mins but it not works it take 1 hrs and 10 mins.
           so is there any way to edit this time table property and set scheduler time to 10 mins or 20 mins.
    Kind Regards,
    Rahul

    Hi Rahul,
    If you want to run the scheduler for every 10 minutes, you can create your own timetable and assign it in the scheduler tasks.
    Steps:
    Goto Sytem Admin -> System Config -> Knowledge Management -> Content Management -> Global Services -> Scheduler Time Table -> Time Table -> Click on New
    You can find Scheduler Time Table in advanced options.
    Specify the vales as mentioned below and save it:
    ID: <any ID as you want> 
    Minute : 10
    Time Zone  : GMT+05:30 (Asia/Calcutta) India Standard Time
    For other parameters, no need to specify any value.
    Then go to Global Services -> Scheduler Tasks -> Your Scheduler Component -> Select the new timetable you have created for timetable parameter and click OK
    I have specified timezone as IST time. You can change the time zone as you require.I have done this and its working for me.
    Hope this helps.
    PS:Reward points for useful answers
    Regards,
    Yoga
    Edited by: Yogalakshmi on Feb 27, 2008 6:14 AM

Maybe you are looking for

  • Problem with radius and wep/wpa

    Hi I have problem with wrv200 (1.0.38) +freeradius (2.0.5) +wpc54g v3.1 with wxp with patch to use wpa/wpa2 I think that authentication in my radius pass correct but there is some problem with wpa mode or wpa compatibility In my wrv200 I try mode: wp

  • New install of iTunes can't find old library

    Hello, iTunes experts. I'd greatly appreciate your help. I put a new hard drive in my computer and did a fresh install of Windows XP Pro and iTunes. My iTunes library has only a few tunes I've purchased, and the rest have been imported from .wav file

  • Encoding PDF file

    Hello, PLEASE HELP ! I can't solve this for a weeks. I have report engine which generates PDF report and it gives me an byte array (byte[]) as a output. I try to convert it to string and then pass to Internet Explorer to display it. The problem is, t

  • Monitor Calibration Resets After Screen Saver

    I have had an odd quirk the last week or so: every time I bring my monitor back from a screen saver, it has a washed-out look. I recalibrated it, which fixed it until the next time the screen saver activated. However, to revert it, all I have to do i

  • Procedure uses DBMS_SPACE error

    Hi , I use this Stored Procedure with DBMS_SPACE.SPACE_USAGE ( p_owner in varchar2, p_name in varchar2, p_type in varchar2 default 'TABLE' ) AS l_unformatted_blocks number; l_unformatted_bytes number; l_fs1_blocks number; l_fs1_bytes number; l_fs2_bl