TA26756 Ho do i change Time format in Logs ?

Hi,
I need to change Time format as GMT in Darwin Streaming server logs.
Kindly suggest me how do i achieve ?
Warm Regards,
Jaymin Thakkar.

Pithan, Leena, Thyagarajan,
Thanks for your cooperation and KT.
The problem is resolved.
STEPS INVOLVED
Problem: Refurbishment order was created mentioning quantity as 4 and was also released. After entering the value the user came to know that he has to enter quantity as 3. When we went in change mode the field was greyed out and the stock was sitting in "On Order Stock".( Through MMBE). Goods Issue was not carried out, since we found error on hand before. I approached SDN after checking various methods.
Solution:
1. Removed the serial no assignment for the material
2. Carried out technical completion.
3. Carried out Business completion and saved the document.
Later on executing MMBE the stock moved from the "On Order Stock" to "Unrestricted Stock".
Thanks
Regards
Sathya

Similar Messages

  • Change time format to 24 hours

    Dear Experts,
    In  my webdynpro application I have a requirement where I have to use a 24 hr time format, but by default it is shown as 12 hr format, because of the language in portal.
    And I only want to change the format in this application only, not of all the portal.
    Please suggest.
    Warm Regards,
    Upendra Agrawal

    Hi Upendra,
    Assign the value from backend to the newly created attribute of type new simple type. This will convert it to the 24 hrs format
    OR
    if you get the date from backend,
    Try using a date formatter.
      String s;
      Format formatter;
      Date date = // Your date value from the backend.
      formatter = new SimpleDateFormat("HH.mm.ss");
      s = formatter.format(date);
    This will give the time in 24 hrs in the variable 's'.
    Pls try this and let me know.
    Thanks and Regards,
    Shyam.
    Edited by: Shyam Gopal on Jul 28, 2010 3:05 PM

  • Change time format to decimal

    Hello Friends,
    I am working on a report where I am showing hours and munites based on difference between date and time.
    My o/p is: 1211:23  (hours:minutes) and the type is 'TVRO-FAHZTD'
    My requirement is how to change '1211:23' TO '1211.2'.
    Please help me.
    Thanks,
    Shreekant

    copy the value in a variable of the following type.
    data dec_one type p decimals 1.....do this if you have a decimal and not a ":"
    otherwise, another option is to convert it to a string...split it on ':' (colon) and then use the first offset position of the second variable.
    example.
    data : str type string, str1 type string, str2 type string.
    str = '123:23'.
    split str at ':' into str1 str2.
    clear str.
    concatenate str1 '.' str2(1) into str.
    Edited by: Priyank Jain on Aug 20, 2008 1:21 AM

  • 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.

  • Change date/time format in Screen Shot file name?

    I capture Screen Shots all day long.  But when I go to look for the one I just took, it's not always at the bottom of the list.  That's because Mac names them as e.g.
    Screen Shot 2014-04-29 at 1.19.04 PM.png (and the order gets screwed up).
    Can I change to make save as e.g.
    Screen Shot 2014-04-29 at 13.19.04.png (this way they'll always stay in order).
    Thanks for any help.

    You may have to change system time format globally. Is it worth ?
    http://support.apple.com/kb/PH14227
    Best.

  • 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.

  • 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.

  • Changing date/time format

    Hi there,
    I live in the United States but prefer my dates to be in the dd/mm/yy format as opposed to the US mm/dd/yy format. I also like 24-hour time rather than AM/PM. I System Preferences>Language & Text>Region, I found the tool to modify my preferred date/time formats. However, I notice that the format of the date in my menu bar does not change (it still reads Sep 25 when it should read 26 Sep). All other dates/times appear to function correctly. I briefly switched the Region of the computer to the United Kingdom but quickly switched it back because of how autocorrect handled words like "color."
    Ideas?

    That did the trick - sometimes the easiest thing to do is hard to see. Seems I have been working too long on a Windows machine (unfortunately, I have to do so at work)...
    Thanks for the quick help!

  • Wmic to change dat time format

    Hi,
    can i change the format to normal date time when query the CreationDate in this line "wmic process where name="ProcessName" get name,CreationDate" i need the script to be in single line and not to run in batch
    THX

    No - all you have to do is add th this bit:
    @echo %xt:~5,2%-%xt:~7,2%-%xt:~1,4%
    Just keep breaking down the string.
    @echo %xt:~5,2%-%xt:~7,2%-%xt:~1,4%
    %xt:~9,2%:%xt:~11,2%
    YOu can extract and place any or all parts.   I just got too lazy to keep counting characters.
    ¯\_(ツ)_/¯

  • Change calendar format one event at a time?

    How do Change calendar format one event at a time?

    Use iPhoto>Provide iPhoto Feedback in iPhoto or go here to make a feature request of Apple:
    http://apple.com/feedback

  • 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;

  • Change of Time Format

    hi
    I need to change the time format from 17:00 Hrs to 5:00 PM. Right now the form is showing time like 17:00 HRS. it should be 5 PM.
    your help will be extremely appreciated.
    Regards
    Waseem

    Hi Waseem,
    then try the code Ferry posted.. in ur print program... if u cant access print program then u need to write a PERFORM routine in script.
    /: PERFORM TEST IN PROGRAM Z_PROG
    /: USING &TIME&
    /: CHANGING &TIME_PM&
    /: ENDPERFORM
    in ZTEST report program for routine.....
    FORM test TABLES in_par STRUCTURE itcsy
    out_par STRUCTURE itcsy.
      READ TABLE in_par WITH KEY 'TIME'.
      CHECK sy-subrc = 0.
      l_time = in_par-value.
    CALL FUNCTION 'HRVE_CONVERT_TIME'
      EXPORTING
        type_time             = 'A'
        input_time            = l_time
       INPUT_AM_PM           = 'AM'
    IMPORTING
       OUTPUT_TIME           = o_time
       OUTPUT_AM_PM          = o_stamp
    EXCEPTIONS
      PARAMETER_ERROR       = 1
      OTHERS                = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
      READ TABLE out_par WITH KEY 'TIME_PM'.
      CHECK sy-subrc = 0.
      out_par-value = o_time.
      MODIFY out_par INDEX sy-tabix.
    ENDFORM.                    "TEST
    Regards
    SAB

  • Time format change after update to 4.0.7577.250 on aastra 6725ip

    Hi,
    i make an device update on my aastra 6725ip to version 4.0.7577.250.
    After that update the time format is changed. I found in the changelog that this should be fixed?!
    What todo?
    regards,
    Frank

    Whats the format changed to?
    Can you use settings to change the format? Or do factory reset on phone (hold 4 and 6 while booting).
    Andrew Morpeth
    Lync Server Specialist - Auckland, NZ
    Check out my blog

Maybe you are looking for

  • How to stop Time Machine from backing up Temp Files?

    Hi folks! I am trying to find out how to stop Time Machine from constantly backing up 'useless' temporary files accumulated from web browsing? Although I don't change or add large files to my HD, Time Machine backs up hundreds of MBs every hour. Thos

  • Lightroom 2.5 not printing with main account user but prints with a new use

    I have been troubleshooting all day. My new epson r280 is not printing with LR2.5 though it prints in other applications fine. Called epson and we are sure that I have the latest drivers, etc. Called Adobe and they had me create a new user in account

  • Mains charger requires a closed lid to start charging

    real puzzler this one: Both the charger and the battery have been replaced and have been tested with other machines and work beautifully. On my machine: the mains charger will stop working if unplugged and then plugged in during a session. So if I un

  • SCUTIL keeps asking for Admin password...

    Hi, After the ML upgrade, launching a browser causes a dialog to pop up saying that SCUTIL wants to change my configuratin and asks for an admin password. Back when I upgraded to Lion I had this issue and I found a terminal command to fix it.  After

  • Extract date from string in T-SQL

    Hi, I am having one field(AT_TEXT) in my database that has below kind of values. I want to extract date from this string but the issue is all rows has different format. 1)One Month Lttr sent on 3/12/2009 due to 2)One Month Letter sent on 1/15/2009 du