Time call

Hi All!
I showed running time on the forms 6i but that is in this format 'HH24:MI:SS' but i want to change that format and do this 'HH12:MI:SS AM'.
I use this code.
firs i create a Timer one secoed
then WHEN-TIMER-EXPIRED trigger i increment using this
Declare
time varchar2(40) := :system.current_datetime;
begin
:cur_time := substr(time,instr(time,' ')+1);
end;
how can i change this format

there is nothing wrong with earlier posters solution. And it is ABSOLUTELY EASY,
infact its a basic SQL.
SQL> select to_char(sysdate,'HH:MI:SS') time from dual;
TIME
11:43:12
SQL> select to_char(sysdate,'HH12:MI:SS AM') time from dual;
TIME
11:43:26 AM

Similar Messages

  • ABAP: Developed new Report for Summarized JIT (Just In Time) calls

    Hi to all,
    Can anybody please tell me about the following:
    ·     Developed new Report for Summarized JIT (Just In Time) calls: This report is for Delco Singapore needs all Summarized JIT calls created between selected dates to be closed. If JIT call quantity is 0 and GR quantity is also 0, then GR flag for JIT call to be checked and JIT call will not be shown open. If the JIT call quantity is greater than zero and GR for JIT call quantity is zero then JIT call quantity made as zero and GR flag for JIT Call to be checked. Once it is checked the JIT call will not be shown in Open.
    Thanks in advance.
    Regards
    Monalisa

    Ok, I was able to figure out the functions that were confusing me. For my own record and for those that do not know, I will list how to create the objects necessary to add a new report to a menu.
    1-Write JSP (should be written just how Oracle writes theirs)
    2-Creat function for the new JSP page as System Administrator responsibility
    3-Use Sys Admin to add the function to a menu somewhere
    4-Using AK Developer responsibility, create an attribute with the label of the attribute being the name of your function you created. Oracle's convention is the name of the attribute has FS in it.
    5-Using AK Developer, lookup the ASF_FUNC_SEC_REG region
    6-Drill down into that regions attributes
    7-Add a your newly created attribute to this region
    You would do all these steps for your advanced search page as well, so that in your main jsp, you can call asfPage.setAdvancedSearchPage() with the attribute name of your advanced page.
    What I Still do not know is:
    (1) My main page keeps coming up saying that there is no default query defined for it. How do you create a default query for a report?
    (2) How to get the personalization to work.
    Can anyone help?
    Thanks!

  • HT5538 How do you separate multiple iOS devices using the same apple id account for Face Time calls and iMessaging?

    How do you separate multiiple ios devices using the same apple id account for Face Time calls and iMessaging?

    The only way I have seen is to have each device use a if fervent email account, if they all are on the same email the FaceTime connection is either to a phone number or to an email address.  If they ar all on the same email, it is up to the user to decide which to use.

  • HT204380 How can I make a face time call from one country to another( supporsing both parties using iphone 4s). What will be the caller charges. If there is no charges as we use wifi, will there be a charge till connecting the call?

    How can I make a Face Time call from one country to another( supporsing both parties using iphone 4s). What will be the caller charges. If there is no charges as we use wifi, will there be a charge till connecting the call?

    FaceTime is free to use. You will not be charged for using FaceTime.

  • My daughter shares my apple id for her ipod touch, i just got an ipad and now I'm getting her messaging and face time calls to my ipad.  Can i change her messaging and face time email but still keep the same apple id

    My daughter shares my apple id on her ipod touch.  i recently got an i pad and now i'm getting all of her instant messages and face time calls.  Is there a way to change her contact information for those two areas so i don't get them on my i pad  but keep the same apple id for purchases?  Thank you

    See:
    MacMost Now 653: Setting Up Multiple iOS Devices For Messages and FaceTime

  • HT204380 i have a mac book pro and a i-pad 2. both of the devices have the same apple id and same mailing adress. if i want to make a face-time call from my mac book to i-pad 2. how can i do that?

    i have a mac book pro and a i-pad 2. both of the devices have the same apple id and same mailing adress. if i want to make a face-time call from my mac book to i-pad 2. how can i do that?

    You have to add another email address on one of the two devices that you can use as the "You can be reached for FaceTime at" contact address and then remove/uncheck the Apple ID email address as the contact address on that device. The way you are currently setup is like to trying to call yourself on your on phone - from your own phone.
    Using the iPad as the example go to Settings>FaceTime>You can be reached for FaceTime at>Add another email address. Then add a working email address in the next window. Apple will verify the email. Go to the inbox of that email account, read and respond to Apple's email in order to complete the verification process.
    Go back to Settings>FaceTime>Uncheck the Apple ID email address and make sure that the new email address is checked/selected (you will see it being verified again) and that new email address will be your contact address for the iPad.

  • HT4623 I have an IPhone4 and is updated with version 6.1.3 and I am not able to connect with face time calls. I have checked the date ant time. I used to be able to use face time with no problem. since the late os upgrace I have not been able to connect w

    I have an IPhone4 and is updated with version 6.1.3 and I am not able to connect with face time calls. I have checked the date ant time. I used to be able to use face time with no problem. Since the late os upgrace I have not been able to connect with face time.

    Read http://support.apple.com/kb/ts3367

  • Why can´t i use face time call with on my ipod touch with ios6

    Why can´t i use face time call with on my ipod touch with ios6

    iTech, First change your apple password, than go to 'setting' and than click on 'Facetime' and make sure your facetime email is right than retry. Also calling apple support can help you or the best way is to go down to the apple store for direct help. I really hope that what i have told you have helped and try to reset your iphone.
          iTech Support Team

  • Stateless Bean - scope of instance variable in EJB Timer call back function

    Hi,
    I would like to know on the scope of an instance variable of a Stateless Bean object,
    when used in a EJB Timer call back.Let me explain this in more detail below.
    I have a requirement to use a EJB Timer.
    For this, I have created a stateless object since Timer creation needs to be done
    from a stateless bean. I have a member variable "count" of the stateless bean class.
    In the timer call back(ejbTimeout), I am able to use this count variable during
    each time of the call back, and the value of this variable is also updated properly.
    I have a few queries with respect to the above behaviour:
    1) Does stateless bean object not get destroyed once the Timer is created from the Bean?
    2) If the Bean object is not destroyed, then when does the bean object get destroyed?
    3) If both (1) and (2) are not true, then can anyone explain on how the above behaviour is possible?
    Thanks in advance,
    Ulrich

    Hi Ulrich,
    The ejb timer is associated with the stateless session bean component, not with a particular bean instance. There is no formal relationship between the bean instance that called createTimer() and the bean instance on which the timer callback happens. If they're the same in your test run that's just a coincidence and not something your application should be depending on.
    In the stateless session bean model, the container can create and destroy stateless session bean instances at any time. The container is free to pick any stateless session bean instance to service any client invocation or timer callback. If you need to pass context into a timer callback, one way to do it is via the timer "info" object. However, the info object is immutable so it wouldn't be a good match for a counter. You could of course always just use a database for any necessary coordinated state.
    --ken                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Develop new Report for Summarized JIT (Just In Time) calls

    Hi to all,
    Can anybody kindly tell me how to develop new report for   summarized JIT (Just In Time) calls.
    Thanks in advance,
    Regards
    Simi

    I think it is a good feature, but I'd like to make some suggestions.
    1) When the dialog pops up (like your attachment), it would be nice if I could tell it right then that I don't care about that advice. Right now you have to click on the link and then say you don't want the advice in the future. I think it is that extra step that is really annoying. I think, like most people, my instinct is to just close the dialog. Then next time I run LabVIEW I have to deal with it again. After the 5th time dismissing the damn thing I turn it off.
    2) It would be nice to have an easy way to turn JIT advice off for a particular session. For example, I'm called on to help get new employees up to speed in LabVIEW. When I sit down at their computer to help design/debug things, I would really like to turn off JIT advice but just for my session. I don't want to change the other persons settings.
    3) It would also be nice to be able to turn off JIT advice without going to the options.
    So, I guess what I would like is this. When the JIT advice dialog comes up, instead of only having the link to the advice I'd like to see some a button that will turn off this topic in the future, a button that will turn it off for this session of LabVIEW and a button that will turn JIT off for good (with a verification dialog).
    So, experience programmers with a new install will just turn it off for good the first time it pops up. Experience programmers on someone else's machine can turn it off without messing up the other persons ini file and I can leave it on when LV8 comes out and just dismiss the old advice quickly as it comes up.
    Pat

  • I bought an iphone for my daughter and was unaware that we should have a seperate appleid for each.Now we share an id and get eachothers contacts and face time calls. I recently bought another iphone and want to change ids without loosing items and music.

    I bought an iphone for my daughter and was unaware that we should have a seperate appleid for each.Now we share an id and get eachothers contacts and face time calls. I recently bought another iphone and want to change ids without loosing items and music. How do I do this? The new phone is a 5.

    All purchases are always going to be associated to the ID that was used to purchase/download them.
    If you create an ID for your daughter you will want to check everywhere it is used to make sure you are not sharing messages and stuff. These would be iTunes/app store, iCloud, iMessages, and FaceTime.
    Go thru settings and find all mention of your ID.

  • TS3367 can't turn off mute on face time; caller can't hear me

    can't turn off mute on face time; caller can't hear me.....

    see if this link helps http://support.apple.com/kb/TS2802

  • TS3367 My wife and i have 2  iphone 4s . since i installed ios6 face time calls  on both phones at the same time when friends try to face time me

    My wife and i have 2 iphone 4s. Since i installed ios6 face time calls on both phones at the same time when friends try to face time me.
    Also when my wife messages me her phone receives the message first in notifications bar 

    This sounds like an Apple ID problem.  Do each of you have your own Apple IDs?  Are they each properly set on each phone?  You might try logging out of Facetime and iMessage, then logging back in.  This often fixes connectivity issues.

  • My face time calls just stay at connecting when I pick up a facetime call..

    Recently I have started having a problem with facertain time, I Can Pick Up A Face Time Call But It Just Stays At Connecting

    Apple has released a document which is reported to address the recent FaceTime issue.
    http://support.apple.com/kb/TS5419

  • How can I make two face time calls simultaneously like they did on the recent episode of Modern Family?

    When I make a Face Time call there is no ability to make another call and conference the second person it. However, on a recent episode of Modern Family they were able to do just that.

    I havn't got it, but have you tried the Skype for iPad app ? - http://itunes.apple.com/us/app/skype-for-ipad/id442012681?mt=8#

  • Face time call failure

    When I get a face time call from I phone on my I pad it fails before I can recieve it,it works fine if I call from my I pad to the iPhone
    pl help and adv

    Using FacTime
    http://support.apple.com/kb/ht4319
    Trouble-shooting FaceTime
    http://support.apple.com/kb/TS3367

Maybe you are looking for

  • Webservice authentication problem

    Web Service Authentication problem Posted: Jun 17, 2005 3:32 PM        Reply      E-mail this post  Hi I have created a portal service and exposed this service as a webservice. I am consuming this webservice in webdynpro. Portal service contains 2 si

  • XML File splitting in PI

    Hi all, We have a requirement that the receiving application can accept files only of size 2MB. So this is a limitation from the receiving application The source system is SAP ECC system and the receiving application is a legacy application. Technica

  • HT203200 i get a -50 error message when trying to sync my iphone. Why?

    i get error message -50 when trying to sync my iphone. Does anyone know why?

  • Credit and Debit memo

    Hi How can we credit memo and debit memo with out distrubing the customer accounts. we should credit the with respect to order but it should not give credit to the customer and after some time we need to debit with the same ammount even this should n

  • Page goes blank if I scroll down

    Hey guys, I am using iWeb '08 to create a basic webpage. For some reason, if I scroll down (in iWeb), the page will go completely blank (just shows the template background) with no items on the page. If I scroll back up to the top, the items reappear