Please HELP!!!  Issue w/ Transformation from date to dateTime type

Hi Guys,
I'm having a problem with converting date to dateTime. We have a webservice that contain dateTime type and the input is date type. Is there a simple way to convert/transform a date to dateTime format? Example date = "2009-09-12", need to convert to dateTime = "2009-09-12T00:00:00". Thanks for helping!!!

For this specific situation you could also make use of the concat string funtion: concat(date, 'T00:00:00'). The result equals your dateTime format.
Kind Regards,
Andre

Similar Messages

  • Please help 'Translate' These codes from AS2 to AS3 for me

    Hi, i need help 'translating' these codes from Action Script 2 to Action Script 3. Please Do it for me:
    toc    loadText = new LoadVars();
        loadText.load("Curie.txt");
        loadText.onLoad = function(success) {
            if (success) {
                // trace(success);
                Curie.html = true;
                Curie.htmlText = this.Curie;
    Please translate it for me, i need it ASAP thanks
    Kenneth

    Thank you for helping me
    Kenneth
    Date: Thu, 15 Oct 2009 05:49:14 -0600
    From: [email protected]
    To: [email protected]
    Subject: Please help 'Translate' These codes from AS2 to AS3 for me
    Take a look at that:
    http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/migration.html
    There is a LoadVars section on that.
    There is also a tutorial here:
    http://www.republicofcode.com/tutorials/flash/as3externaltext/
    Cheers,
    CaioToOn!
    >

  • HT201493 How do I get my old apple ID/email from popping up and asking to verifie it's getting annoying? I've change everything to my new email an my old one keeps popping up please help me stop it from popping up all the time?

    How do I get my old apple ID/email from popping up and asking to verifie it's getting annoying? I've change everything to my new email an my old one keeps popping up please help me stop it from popping up all the time?

    Did you change the ID you are using for iCoud?  If so, did you delete the account, then sign back in with your new ID on your device?

  • Please help my ipod disconnected from the Internet and wont reconnect and i did the right password

    please help my ipod disconnected from the Internet and wont reconnect and i did the right password

    - Do other devices still connect to the network?
    - Does the iPod connect to other networks?
    - Reset the iPod. Nothing will be lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on the router.
    - Reset networks settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - iOS: Recommended settings for Wi-Fi routers and access points

  • Please help me to convert from 5.0 to 2009

    Please help me to convert from 5.0 to 2009
    Source LabVIEW version: LabView 5.0
    Target LabVIEW Version: LabView 9.0
    Thank you so much..
    Solved!
    Go to Solution.
    Attachments:
    shutter.llb ‏255 KB

    LabVIEW 9.0
    Attachments:
    shutter.llb ‏90 KB

  • My notebook is simply death, so I cannot sync my Ipod with another notebook. What can I do? Please help me! Greetings from Austria

    My main notebook crushes and now I would like to sync my Ipod with annother notebook! So what ca I do? Please help me! Greetings from Austria

    See Recover your iTunes library from your iPod or iOS device.
    tt2

  • Please Help! For some reason when ever I type in PSE it comes out very faint and almost invisable???

    Please Help! For some reason when ever I type in PSE 10 it comes out very faint and almost invisable like. I'm not sure what I did but I cant get it back to the normal black font??? Please help. I know this seems like a very simple and easy question. I could use any advise. I've tried everything.

    Further to what dominic said, in PSE 11 and 12, you get to Reset Tool by clicking the four-lined square on the upper right of the Tool Options area. In older versions, click the tiny triangle or tool icon at the far left of the Options Bar.

  • Please help me to solve this date comparision issue..

    Please help me to solve this issue..
    If i have some data like the following..
    ID           START DATE             END DATE
    1             20080101              20080501
    1             20080502              20080630
    2             20080631              20080801
    2             20080802              20080901
                                                 ---------------> There is a break in date over here
    2             20080930              20081029
    2             20081030              20081130
    I need to compare the End Date with the start date (These data will not be in order)
    and find out if there is any break and should get the output date : *20080930*
    I am trying to do this in SQL or PL/SQL.Please help me .
    Thanks in advance.
    phani

    Hi Frank ,
    Sorry to bug you again. I ran your code on my actual data but not gettting the expected output.Here i am posting the actual code and the output that i got when i ran your code.Please bear with me and help me to solve this..
    /* Formatted on 5/25/2009 2:27:24 PM (QP5 v5.115.810.9015) */
    SELECT   member_nbr,
             aff_nbr,
             ymdeff,
             ymdend,
             gap_before,
             COUNT (gap_after)
                OVER (PARTITION BY member_nbr, aff_nbr ORDER BY ymdend DESC)
                AS gap_cnt
      FROM   (SELECT   member_nbr,
                       aff_nbr,
                       ymdeff,
                       ymdend,
                       CASE
                          WHEN ymdeff >
                                  LEAD(ymdend)
                                     OVER (PARTITION BY member_nbr, aff_nbr
                                           ORDER BY ymdend DESC)
                                  + 1
                          THEN
                             1
                       END
                          AS gap_before,
                       CASE
                          WHEN ymdend <
                                  LAG(ymdeff)
                                     OVER (PARTITION BY member_nbr, aff_nbr
                                           ORDER BY ymdend DESC)
                                  - 1
                          THEN
                             1
                       END
                          AS gap_after
    ------------I need this SQL to filter the whole data to the data that i posted in previous post -----
                FROM   (  SELECT   ms1.member_nbr, 
                                   ms1.aff_nbr,
                                   ms1.ymdeff,
                                   ms1.ymdend,
                                   ms1.void
                            FROM   (SELECT   ms.member_nbr,
                                             ms.aff_nbr,
                                             ms.ymdeff,
                                             ms.ymdend,
                                             ms.void
                                      FROM   MEMBER mb, member_span ms
                                     WHERE   mb.member_nbr = ms.member_nbr
                                             AND (20090523 BETWEEN ms.ymdeff
                                                               AND  ms.ymdend
                                                  AND TRIM (void) IS NULL)
                                             AND mb.member_nbr = 'A1000073000 ')
                                   eff_pcp,
                                   member_span ms1
                           WHERE   ms1.member_nbr = eff_pcp.member_nbr
                                   AND (SUBSTR (eff_pcp.aff_nbr, 1, 6) =
                                           SUBSTR (ms1.aff_nbr, 1, 6))
                        ORDER BY   ms1.ymdeff DESC)
    ---------- end of my part  ----------
                table_x) got_gaps;Outputs that i got when i ran that code for each individual members..
    Sorry to bug you frank and thanks for all the help.I will post here if i get any other data.
    Thanks
    phani

  • How can I follow-up directly to apple, for my defective iphone5. They promise to replace it but then it's been a month. I want to know when exactly will I get the replacement. PLEASE HELP ME. Im from the Philippines.

    I just bought my iphone5 last march 27, but then after a few weeks I noticed that there is something loose inside of it. So I went to Globe Philippines, a telecommunications company in the Philippines and one of the authorize distributor of iPhones here ib the country, but instead of just replacing my defective phone, the advised me to wait for 3 to 4 weeks for them to be able to replace it because the replacement unit will be coming from Apple Singapore. I said ok then, but It's already a month now, still there is no feedback regarding the status of my phone. PLEASE HELP ME! Apple Singapore, Im begging you to replace my phone.

    All support for your iPhone in the Philippines is handled by Globe, so you need to continue to work with them on the issue. No one here can help you directly with this issue, nor is there any way you can yourself contact the repair depot in Singapore (if indeed that's where it is). You can, however, try calling Apple Support in the Philippines at 1-800-1441-0234, ask to speak with someone in Customer Relations, and ask if there's anything they can do to help expedite the process.
    Regards.

  • Please Help me with my monthly data fee 3.99$!!! URGENT!!!!!!!!!!!!!!!!!!

    Hi Sir,
        Thank you very very and very much for your possible help.
        I checked that I was kept charged 3.99 every month for Get it download Now--VZW Pix Unlimited data fee, every 27th every month. It shows Used 1 Billable 1 every month for $3.99. WHAT IS GOING ON??????????? I really dont know what happened because I dont wanna use this service and I dont wanna download anything from the internet. 
       Please help me help me because the 27th is very close. I definitely would like to cancel and get rid of this.
    Best,
    Ming

    Maggicmore, the subscription can be cancelled directly from your device. To do so, select Menu from your device, then choose Media Center (or Get It Now on older model phones), select a category (Pictures&Videos), highlight the application, then select Options and choose Cancel Subscription.
    Thank you, 
    AraceliT_VZWSupport
    Follow us on Twitter @VZWSupport

  • Please Help:(,Unable to capture from camcorder using Audigy 2 ZS Video Edi

    Hi there! Well I have been trying to use the Sound Blaster Audigy 2 zs video editor to transfer Hi8 tapes from my camcorder (Samsung SLC860) to my laptop (Compaq presario, AMD Athlon 64 3200+, .25 GB RAM, xp). I have successfully done this before *sort of*. Before i was able to capture video from my camcorder without the sound. But now I cant even capture video! I get an error when using Ulead VideoStudio 8 SE reading: 5065:29:0. Please help, anything would be great! Thank you! Oh, i've tried reinstalling the drivers already, didnt work. P.S. I connect the camcorder to the Creative Audigy using S-Video. I have also tried A/V out from the camcorder to video-in on the Audigy. I have also downloaded VidCap and other driver updates from Creative but those didn't work either. I've tried VidCap other capture programs, none worked. Any help would be great. Thank you!
    Message Edited by DjShadowalker on <SPAN class=date_text>06-06-2006 <SPAN class=time_text>:09 AM
    Message Edited by DjShadowalker on 06-06-2006 :09 AM

    Hi there! Thanks for the reply, unfortunately, I've tried VidCap and it wont let me capture either. The Start button on Step 3 isn't acti've. Its not bold, and when i click on it nothing happens. But under device manager and Sound, Video and game controllers, there are alot of things. They are as followed: Audio Codecs, Legacy Audio Drivers, Legacy Video Capture Drivers, Media Control Devices, Sound Blaster Audigy 2 ZS Video Editor Audio Device, Sound Blaster Audigy 2 ZS Video Editor Video Device, SoundMAX Intergrated Digital Audio, Video Codecs. Do you think any of these could be interfering with one another? If so, which ones can be safely disabled? I've also tried downloading all the necessary updates for VidCap and I've even tried reinstalling the Audigy card many times. I am able to see the preview of the video on both programs VidCap and VideoStudio but I just can't capture. Once again, the error message on VideoStudio is: 5065:29:0. Thank you so much, hopefully I hear from ya soon and this can be fixed.

  • Urgent, Please help !!! Input Date field in Mysql database using JSP

    Hi All,
    Please help me ! I am trying to store a date field in MySql databaseusing JSP on Tomcat Server.I am gettting the following error.
    I am taking the String Input and then trying to convert it into date type
    inorder to store it into date field in a database.
    I am using the following code :
    <%
    try{
    String dt=request.getParameter("avldt");
    SimpleDateFormat adt= new SimpleDateFormat("dd-MM-yyyy");
    Date sqlToday = new java.sql.Date(adt.parse(dt).getTime());
    catch(ParseException e){
         e.printStackTrace();
    %>
    But I am getting the following error message :
    Class jsp.myjsp.SimpleDateFormat not found.
    Please help me !!!.It's very urgent.
    Thanks,
    Savdeep

    programming is more then copy pasting, it actually is usefull to think about what you are doing. First you declare that you date is format dd-MM-yyyy, then you want to parse a date in format dd/MM/yyyy and behold Java warns you it cannot parse the one into the second ! Cant you solve the rest of this puzzle yourself then ?

  • Please Help Get a Color from Pixel !!!!

    Is anybody know how to get a Color from pixel.
    My program is not Full Screen .
    So i think Robot.getPixelColor() don't suitable.
    Please Help me!

    Robot.getPixelColor() will work fine, but the problem you will have is getting the mouse set to the correct location and getting your application to know where it is: you can do it with win32 calls and JNI. Here are a few that I have found helpful--they are in a VB format:
    Public Const CLR_INVALID = &HFFFF 'not a valid pixel
    Public Const MOUSE_MOVED = &H1
    Public Const MOUSEEVENTF_ABSOLUTE = &H8000 ' absolute move
    Public Const MOUSEEVENTF_LEFTDOWN = &H2 ' left button down
    Public Const MOUSEEVENTF_LEFTUP = &H4 ' left button up
    Public Const MOUSEEVENTF_RIGHTDOWN = &H8 ' right button down
    Public Const MOUSEEVENTF_RIGHTUP = &H10 ' right button up
    Public Const REQUEST_LEFT_CLICK = &H2D 'request left click "-"
    Public Const REQUEST_RIGHT_CLICK = &H2B 'request right click "+"
    Type POINTAPI
    x As Long
    y As Long
    End Type
    Type POINTSTRUCT
    hwnd As Long
    hdc As Long
    ptAbsolute As POINTAPI
    ptOrigin As POINTAPI
    ptLocal As POINTAPI
    ptColor As Long
    sType As String
    retMessage As Boolean
    End Type
    Declare Function GetCursorPos _
    Lib "user32" (ByRef lpPoint As POINTAPI) _
    As Long
    Declare Function SetCursorPos _
    Lib "user32" (ByVal x As Long, ByVal y As Long) _
    As Long
    Declare Sub mouse_event _
    Lib "user32" (ByVal dwFlags As Long, _
    ByVal dx As Long, _
    ByVal dy As Long, _
    ByVal cButtons As Long, _
    ByVal dwExtraInfo As Long)
    Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
    Declare Function GetMessageExtraInfo Lib "user32" () As Long
    Declare Function GetPixel Lib "gdi32" (ByVal hdc As Long, _
    ByVal x As Long, _
    ByVal y As Long) As Long
    Declare Function WindowFromPoint Lib "user32" (ByVal xPoint As Long, _
    ByVal yPoint As Long) As Long
    Declare Function GetWindowDC Lib "user32" (ByVal hwnd As Long) As Long
    Declare Function GetWindowOrgEx Lib "gdi32" (ByVal hdc As Long, _
    ByRef lpPoint As POINTAPI) As Long

  • PLEASE HELP! finding ORIGINAL release date of music

    Does anyone know of a way to change the default release date of music to the actual date the music was released? Is there a more efficient way, other than looking up each song one at a time at a site like www.allmusic.com? PLEASE HELP!!

    Just in case I'm interpreting something about your description, you don't need to change info for every song one at a time.
    If you have a lot of songs in which they are the only song of a given album, then yes, you have to. But in the case where you want to change all the tracks on a given album to have the release date of that album, you can select all the tracks for that album by clicking the first track, holding SHIFT, and then clicking the last track. Then press CMD+i to bring up the Info window and you can change the date for the whole album at once.

  • I want to arrange / organize my photos in the various EVENTs, how is this being done ??? please HELP, thank you, manfred from jupiter

    I  have set up several EVENTs for my photos in iPhoto. Now when I click on an Event, I want to arrange the pictures within this event , when I click on the picture  I  want to move, it does not move, it stays in place. ( yellow fram around the picture does appear )  I clicked on the VIEW tab, selected " sort EVENTS" than I slide over to manually and  the word appears in grey rather than black .  Therefore I am unable to move the picture to the place I want it to be within that same event.  Please be kind and Help,  thank you,  manfred from jupiter

    Hello Old Toad,
    thank you for your reply, very much appreciated.
    I am sending you the same anwer I sent out to LarryHN, since it covers the ame topic.....
    My version of iPhoto is  :  " iPhoto  08 " , version 7.1.5  ( 378 )
    I set up an " Album " as you suggested and this procedure works,  I am able in this new Album to change the pictures around as I want it to be.
    However in checking back at the same  " Event"  Album / Gallery  the pictures still remain the old way and do not show the changes I made in the new Album version.
    I guess that's the way it will be. Take it or leave it..... or do you have another suggestion ????  Thank you for looking into my problem. Please let me know.  Thank you  again manfred from jupiter

Maybe you are looking for

  • Printing too dark with CS4 and HP printer

    I'm using a Macbook and an HP Photosmart C6180. Any photo I edit in Photoshop CS4 prints much darker than it appears on screen, regardless of what application I actually print from. On the other hand, photos I edit in a different application (e.g., P

  • Adding a new user to default My dashboard

    Hi Forum, I am stuck in a peculiar situation although it is not so tricky issue. I have created reports under default dashboard i.e My Dashboards with a user aaa. Later I have created a user with bbb. Now I want the user bbb to access the My Dashboar

  • How to insert dummy image into PDF

    I am trying to insert signatures into our Custom Purchase Order that I am building in Adobe Acrobat 8 Pro. I can find plenty of documentation on how to do this via an RTF in Word Template Builder, but nothing on inserting the dummy image. Currently,

  • Report output on excell file

    Hi, I am running a report as desformat=spreadsheet destype=file desname=c:\ssss.xls now after getting the message "SUCCESSFULLY RUN" this file is generating in server's c: drive, is there anyway to save it on the local PC from where the report is bei

  • EHP1 in IDES BI7.0

    Hi, We have BI 7.0 IDES version installed in windows server, oracle as database.Patch level of SAP_ABA & SAP_BASIS is 19. Path : Installations and Upgrades - Entry by Application Group" SAP Application Components" IDES SOLUTIONS" IDES SEM-BW 6.0/7.00