Date/ TIme in user profile settings

Hi Abappers,
The date/time format changed in transaction SU01->own data-> defaults, is captured in which table fields???

Hi,
The date and time format values of a user are stored in USR01 table.
Date format field - USR01-DATFM (Date format)
Time format field - USR01-DCPFM (Decimal notation)
Look the possible values by pressing F4 on the DATFM field.
Thanks,
Vinay

Similar Messages

  • How to populate date & time when user enter data for custom table in sm30

    Can anyone tell me How to populate system date & time when user enter data for custom table in sm30..
      Req is
      i have custom table and using sm30 user can enter data.
    after saving date i want to update date & time in table
    Pls let me know where to write the code?
    Thanks in Advance

    You have to write the code in EVENT 01 in SE54 transaction. Go to SE54, enter your Ztable name and in the menu 'Environment-->Events'. Press 'ENTER' to go past the popup message. In the next screen, click on 'New Entries'. In the first column, enter 01 and in the next column give some name for your routine(say UPDATE_USER_DATE_TIME). Then click on the souce code icon that appears in blue at the end of the row. In the code, you need logic like below.
    FORM update_user_date_time.
      DATA: f_index LIKE sy-tabix.
      DATA: BEGIN OF l_total.
              INCLUDE STRUCTURE zztable.
      INCLUDE  STRUCTURE vimtbflags.
      DATA  END OF l_total.
      DATA: s_record TYPE zztable.
      LOOP AT total INTO l_total.
        IF l_total-vim_action = aendern OR
           l_total-vim_action = neuer_eintrag.
          MOVE-CORRESPONDING l_total TO s_record.
          s_record-zz_user = sy-uname.
          s_record-zz_date = sy-datum.
          s_record-zz_time = sy-uzeit.
          READ TABLE extract WITH KEY l_total.
          IF sy-subrc EQ 0.
            f_index = sy-tabix.
          ELSE.
            CLEAR f_index.
          ENDIF.
          MOVE-CORRESPONDING s_record TO l_total.
          MODIFY total FROM l_total.
          CHECK f_index GT 0.
          MODIFY extract INDEX f_index FROM l_total.
        ENDIF.
      ENDLOOP.
    ENDFORM.                    " UPDATE_USER_DATE_TIME
    Here ZZTABLE is the Z table and ZZ_USER, ZZ_DATE, and ZZ_TIME are the fields that are updated.

  • How do I recover my lost Firefox bookmarks and user profile settings?

    I accidentally clicked on Remove all User Profile Settings, Bookmarks and blahblah when I uninstalled my Aurora and now my Firefox has no bookmark etc. I tried using Recuva as recommended from the other questions but it didn't help me at all. I do not have any backup either.

    Will other recovery software help? Because I tried using GetDataBack and I found some files that are not named .sqlite but rather .sqlite-wal or .sqlite-shm. What are those?

  • Login Date/time & Logout Date/time of User in apex

    Hi,
    Is there any apex internal table/view where I can get the Login Date/time & Logout Date/time per user ?
    Regards,
    Benz

    Benz wrote:
    Is there any apex internal table/view where I can get the Login Date/time & Logout Date/time per user ?No APEX version = no definitive answer...
    APEX 4.1 offers:
    <li><tt>APEX_WORKSPACE_ACTIVITY_LOG</tt>
    <li><tt>APEX_WORKSPACE_ACCESS_LOG</tt>
    Access these through Home > Application Builder > Application > Utilities > Application Express Views
    See: Creating Custom Activity Reports Using APEX_ACTIVITY_LOG
    Note that the underlying logs are purged on a regular basis, so for the long term you need to copy the data to your own tables.
    Home > Administration > Monitor Activity provides reports based on this data.
    APEX 3.0 has Home> Application Builder > Application > Application Reports > Activity > Page Views by Session which is probably closest to what you're looking for. Can't find this so far in APEX 4.x: presumably superseded by the Home > Administration > Monitor Activity > Page Views > By Interactive Report option?
    Note however that the concensus among the wise is that accurate "logout" statistics with APEX (or any browser-based system) is impossible. How many users actually logout using using a method that triggers a capturable event at the actual time they stop using the system? How many are going to close the current browser tab? Or the entire browser window? Or press Cmd-Q? Or click a bookmark for a different location? Or type "p0rn" into the Search box? Or switch to another window and spend the rest of the morning reading Twitter? Or shutdown the machine? Or run out of battery power? Or lose their wifi connection? Or get timed-out during the fire drill? Or go home for the night after locking their PC with everything still running? Or...

  • Inherit user profile settings

    Hi
    I need some help to save couple of time managing profile settings for every user in our Agency. We use 10.6 Server, 10.6 on the clients and the Adobe Design Standard CS5. To use Adobes CS5 in a good way, many settings need to be stored in the users profile (like GREPs, printer joboptions, color profiles, etc.). Seperate from the huge time amount to configure every user on its own, it is more than possible to forget some important preferences. Is there any way to inherit from a adobe well formed user profile?
    Thanks for your suggestions and btw. ... sorry for my bad english

    this is not a SAPGUI question.
    try the Security forum at Security

  • Restrict data for a user profile

    Hi,
    I've made a jsp application where i implemented a users profiles for the screens, so i defined that user x can access to the jsp y in insert mode but can't access in remove mode.
    But now i need to implement a second profile that restrict the data that the user can see, like a Portuguese user can only see Portuguese citys and i don't know what is the best way of doing this, i'm using a BC4J.
    Any ideias
    thanks in advanced
    rjc

    Hi,
    Not exactly sure the exact details of what you are trying to achieve, but when the user logs in you can create a session variable that can be retrieved during the user's session. You implement this by using:
    session.setAttribute(String attrname, String attr)
    Then you can retrieve the attribute at a later time. So on your jsp page (I'm not sure of your table structure) you can do something similar to this:
    <%String whereclause = "Country=" + session.getAttribute("Country");%>
    <jbo:ViewObject id="CityView" whereclause="<%=whereclause%>">
    Hope this helps....
    A
    Hi,
    I've made a jsp application where i implemented a users profiles for the screens, so i defined that user x can access to the jsp y in insert mode but can't access in remove mode.
    But now i need to implement a second profile that restrict the data that the user can see, like a Portuguese user can only see Portuguese citys and i don't know what is the best way of doing this, i'm using a BC4J.
    Any ideias
    thanks in advanced
    rjc

  • How to get user data in a user profile portlet

    You would think that this would be easy. Its not?
    This was posted in the wrong forum:
    Re: Interaction (ALUI/WCI) Cutom User Profile Portlet
    "I have a custom portlet that returns user specific information using a portal user profile property. It works great when using current user, which is the logged in user. How can I access the user properties for the profile page owner?
    I searched the dev docs without any success, only references to preferences.
    Thanks in advance for your assistance.."
    I want to know the answer as well. Seems that you shouldn't have to query the IDK for this...
    I see 6.5 has an adaptive tag for this.... sigh. time to upgrade.
    Edited by: Joel Collins on Feb 3, 2009 10:56 AM
    in case anyone tries this in 6.1, I ended up using this:
    string sProfileUserID = portletRequest.GetSettingValue(SettingType.UserInfo, "_ProfileUserID");
    int iProfileUserID = int.Parse(sProfileUserID);
    IObjectQueryRow user = userManager.QuerySingleObject(iProfileUserID);
    IExtendedData extendedData = user.GetExtendedData();
    make sure you check off the right check box on the user information page of the web service.
    Edited by: Joel Collins on Feb 3, 2009 2:12 PM

    Did you search in the forum before posting your question? Every week similar question like yours is being posted. Anyway find below the query.
    SELECT LTRIM(MAX(SYS_CONNECT_BY_PATH(EMPNO,';')),';')
    FROM
    SELECT EMPNO,ROW_NUMBER() OVER(PARTITION BY 1 ORDER BY 1) CURR,ROW_NUMBER() OVER(PARTITION BY 1 ORDER BY 1)+1 NEXXT
    FROM EMP
    START WITH CURR=1
    CONNECT BY CURR = PRIOR NEXXT
    Regards,
    Mohana

  • How to copy Log text (with Date, Time stamp ) User IDfrom BP to Transaction

    Hi Experts,
                     Can someone guide us how  to copy Log text (with Date ,Time & User ID) fron Business partner  (Prospect) to transactions by text detrmination procedure.
    Regards,
    Basavaraj Patil

    save text
    Fill out following parameters of SAVE_TEXT function module:
    HEADER
    TDOBJECT C 10 BUT000
    TDNAME C 70 10 digit BP number
    TDID C 4 Z001
    TDSPRAS C 1 Language
    INSERT = ’X’
    LINES
    TDFORMAT TDLINE
    |
    |testtttttttttttttttttttttttt( Your text)
    I would suggest you to use some other BAPI that would attach your text to BP than SAVE_TEXT.
    If you still wanted to use SAVE_TEXT then first make sure how the TDNAME is generated. It depends on the text determination procedure. For examples, it can be guid of BP, GUID followed by date or time or else the BP number itself.
    Just go to BP transaction, double click on the text pad, it will open you the SAP Script editor. Click on menu GOTO and select Header which will give you info about your TDID, TDOBJECT, TDNAME....
    Hope this helps.

  • Date modified of user profile can be considered as date the user last accessed the server?

    Hi,
    I have a terminal server with large number of old profiles.what is the Microsoft way to clear these?
    Is the last modified date of user profile can be considered as date the user last logged in to this server?
    Regards,
    Arun
    Best Regards, Arun http://whynotsql.blogspot.com/

    Hi Arun,
    For deleting old profiles please test the following group policy setting using gpedit.msc:
    Computer Configuration\ Administrative Templates\ System\ User Profiles\
    Delete user profiles older than a specified number of days on system restart     Enabled
    Delete user profiles older than (days)     30
    It is applicable to Windows Server 2008 and later.  You may need the following hotfix if you are running Server 2008 R2 (no SP1):
    http://support.microsoft.com/kb/983544
    Thanks.
    -TP

  • Windows 8 Logon times default user profile size

    With the addition of Chromebooks and other devices that boot in 3 seconds, we are re-evaluating our Windows 8 environment.  Windows 8 does boot up much quicker, but our domain logon times are still 2+ minutes or more if there is no user profile. 
    So I took our policies down to the bare minimum to see what is really taking forever for computers to log on.
    Using unattend.xml, we use the copyprofile flag to customize the default desktop experience for our users.  The default profile then becomes 185MB and I'd like to try and reduce that to improve logon times when no profile exists.  The
    following folders are where the majority of space is being used and I want to know if I can delete them in the default user profile. 
    25MB c:\users\default\appdata\local\microsoft\windows\explorer  -  Icon and Tile Cache
    40MB c:\users\default\appdata\local\microsoft\windows\WebCache - log files in machine language
    7MB   c:\users\default\appdata\local\microsoft\windows\notification 
    7MB c:\users\default\appdata\locallow\adobe\shockwave player 11\xtras\download\adobesystemsincorporated
    3MB c:\users\deafult\appdata\roaming\microsoft\Bibliography
    4MB c:\users\deafult\appdata\roaming\microsoft\Document Building Blocks\1033\15\Built-in Building Blocks.dotx
    How fast can I make it?   I used autologon registry keys to logon to a domain account (non-administrator).  Timings are from totally off to viewing the Start Screen. 
    The BIOS on our HP 6306 takes about 12 seconds to even start booting Windows 8 and so the total boot time till the start menu shows is 25 seconds with Windows 8 taking 13 seconds to boot and logon.  That is really, really nice. 
    So then I added 3 mapped drives (not redirection) and one printer to the group policy and that didn't add any time once the profile was created.
    Creating a profile is what really slows down the logon process.  Granted this is much after after the profile is done, but the vast manjory of our machines are public with random students/staff logging on to them. 
    More testing to come.

    Were you able to reduce the size of the default profile?
    If you found this post helpful, please give it a "Helpful" vote. If it answered your question, remember to mark it as an "Answer".

  • How to find the last update date time and user of record field peoplecode

    how to find the last update date time record field peoplecode?
    Thank you.

    One can check the last update date time using the following query
    SELECT LASTUPDDTTM FROM PSPCMPROG WHERE OBJECTVALUE1 LIKE 'RECNAME' AND OBJECTVALUE2 LIKE 'FIELDNAME'

  • Why does the "set automatically" button keep turning off in the my date & time area of my settings? When it is off I can not use facetime or imessages.keep during off on my iPad?

    I wasn't able to use FaceTime or iMessages and found out it was because the "set auomatically" button was off under date &amp; time in the settings area.  Why does tha button turn off?

    I wouldn't suggest going to get it yourself. You could find yourself in a situation you cannot get out of and could get hurt. Second, as stated before, it is more for misplaced or lost devices, not stolen devices. Many police agencies do not feel they have probable cause, just from your statement on a map location to justify attempts to recover the device. There have been many posts from others who have had devices stolen where the police will not confront someone based on that map location. I understand you are impacted by the theft, but this is what we have insurance for. To protect your content, from now on I suggest you put a passcode on the device. I hope you have changed all of the passwords for accounts you had on the device, since all of your content and data was accessible to the thief.

  • Migration of data from one user profile to a new (to me) Palm

    I lost my Tungsten E2.  bought a used Tungsten T2 as a replacement.  I need to move all my data and programs from my desktop to the new handheld?
    How do I do this?
    THanks!!!
    S
    Post relates to: Tungsten T2

    You will need to hard reset the E2. Change the hotsync conduits to desktop overwrites handheld. Connect the E2 to the PC and select to sync with an existing username. Select the username that has all your data and complete the sync.
    The hard reset will erase all data on the device. Make sure you sync to the PC to backup your data.
    Click on the following link to the kb.palm.com webpage for the article regarding reset procedures
    http://www.palm.com/cgi-bin/cso_kbURL.cgi?ID=887 
    The best way to preserve your data is to export the data in each application in Palm Desktop to a seperate folder on your PC.
    Create a new folder on your PC somewhere that is convenient. Name it something like Palm Desktop Data. Click on the link below and follow the instructions on that page for the export procedure.
    http://www.palm.com/cgi-bin/cso_kbURL.cgi?ID=28734
    Make sure you select all for the range in the export window.
    With the data saved in the folder you created, make a copy of that folder and save to a flash drive, cd-rw or external hard drive.
    Anytime you make a change in Palm Desktop, export the data that was changed to that folder and save again to the external media.
    With this process you can always import the data back into Palm Desktop anytime you have a problem with the data in Palm Desktop or if your computer/hard drive/device crashes.
    For reference purposes, click on the following link for the support page for your device on the kb.palm.com webpage.
    http://kb.palm.com/wps/portal/kb/na/tungsten/e2/unlocked/home/page_en.html
    There are links on the page to the user guide, troubleshooting, how to's, downloads, etc.
    Message Edited by cygnusX1 on 10-07-2009 09:23 AM

  • How to find the last executed date ,time and user of the quaery

    Hi,
    How to find the following information of the Query
    1. Where all the place these queries/web template used.
    2. When was it last executed.
    3. Who executed last.
    Regards,
    Hari

    hi Hari,
    you can try table /BI0/APERS_BOD00
    for query, first go to table RSRREPDIR, give field COMPID
    with query technical name and get GENUNIID, then go to table /BI0/APERS_BOD00, field TCTOBJNM = RSRREPDIR-GENUNIID, TCTUSERNM and TCTTIMSTMP -> user name and last executed.
    for web template, give field TCTOBJNM in table /BI0/APERS_BOD00 with web template name.
    hope this helps.

  • User Profile Disks - User registry data

    In Server 2012 standard (not R2)
     using RD
     in Session Collection
     and in the "User Profile Disks" tab
     I have ticked “Enable user profile disks”
    If I select the second radar-button
    "Store only the following folders on the user profile disk"
    What is the effect of ticking "User registry data" ?
    What is the result in the template.vhdx ?
    and when a new user logs in
    Is all the user registry "moved" to the UPD user .vhdx file where it is then maintained
    or
    Is a folder re-direction preserved in the UPD and the registry data still updated in its original location ?

    Hi,
    Thank you for your posting in Windows Server Forum.
    During first logon, a virtual disk (VHDX) is created from a template disk. This VHDX is attached to the virtual machine or RD Session Host server that the user is logging on to. The profile service is then notified to use this VHDX as the location for the user’s
    profile. When the user logs off, the VHDX is then detached from the virtual machine.
    By default, the entire user’s profile is stored on the user profile disk. This includes the Documents folder, the user’s registry hive (holds application and Windows settings), and much more.
    On subsequent logons to the collection, the VHDX is remounted to whatever virtual machine or RD Session Host server the user is logging on to. The user then has access to everything in his or her profile, even if this is a different virtual machine, or if the
    virtual machine has been rolled back to a clean state between logons.
    For more information, please check beneath article.
    Easier User Data Management with User Profile Disks in Windows Server 2012
    http://blogs.msdn.com/b/rds/archive/2012/11/13/easier-user-data-management-with-user-profile-disks-in-windows-server-2012.aspx
    Working with User Profile Disks on Session-Based Desktop Deployments
    http://www.virtualizationadmin.com/articles-tutorials/vdi-articles/general/working-with-user-profile-disks-on-session-based-desktop-deployments.html
    Hope it helps!
    Thanks,
    Dharmesh

Maybe you are looking for

  • Hard drive formatting for OSX and Windows 7 using GUID

    Hey, I am currently trying to format a 2TB WD Elements external hard drive so that I can use one half with Time Machine and the other half with Windows 7 (run using Boot Camp). From looking around online it appears that GPT is the best to use, and so

  • Clicking a Phone Number from a voicemail in Outlook 2013

    I was running Outlook 2010 and Lync 2013 on my Windows 8.1 machine. This was working great until I upgraded to Outlook 2013 (Office 365 Home). Now, when I click a phone number link at the bottom of a voicemail in Outlook 2013, I get this message Micr

  • File to large

    Help, every time I try to create a dv stream video I get file to large, I have plenty of hard drive space what am I doing wrong?

  • Rule-Based Forwarded Email

    I am reviewing the contents of the Message Tracking logs from an Exchange 2010 server. How can I identify those emails that were forwarded using some form of rule-based forwarding? Does the exchange server record rule-based forwarded emails in the Me

  • Will not load complete page on pc at work.

    I created my page in iWeb sometime ago and have been able to view it everywhere. Yesterday I added a new links page to my site and published it. I was able to view it on my mac and in parallels. My sister in law could view it on her laptop, but here