Time format change from 24 hr format to 12 hr format

Hai all,
The client wishes to enter the time in the 12 hr format.could you please tell me , what are the necessary settings to be done from convertion of 24 hr format to 12 hr format ?
How it can be done at user level and T.Code level?
Please throw some ideas.
Regards,
Suresh.

Hai,
This is  for the updation of the past data where they have maintained the time format as 12 hr format.Since while uploading, it is very difficult to change into 24 hr time format and i need to change the settings so that system should take the input as 12 hr format. There is no problem whatever the output shows either 12 hr or 24 hr format.
Please throw some ideas
Regards,
Suresh.

Similar Messages

  • Can only connect 1 computer at a time after changing from DSL to Cable.

    I have 2 laptops using Airport cards, and one Tower connected via ethernet to Airport basestation. With DSL no problem (DSL required PPPoE). With cable I can use internet assistant and restart each device and finally connect, but only one at a time. I'll set up one, then have to reboot everything to set up the next computer and lose the connection with the first. Cable needs to use DHCP it seems.
    To get it to work with the new modem I had to change the base stations configuration from distributing IP addresses to not distributing IP addresses. Methinks this has something to do with my not being able to get more than one computer working at a time.
    Any help would be appreciated. Have to iBooks, and a G4 tower. 2 running OSX10.4.10, and one wtih 10.5.2.

    Figured it out after about an hour talking first with Comcast, then Apple support. AEBS was not acting as router at all, and had been put in bridge mode.
    Easy solution once this was realized was to do hard reset (I thought I was doing this by unplugging the AEBS, but had to actually find and press the hard reset button) which reset all the settings at which point setup was pretty easy. Made sure it was not in bridge mode, did an automatic setup using the Airport utility, and voila. Everything including my new iPod could connect.
    Now if I could only have the 6 hours back that I spent going around in circles in bridge mode.

  • Premiere Pro 6 refreshing capture device every time I change from source window to timeline.

    I have an external audio device/interface connected with a firewire. Premiere sees this as a DV/HDV capture device and everytime I flick from the source monitor to the timeline (umpteen times a minute) the audio device restarts causing a complete system freeze for 10 seconds. I can no longer edit with audio through my speakers because of this.
    I've tried changing the capture device in the preferences to None, but as soon as I go back to the preferences it has changed itself to DV/HDV.
    I'm using Premiere Pro 6.0.1 on a Mac OSX 10.6.8. The device is a PreSonus Firefox audio interface.

    Thanks Admiral Cook. Looking through your post, I played around with some settings and now my delay is only 2-3 seconds when flicking through panels. I set the audio hardware and mapping to System Default instead of my external firewire device.
    But still, a 2-3 second delay when switching back nad forth through panels? Really?

  • Time stamp changed from RAW to JPG

    When I save my RAW photos in Lightroom Beta 4, the jpg files have the time of conversion, not of picture taking.

    Or have you stripped the Metadata during the Export.....if you have "Copyright Only" selected in the Metadata section of the Export dialog, all original dates are stripped, and you'll get only the file created/modified dates (which will be the date/time of export).

  • Can anybody help me??? Changing from 3GS to iPhone 4

    I'm getting the new iphone 4 tomorrow morning as soon as they come out. Last time I changed from a 3G to a 3GS I lost all of my apps and music. Can anyboy help me and tell me if there is something I can do to prevent this happening again tomorrow?

    Debs W wrote:
    I'm getting the new iphone 4 tomorrow morning as soon as they come out. Last time I changed from a 3G to a 3GS I lost all of my apps and music. Can anyboy help me and tell me if there is something I can do to prevent this happening again tomorrow?
    I just went from 3G to 4. The steps I used was:
    1) Activate the iphone 4 as a new phone (not from backup)
    2) tested mosts functions to make sure the phone was good.
    3) restored the iphone from backup of my 3G which I upgraded to iOS4 Monday.
    4) Allowed time for all the data to be restored to the phone.
    5) put in any required passwords, etc for email and wifi network.
    Are all these steps necessary? I don't know, but it worked for me.
    Hope all goes well...

  • Array removeItem: QTY changes from 1 to 0 to -1; $5.00 to $0.00 to -$5.00

    In my array for a Shopping Cart, the customer can select to add, subtract or delete an item.
    All the functions work.
    In the code to subtract, when the function is invoked, quantity changes from 1 to 0 in the cart, with a total value of $0.00.
    A line also appears telling the customer that the cart is empty.
    But if you click the subtract one more time, quantity changes from 0 to -1, with a value of -$5.00.
    How can I delete an item when the subtraction results in a quantity of 0?
    Many thanks, Charlie
    CART.CFM
    <cfif isdefined("url.action")>
        <cfif url.action is "addQuantity">
            <cfset session.cart.addQuantity(url.position)>
            <cflocation url="cart_main.cfm">
        </cfif>
        <cfif url.action is "subtractQuantity">
            <cfset session.cart.subtractQuantity(url.position)>
            <cflocation url="cart_main.cfm">
        </cfif>
        <cfif url.action is "delete">
            <cfset session.cart.removeItem(url.position)>
            <cflocation url="cart_main.cfm">
        </cfif>
    </cfif>
    <cfset arCart = session.cart.getCart()>
    <table>
        <cfoutput>
        <cfloop from="1" to="#arraylen(arCart)#" index="counter">
            <tr valign="top">
                <td>#arCart[counter].isd_code#</td>
                <td></td>
                <td>#arCart[counter].title.gettitle()#</td>
                <td></td>
                <td>#dollarformat(arCart[counter].price)#</td>
                <td></td>
                <td>#arCart[counter].ItemName#</td>
                <td></td>
                <td align="center">#arCart[counter].quantity#</td>
                <td></td>
                <td><a href="cart.cfm?action=addQuantity&position=#counter#">ADD</a></td>
                <td></td>
                <td><a href="cart.cfm?action=subtractQuantity&position=#counter#">SUB</a></td>
                <td></td>
                <td><a href="cart.cfm?action=delete&position=#counter#">DEL</a></td>
                <td></td>
                <td>
                    <cfset variable.itemTotal = (#arCart[counter].quantity# * #arCart[counter].price#)>
                    #dollarFormat(variable.itemTotal)#
                </td>
            </tr>
        </cfloop>
        </cfoutput>
    </table>
    SHOPPINGCART.CFC
    <cfcomponent output="false">
        <cfproperty name="arCart" type="array" default="arraynew(1)" />
        <cfscript>
            variables.arCart = arraynew(1);
        </cfscript>
        <cffunction name="subtractQuantity" access="public" output="false" returntype="void">
            <cfargument name="position" required="true" type="numeric">
            <cfparam name="subQty" type="numeric" default="1">
                 <cfset arCart[position].quantity = arCart[position].quantity - subQty>
        </cffunction>
        <cffunction name="removeItem" access="public" output="false" returntype="void">
            <cfargument name="position" required="true" type="numeric">
            <cfset arraydeleteat(arCart, arguments.position)>
        </cffunction>
    </cfcomponent>

    It's hard to understand exactly what's going there but this code might help set you in the right direction. It basically looks at the quantity of the item for the given position and it won't let you subtract more than the number of items that are in it, or go below zero.
    <cffunction name="subtractQuantity" access="public" output="false" returntype="void">
        <cfargument name="position" required="true" type="numeric">
        <cfargument name="subQty" type="numeric" default="1">
        <cfif arCart[arguments.position].quantity gte 1 and arguments.subQty lte arCart[arguments.position].quantity>
            <cfset arCart[arguments.position].quantity = (arCart[arguments.position].quantity - arguments.subQty)>
        <cfelse>
            <cfset arCart[arguments.position].quantity = 0 >
        </cfif>
    </cffunction>
    One other thing I noticed in your subtractQuantity() function was that you have a cfparam instead of a cfargument tag, this is probably also causing you issues.
    -JD

  • Change time from number format(ie. 3.50 hours) to regular time format( ie.3:30)

    How do you Change time from number format(ie. 3.50 hours) to regular time format( ie.3:30)

    I performed the following function in order to get my report to view the information the way that I wanted to see it:
    put this formula across from the caption âu20ACu0153Display Stringâu20AC within the âu20ACu0153Format Fieldâu20AC window for description.Â
    whileprintingrecords;
    MonthName(tonumber(Mid({CartonHistory.DateTimeStamp},5,2)),true) & Mid({CartonHistory.DateTimeStamp},7,2) & ", " & Mid({CartonHistory.DateTimeStamp},1,4)Â & " " & Mid({CartonHistory.DateTimeStamp},9,2) & ":" & Mid({CartonHistory.DateTimeStamp},11,2) & "." & Mid({CartonHistory.DateTimeStamp},13,2)
    It converts dates from: 20061212102311xx to: Dec12, 2006 10:23.11.

  • HT202174 In need to change from appleshare to mac os journaled disk format on my time capsule. How to proceed?

    In need to change from appleshare to mac os journaled disk format on my time capsule. How to proceed?

    No Time Capsule disk can be formatted other than the automatic system in the TC itself.. You simply select erase and it will reformat the drive.
    If you are referring to a USB drive.. plugged into a Time Capsule.. you must plug it into your Mac and use Disk Utility.
    However you do need to understand.. appleshare is not a disk format.. it is a partition scheme.. so when you pick the disk you need to change its partition to GUID.. this is nothing to do with Mac OS journaled format.. the two are distinctly different. Also Appleshare works fine for most people.. there really is no need to change.
    Anyway here is how to do it.
    I have sd card I can use as example. Click on the Partition Layout.. so you can choose something else.. notice it is presently set to Master Boot Record.. but is formatted Mac OS Extended Journaled.
    When you change the partition layout Options at the bottom will become active and you can change the setting. Click Options.
    Choose whichever. GUID is the current system for boot drives.
    None of this is relevant to the internal disk of the Time Capsule.

  • During export from Discover to Excel, Time Format changes to Number Format

    Hi
    I have a seconds column which is of number datatype. But in my report, I am converting the number in *0HH:MI:SS* format. For example, I have *4952534 seconds*. So my report is showing *1375:42:14* which is a Time Format. It looks good when I view the data in Discoverer Viewer or Plus. But when I try to export the data to Excel, the time format gets converted to *4952534 seconds*, which is creating problems. So can you suggest on how can I preserve the formatting during export to excel from discoverer.
    Thanks
    Sachin

    Hi,
    Excel will not implement the 0HH:MI:SS data format, it just gets the field as a number. You will have to format the field into text using the calculation from my previous post.
    Rod West

  • When double to digital indicator set to display in time format... Value changes.

    Dear all,
    I am having trouble displaying the value I want. I have a double value say 320 sent to a digital indicator where I have edited the properites of it to display in a time format containing only minutes and seconds like so, '3:20'. Unfortunately it'll take the value and change it to a another value and display that. I do not know what the issue is. If anyone knows the solution... PLEASE post!
    There is an image attatched! 
    Thanks.
    Solved!
    Go to Solution.
    Attachments:
    img.JPG ‏24 KB

    I only believe so due to the fact that when I convert a value from time stamp to double such as 3:20 it gave me 320. So I thought that the reverse might be try. Should I just input the total amount of seconds and that will output the Minuteseconds that I want?
    Thanks for quick reply.

  • How to change date and time format

    Hi experts,
    Can i know how to change the date and time format?
    I want the date format to be dd-mmm-yyyy  and time format to be hh:mm:ss
    These date and time is in my sapscript form.
    I make use of PERFORM function in sapscript.
    This is the code in my print program.
    FORM get_actlog_QA TABLES in_tab STRUCTURE itcsy
                           out_tab STRUCTURE itcsy.
       DATA: object TYPE string, "
            qaname LIKE JCDS-USNAM, "NAME for engineering process, QA Manager
            qadate LIKE JCDS-UDATE, "DATE changed in engineering process, QA Manager
            qatime LIKE JCDS-UTIME. "TIME changed in engineering process, QA Manager
    DATA: lt_jcds type standard table of jcds,
          wa_jcds like line of lt_jcds,
          new_date(10) type c.
      READ TABLE in_tab INDEX 1.
      MOVE in_tab-value TO object.
      select * into CORRESPONDING FIELDS OF TABLE lt_jcds
      from jcds WHERE objnr = object
        AND  ( stat = 'E0005' )
        AND inact = ''.
      Loop at lt_jcds into wa_jcds.
          qaname = wa_jcds-USNAM.
          qadate = wa_jcds-UDATE.
          qatime = wa_jcds-UTIME.
       READ TABLE out_tab INDEX 1.
       MOVE qaname TO out_tab-value.
       MODIFY out_tab INDEX sy-tabix.
       READ TABLE out_tab INDEX 2.
       MOVE qadate TO out_tab-value.
       MODIFY out_tab INDEX sy-tabix.
       READ TABLE out_tab INDEX 3.
       MOVE qatime TO out_tab-value.
       MODIFY out_tab INDEX sy-tabix.
      endloop.
      clear wa_jcds.
      ENDFORM. 
    This is my PERFORM in sapscript.
    /:           DEFINE &V_QANAME& = ''.
    /:           DEFINE &V_QADATE& = ''.
    /:           DEFINE &V_QATIME& = ''.
    /:           PERFORM GET_ACTLOG_QA IN PROGRAM ZFIR002
    /:           USING &VIQMEL-OBJNR&
    /:           CHANGING &V_QANAME&
    /:           CHANGING &V_QADATE&
    /:           CHANGING &V_QATIME&
    /:           ENDPERFORM.                     
    Sapscript
    Prepared by : &V_QANAME& ,, &V_QADATE& ,, &V_QATIME&
    The output now is
    Prepared by: Name   20080312  115536 
    I want to change the date format to 12-MAR-2008
    and the time format to 11:55:36 
    Can anyone please suggest on how to solve this?
    Thank you.

    Hi,
      Before assigning the  QADATE value you can write the logic to display  20080312   as  12-MAR-2008  taking the offset values .
    Like
    qadate = wa_jcds-UDATE.
    qatime = wa_jcds-UTIME.
      lw_year    = qadate(4).
      lw_month = qadate+4(2).
      lw_date    = qadate+6(2).
    case lw_month.
    when 1.
    when 2.
            concatenate lw_date  '-FEB-'  lw_year into qadate.
    when 3.
          concatenate lw_date '-MAR-' lw_year into qadate.
    endcase.
    READ TABLE out_tab INDEX 2.
    MOVE qadate TO out_tab-value.
    MODIFY out_tab INDEX sy-tabix.
    And you can also change the timeformat also  .
    then assign that value to qatime .Then
    READ TABLE out_tab INDEX 3.
    MOVE qatime TO out_tab-value.
    MODIFY out_tab INDEX sy-tabix.
    I think this helps you.
    Regards,
    Rajitha.

  • How do you change the date and time format in Pages

    I've tried changing the date and time format a number of times for Pages but it does not change.  I'm going to the System Preferences/Language and Text and Formats.  I make the changes click on OK and go back to Pages.  NO change.

    Hi Uncle,
    Page 116 of the Pages'09 User Guide: Control Click the date, Edit Date and Time.
    Date and time can also be in a table. Format the table cell.
    The User Guide is well worth a read. Download it from the Help menu in Pages.
    Regards,
    Ian.

  • CONTACT NAMES NOT DISPLAYING & TIME FORMAT CHANGING AFTER SYNC

    i live in kuwait and i was just gifted an officially unlocked 3g iphone from new zealand. i upgraded to 2.1. i have 2 problems
    1. i have synced my contacts from address book. the format that it is stored in is +965XXXXXX. 965 is the country code for kuwait and all numbers in kuwait are of 7 digits. there is no area code as this is a small country. when someone calls me their name does not appear. only the number appears
    2. i have set the time format on the iphone to the 24 hour format but every time i sync with my macbook the time format changes to 12 hour format.

    Follow this procedure to get your contacts back (I assume they are on your Mac/PC):
    1. Go to Settings, then Mail, Contacts, Calendars
    2. Select your account which has the contacts you wish to sync
    3. Turn syncing for Contacts to "Off". This will bring up a box telling you your iPhone is turning off Contacts. My iPhone actually hung at this stage, so after several minutes, I performed a hard restart (holding down Home and power buttons for 5 sec.)
    4. Exit from Settings
    5. Go to Settings, then Mail, Contacts, Calendars
    6. Select your account which has the contacts you wish to sync
    7. Turn syncing for Contacts to "On". This should restore your contacts
    8. Go to Contacts to verify. They initially may not appear or just show up as numbers for a second or two, but then your contacts should appear.

  • Names in Members field under the UNIX Attributes Tab have changed from standard format (i.e. John Doe) to the actual account name (jdoe)

    Hello,
    Names in Members field under the UNIX Attributes Tab have changed from standard format (i.e. John Doe) to the actual account name (jdoe). The only time this happens is if a domain account is deleted and the remnant of the account remains and has to be removed
    manually. However all of the accounts, with the exception of any new ones recently added, now show the account name only. Any ideas on what caused this and how to fix it?
    Thanks :)

    Hi,
    I have not heard from you for some days, currently I am providing the related article for you. Hope this will help you on this matter.
    The UNIX Attributes tab does not appear in the Active Directory Users and Computers MMC snap-in when Server for NIS is installed in the domain
    http://support.microsoft.com/kb/921913/en-us
    Thank you.
    Best regards,
    Steven Song
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Change decimal format to time format ie 1.5 to 1:30

    Hi I need to create a field such that when you enter a value in decimal format it gets converted to time format.
    Eg change 1.5 to 1.3 ..... Can any one help cheers.... any light on how to do this would be much appreciated.

    create table num_to_time (seq number, val number, dtvl date);
    insert into num_to_time
    select 1 seq, 1.5 val, null dtvl from dual
    union all
    select 2, 2.25, null from dual;
    commit;
    create or replace procedure p_numtotime is
    v_seq num_to_time.seq%type;
    v_val num_to_time.val%type;
    v_date num_to_time.dtvl%type;
    cursor c1 is select * from num_to_time;
    begin
    open c1;
    loop
    fetch c1 into v_seq,v_val,v_date;
    exit when c1%notfound;
    update num_to_time set
    dtvl = to_date(to_char(trunc(sysdate)) ||
    ' 0'||trunc(v_val)||':'||to_char(mod(v_val,trunc(v_val))*60)||':00',
    'dd/mm/yyyy hh24:mi:ss')
    where seq = v_seq;
    end loop;
    commit;
    close c1;
    end;
    exec p_numtotime;
    drop table num_to_time;
    drop procedure p_numtotime;

Maybe you are looking for

  • HT204382 how can i play an AVI movie file on my mac????????

    how can i play an AVI movie file on my macbook??????

  • Homesite and windows 7

    Hello, I have been struggling to install Homesite 5.5 on Windows 7 and it is not working out well. There are permission issues with the helpfile and every thing else. where do I go now? Do I revert to Dream weaver or what else that is not expensive.

  • I keep getting an error when trying to download apps,

    app updates and new downloads fail every time partway through download. Ipad2 IOS 6.0.1 and Iphone5 same release. Error says "Unable to download application" Application cannot be installed at this time.

  • Plug in boris red 4 for premiere cs5

    I own both a PC and a mac 27 with 8 gigs of ram, I downloaded the trial version of Master Collection and cs5 Boris Red 4 for both PC and Mac. I installed on my PC and all is well, Mac in the list of program for which you choose to install the plugin

  • Cant open itunes library

    Every time I open itunes, the mini player opens. How do I get itunes to open the library, music store, etc...I'm on a Dell. Thanks