Modify 24hrs and AM/PM edition in Time Input Fields

Hi!!
I have a webdynpro aplication which uses time fields... but for some users it works with 24hrs format and sometimes with AM/PM format. How can I control that? Does it have something to do with an R/3 SAP user parameter?
Thanks a lot in advance!

Hi,
is your application running in portal???
Then some of the users might have changed their personaliztion???
Regards
Ayyapparaj

Similar Messages

  • Time input field

    How to i create a time input field similar to a date input field with a calenda

    Hi,
    We currently do not support a time input field.
    Regards,
    Brian

  • Problem with time input field

    Hi,
    I have an input field which mapped to a context attribute of type Time. When I try to enter any value during runtime I have a small message in the bottom of my webpage ( Error during parse, please give a value in form 10:11:12 AM ). After that I should enter a good value otherwise I cannot do any other action.
    Thanks,
    Younes

    Hallo Younes,
    that's the purpose of implicit validation based on the dictionary type definition.
    By default the format of the built-in type 'time' is "<b>hh:mm:ss a</b>" but you can easily change this format by defining your own simple data type. Name this local dictionary type <i>MyTime</i>, select the built-in type 'time' and then specifiy its <i>format</i> (tab 'Representation') via "<b>hh:mm</b>". In this case the generic validation will accept '12:10' as input field value.
    For more details look at  http://java.sun.com/j2se/1.4.2/docs/api/java/text/SimpleDateFormat.html
    Greetings, Bertram

  • Removing leading zeros and leading blank spaces from an input field

    Hi All,
    I have an input field which is alphanumeric and i need to remove the leading zeros and blank spaces in it , but intermediate spaces should be kept .
    so i used the UDF
            String output = input.replaceFirst("^0+","");
            return output;
    but this code does not remove the leading blank spaces . Can anybody help in modifying this code so that even the leading blank spaces along with leading zeros  can be removed .
    Regards ,
    Loveena .

    lets say input is a
    then
    int len = a.length();
    for(int i;i< length;i++)
    if(a.substring(0,1).equals(" ") || a.substring(0,1).equals("0"))
    a = a.substring(1,len);
    return a;
    hope you got the logic so that you can enhance it better

  • F4 help icon and Drop Down icon turned to input field in EHP4

    Hi,
    I am facing one strange problem, I have a system in which ECC6 with EHP3 was installed. Everthing was fine so far.
    But as soon as we have upgraded to EHP4 package level 2 Web Dynpro Applicaiton UI rendering problem started.
    1. F4 search help icon changed to input field like ui which does not takes any input but responds when user clicks on that field with normal F4 Search Help screen.
    2. Drop Down icon also changed to input field like ui which does not takes any input but responds when user clicks on that field with normal Drop Down appears.
    Any resolution for this?
    -Haresh Khandal

    Hi,
    Yes, I also faced the same issues. I guess some patch levels you need to apply. Please approach your basis team for the same.
    One moe thing, As a temporary solution, try to increase the width of those UI elements so that you can be able to the dropdown icons and F4 help icons clearly.
    Try out this way.
    Regards,
    Lekha.

  • LR 1.4 Question about Group Edit Capture Time

    Hey guys... working my way through...
    Was wondering -- when I highlight a group of files -- and then go to the Metadata Menu and choose "Edit Capture Time" -- why doesn't it change the date of all the High-Ligghted Photos?
    I am obviously doing something wrong... Can someone please tell me who to di it right?
    THANKS!!

    ambienttroutmask wrote:
    It's a while since I used LR 1, but I think it was the same....to write time changes to RAW files, other than DNG's, you need to enable this in catalog settings. in metadata write changes into propitiatory RAW files. LR is very reluctant to write anything into propitiatory files (and rightly so), best to convert them to DNG's.
    actually - i'm kinda confused.
    all my images are DNG's.
    All I want to do is take a group of photos I took in 2002 [that all have bad dates from different decades somehow] and correct a group of say 130 files at a time to a specific day from all the various days they are mistakenly showing in Capture Time.
    But when I highlight a group of say 30 files and choose to EDIT CAPTURE TIME -- only 1 or maybe a couple of files change -- the rest stay.
    iPhoto allowed me to Batch Change a group of photos from various dates to 1 single date -- but I am getting the impression LR 1.4 does not have the ability to do this.

  • Time input

    Is time input field available in Flex 3?

    On 5/23/2011 1:36 AM, lia19 wrote:
    >
    > I have a user when creating an appointment the Time Input dialog box has
    > disappeared. Uninstalling and reinstalling Groupwise 7 with SP3 did not
    > work. Doesn't matter if the "all day event" box is checked or not
    > checked still unable to see the Time Input dialog box. It's hard to
    > find any help on this issue.
    >
    > Any assistance would be great.
    >
    > Lia
    >
    if you log on to their account on another box, does the issue follow them?

  • How to get last modified date and time of a file which is in apache server.

    Hi ,
    I need to get last modified date and time of a file in remote machine.
    This file is in remote machine which has apache server installed.
    I am trying to get this information by connecting to apache server from client by giving absolute URI of the file to file object.
    URI is got from apache server URL by using toURI method.
    when I use lastModified method , its throwing exception , because scheme of URI is not file.
    I can't give scheme as file because ftp server is not installed on that server
    Is there any other way to get this information .

    No, unless you can use an FTP client.

  • How to find the Last modified date and time of a package

    Hi,
    We need a clarification on how to find the Last modified date and time of a package in Oracle. We used the example below to explain our scenario,
    Lets consider the following example
    Let A, B be two packages.
    Package A calls the package B. So A is dependent on B.
    When A is compiled the TIMESTAMP,LAST_DDL_TIME in USER_OBJECTS gets updated.
    Now there a modification in package B so it is compiled. There is no modification in package A.
    Now when the package A is executed the TIMESTAMP,LAST_DDL_TIME in USER_OBJECTS gets updated but we did not make any change in Package A. Now we need to find last modified date and time of the package A . So we can not rely on the TIMESTAMP,LAST_DDL_TIME in USER_OBJECTS . Can u please tell us any other solution to get last modified date and time of the package A .
    Regards,
    Vijayanand.C

    Here is an example:
    SQL> SELECT OBJECT_NAME,CREATED,LAST_DDL_TIME,TIMESTAMP,STATUS FROM USER_OBJECTS
    2 WHERE OBJECT_NAME = ANY('A','B');
    OBJECT_NAM CREATED LAST_DDL_TIME TIMESTAMP STATUS
    A 20-MAY-2004 10:57:32 20-MAY-2004 10:57:32 2004-05-20:10:57:32 VALID
    B 20-MAY-2004 10:58:22 20-MAY-2004 10:59:04 2004-05-20:10:59:04 VALID
    SQL> CREATE OR REPLACE PROCEDURE A AS
    2 BEGIN
    3 NULL;
    4 NULL;
    5 END;
    6 /
    Procedure created.
    SQL> SELECT OBJECT_NAME,CREATED,LAST_DDL_TIME,TIMESTAMP,STATUS FROM USER_OBJECTS
    2 WHERE OBJECT_NAME = ANY('A','B');
    OBJECT_NAM CREATED LAST_DDL_TIME TIMESTAMP STATUS
    A 20-MAY-2004 10:57:32 20-MAY-2004 11:01:28 2004-05-20:11:01:28 VALID
    B 20-MAY-2004 10:58:22 20-MAY-2004 10:59:04 2004-05-20:10:59:04 INVALID
    SQL> EXEC B
    PL/SQL procedure successfully completed.
    SQL> SELECT OBJECT_NAME,CREATED,LAST_DDL_TIME,TIMESTAMP,STATUS FROM USER_OBJECTS
    2 WHERE OBJECT_NAME = ANY('A','B');
    OBJECT_NAM CREATED LAST_DDL_TIME TIMESTAMP STATUS
    A 20-MAY-2004 10:57:32 20-MAY-2004 11:01:28 2004-05-20:11:01:28 VALID
    B 20-MAY-2004 10:58:22 20-MAY-2004 11:01:53 2004-05-20:11:01:53 VALID
    Note that the date under the column 'created' only changes when you really create or replace the procedure.
    Hence you can use the column 'created' of 'user_objects'.

  • Reportable Last Modified Date and Time Field

    Reportable Last Modified Date and Time Field
    Hello,
      We need a reportable RequestCenter 'last modified date/time' database field that is refreshed when the 'Comments and History' field is updated.  Any ideas would be appreciated.  Thanks! 

    No, unless you can use an FTP client.

  • This Data Object is currently in use and cannot be edited at this time

    Hi,
    I have a problem with one of my data objects in that when I try an edit it I get ‘This Data Object is currently in use and cannot be edited at this time’. I have tried everything from rebooting the machine. Any ideas?
    Robert

    If you have defined any plan or an alert on this data object , please disable them and try agian..

  • I have the iPhone 4, recently installed ios6 now my phone constantly turns itself off, keeps freezing and then 2 or 3 times in the space of 24hrs it has to be restored to factory settings. This has gone on for over a week.

    I have the iPhone 4, recently installed ios6 now my phone constantly turns itself off, keeps freezing and then 2 or 3 times in the space of 24hrs it has to be restored to factory settings. This has gone on for over a week.

    If all basic troubleshooting has been tried and a restore as new does not resolve, take it to Apple for evalation and possible replacement.

  • Edit video and audio at the same time

    Is it possible when I remove some of the audio to also remove the same amount of that time from the video?

    Lilybiri,
    We did record both the audio and video at the same time in Captivate 8.
    The question is: how do we edit the audio and video at the same time?
    If I want to cut out 5 seconds of audio can I or will the software cut out that same portion of the video and if so how do we do it?
    Do we need to create a Demo or Software Simulation to be able to take advantage of this tool for cutting both together.
    Your assistance is very much appreciated.
    <http://www.eaglemetal.com/>
    Mark Wyatt Customer Support specialist
    Eagle Metal Products | 12300 Ford Road, Suite 110 | Dallas, TX 75234
    [email protected]<mailto:[email protected]>
    Toll free: 800.521.3245
    Direct Line: 972.350.9898

  • I need an app that allows me to create a editable leaderboard by inputting a time and a name?

    I need an app that allows me to create a editable leaderboard by inputting a time and a name for up to 20 people and being able to edit and delete all the names and times when im finished any ideas?

    why not actually use a spreadsheet program?  You can do everything you describe in Excel. i don't use apples equivalent, Numbers, but Im sure it is quite capable.

  • Bridge CS4 looses my labels and ratings if edited in Camera RAW

    Hi there. This is my first post here, so please forgive me if I make any errors of normal posting procedure. I'm hoping someone might be able to identify this problem please.
    I am using Bridge CS4 v.3.0.0.464 and Photoshop CS4 v.11.0 and Camera RAW 5.0.0.178
    On Windows Vista Home Premium 64 Bit service pack 2, and working mainly with jpg files from a Nikon D300s
    I've noticed recently the following behaviour. If I label and/or rate some photos in Bridge, and then open those photos via Camera RAW, and then make adjustments to those photos in Camera RAW and open them directly from there into Photoshop, then the original file in Bridge looses all it's rating and label info, and shows a new modified date and time as of that moment.
    This only seems to happen if I actually edit the photo in Camera RAW, I do not ask to save it (and remember these are JPG files so as I understand it any changes in Camera RAW would not be saved unless I ask to resave the file itself) but to open it directly into Photoshop (and I then save the finished work as a copy to a different place from Photoshop) but the act of making an edit in Camera RAW seems to affect the original file settings in some way, and that looses the labelling etc.
    However, just a couple of days ago something even odder happened. I opened Bridge, navigated to a recent (and recently labelled) folder to browse some photos (at this point I had not opened either Camera RAW or Photoshop and was not doing editing of any sort). When I got to the folder I wanted and Bridge started to display the thumbnails, I immediately heard my hard drive working very hard, and watched as over the course of a few seconds all my labels, ratings etc, were erased from the files in that folder, you could actually see it happening in real time in the filter pane as the number of red-labelled photos counted down from 30 to 0, and the modified dates for those 30 shifted from two days before to the current time/date. it only happened for the labelled and/or rated photos, the others remained unchanged, with their modified dates still the same as when I created the folder a few days before. This has so far happened to me just once, a couple of days ago, it was as if Bridge was somehow refreshing a cache or something, and that caused it to to clear all the changes I had made.
    Anyway, I couldn't really find any reference online or on these forums to that specific behaviour. After reading some slightly similar problems online I tried a few changes to settings. Allowing Bridge to automatically export the cache to folders where possible, and making sure that the main Adobe cache location is writable (not read only) in windows folder settings. However, although I have not yet had a repeat of the weird incident above, that hadn't happened before either so I cant really claim that I've cured it. But moreover the issue of loosing labels/rating when editing with Camera RAW still persists consistantly even after those changes, so that is definitely still a problem
    Can anyone shed any light please? if it's a known problem, a flaw, or maybe (hopefully) can be sorted with some settings that I have missed.
    Thanks for any help
    Best regards
    Will

    Welcome to the froum.  Your submittal was great.
    I don't know if this will fix your problems, but you need to update to the current versions and see where that takes you.  Click on Downloads/updates at top of page.
    You have Bridge CS4 v.3.0.0.464 and Photoshop CS4 v.11.0 and Camera RAW 5.0.0.178.  Don't know what current version of Bridge is, but you need PS v. 11.0.1 which fixed a number of mistakes.  Also, the current RAW is 5.6 I believe.  I am still on CS3.
    eatfirst wrote:
    This only seems to happen if I actually edit the photo in Camera RAW, I do not ask to save it (and remember these are JPG files so as I understand it any changes in Camera RAW would not be saved unless I ask to resave the file itself) but to open it directly into Photoshop (and I then save the finished work as a copy to a different place from Photoshop) but the act of making an edit in Camera RAW seems to affect the original file settings in some way, and that looses the labelling etc.
    Edits, keywords, and rating can be stored in the XMP file.  This has the same name as the file and needs to move with the file or you will loose info.  If you move or rename the file, and don't use Bridge, this file could be left behind.  You can see this file in Bridge, if you have show hidden files clicked in View.  You can look at it in Windows Explorer if you have "show hidden files".
    Check to see if you have an XMP file in the new location.  If not then do you workflow in stages and see if you have an XMP file after edits before you save it to another location.
    Hope this helps.

Maybe you are looking for

  • ME55 - Release Purchase Request

    Hi Gurus, I am facing problem in T-Code ME55 throwing message by SU53 that authorization obj : M_BANF_FRG and Pur. Req. Release code x9. I have changed Role and assign the said obj. but when i exec. the t-code me55 this execute sucessfully. But there

  • My iphone 4s won't connect to wifi but other people's do

    I have a new iphone 4S and it won't connect to the wi fi at our home.  Other people in my family have iphones or nexus and they all will connect. I enter the password and the wireless symbol appears for a second but then it says unable to connect. I

  • Q10 Contacts: bugs

    Purchased a new Q10 and hooked it up to my home laptop to upload my contacts and calendar from Outlook.  Everything looked fine.  The next day, received a message to update the operation system software which I did.  After the update, my contacts lin

  • How to stop iTunes web preview from automatically launching iTunes?

    Any time you go to an iTunes web preview page (which a lot of app sites/reviews link to), it automatically launches iTunes, completely defeating the purpose of having a web preview page in the first place. How can I make it stop doing this? I've look

  • Full optimize WinVista for the good developtment of Photoshop x64

    I want to full optimize WinVista 64bits  because my photoshop is a little slow. Thanks.