OIM 11g r2 - Do we have User history in OIM?

Hi,
when we created a user in OIM, is there any time stamp for creation or last modification?
It is OIM 11g r2.
Thank in advance
dongsu

Hi Dongsu,
Login to DB using OIM username and use below query and verify
select * from usr;
which gives all user details including modified date, creation data and all other details.
Thanks & Regards,
Chinni
Edited by: chinni on 25-Apr-2013 16:50

Similar Messages

  • How do you know if users have a history of marking answers?

    In Stack Overflow, you can easily see if a user is going to acknowledge your help by looking at their acceptance rate. I am finding it frustrating, however, that my answers on the Adobe forums are often ignored in favor of answers I feel are leading the user in a wrong direction, simply because the other person giving an answer had more red "bars" under their name.
    I have helped many users, and many of them have come back and thanked me.  However, none have marked my answers as correct or even helpful.  I would like to concentrate on helping users who are willing to mark answers as correct or helpful, so that those bars reflect the amount of help I am actually giving.  Where can I look to find out which users have a history of marking answers?
    Thanks;
    Amy

    Hi, Amy. I'm not sure why I'm persisting in this, but:
    This thread seems to have wandered off a bit.  Just so it's clear, I was asking a technical question (how to see who does and does not mark answers as correct)
    That wasn't clear...just to be clear in return:
    This forum provides no summary reporting of a user's marking of answers.
    However, if you are truly inspired, there are some things you can do.
    If you look at a user's page, under Stuff > Discussions, you will find a tabulation of the threads started by that user. E.g: http://forums.adobe.com/people/Amy%20Blankenship?view=discussions
    Those are, of course, the only threads that a user could have awarded points in. The tabulation shows which threads are designated as Answered () and which are not (). Whether a user marks a question as Answered is not the same as whether they award points, but I think you will find that there is a reasonable correlation.
    If you are even more interested, a script to open all those threads and determine whether they have offered Helpful or Correct answer designations is not very difficult, if you are experienced at writing tools that scrape web pages. Given that most users have less than 100 threads, it is probably not a violation of this site's terms of service (either implicitly or explicitly) to suck down those threads in an automated fashion, and certainly should have no appreciable effect on the server (a question one should always ask when considering automated retreival of data from someone's web server).
    So, to summarize: I) This forum software does not keep a running total of this information that is available to us II) You can get a pretty good proxy for it by taking a quick look III) You could write a simple script to calculate it for you with a little bit of work.
    Also, there is a moral hazard: Users who do not mark answers as Correct or Helpful are no less deserving of help than those that do. Many are unfamiliar with the cultural/social protocols of this site, and that should not be held against them. That is, however, merely my opinion, and certaily it is arguable.

  • How can I get the information on the Users history in Enterprise 6.3.1

    Need help on the following. Since I'm an HFM guy and havent touch Enterprise for a while, I need help on the following:
    We want to have a report that indicates the Users history re: date and time users sign in and out of each Hyperion 6.3.1 application.
    Where can I get that information? Was thinking to look in <application>.use file but not able to see it properly using a text editor.

    Enterprise does not have any logs that track login/logout information. You can potentially check the error log for the first activity a user executes for example:
    data refresh or data load, which contain date and time of execution, but it will require some data filtering.

  • Why did I have to create a new ID when I logged into Communities this morning? Appears I don't have any history anymore either.

    Why did I have to create a new ID when I logged into Communities this morning? Appears I don't have any history anymore either. I used the same browser and username/password (its stored in my browser) and it asked me to fill out my profile and pick an alias. Not sure what the deal was, it appears Apple can't figure out this whole id thing. I've used other community sites for over a decade without having to change my user/profile, I don't understand why this is such a pain with Apple.

    Agreed! I was trying to find out how to reclaim my old name since I use it for all sites. I can't seem to find the answer so I made a new one to ask questions before giving up on it.

  • USER history...URGENT

    Hi all ,
    I need to find out the user history who logged on to the database betweeen ....02 to ..03 date. So that I can make a stat. for those.
    I know I can find out this from listener.log file. But that file is so big its really very hard to look for specific users. If you know some other place or some sql command which can help me finding this it would be very helpful.
    Please reply ASAP
    Thanks

    Hi, thanks for your reply we are using oracle 8.1.7 db.
    But the problem is I don't want for future users. If I want for future users I can create triggers. But I just joined the company and their is no trigger on user logons.
    So what I really want is some place where i can have a look for the users who have accessed the database from last six months.
    I know the listener.log file where the complete info is recored for user logins but do we have someother place as well in oracle.
    Cheers!!!!!

  • HT204088 The directions you provided above doesnt even work!  when I selected "Click to open your account", there is an ERROR message and takes me to no where!  when I try to access my itunes account, it says I have no history?

    The directions you provided above doesnt even work!  when I selected "Click to open your account", there is an ERROR message and takes me to no where!  when I try to access my itunes account, it says I have no history?

    You are not able to view purchase history on your iOS device.  You may only re-download previous purchases from the iOS device.
    To review your iTunes Store account's purchase history, follow the steps in this article from a computer only:
    Seeing your iTunes Store purchase history and order numbers
    http://support.apple.com/kb/HT2727

  • How can I have users change textures in acrobat 3d and Reader question tia sal2

    I'm trying to have users in Acrobat reader change textures of a box which I made in acrobat 3d
    how can I do this?
    Example
    I made three textures for a box and I would like the user to have the ability to change the textures if they choose. How can I do this? Any examples?
    Can I have a user select the textures or the layers from a photoshop file in Acrobat 3d?
    Tia sal2

    Yo ratboy,
    You can do this. In order to map the images, they must be attached as a 3D resource. (There is a free plugin for this; search the forum for "Attach3DResource.api"). Once the images are attached, you can use the 3D Javascript API to map them to the meshes you desire.
    For one doc, I attached 25 images in this manner. I then used the script below to create a bunch of empty meshes, and then apply the images to said meshes.
    Hope this helps!
    //3D javascript ========================================
    //create 25 procedural meshes ======
    var leftEdge = -180;
    var horizontalOffset = leftEdge;
    var verticalOffset = 0;
    var myMesh = new Array();
    var myVector = new Array();
    for ( i=0; i<25; i++ ) { myMesh[i] = scene.createSquareMesh(64, 48, "myMesh" + i); myVector[i] = new Vector3( horizontalOffset, verticalOffset, 0 ); myMesh[i].transform.translateInPlace(myVector[i]); horizontalOffset += 74; if ( horizontalOffset > 180 )
    horizontalOffset = leftEdge;
    verticalOffset += 58;
    //create image array and resource objs ============
    var myImageResources = new Array();
    var myImageFiles = new Array("8d91.jpg",
    "ad2e.jpg",
    "barnpond.jpg",
    "Beach01.jpg",
    "Beach04.jpg",
    "Beach05.jpg",
    "Beach06.jpg",
    "Beach13.jpg",
    "bike trailer.jpg",
    "cobra.jpg",
    "cr80xr200.jpg",
    "craigs_place.jpg",
    "Dandrea.jpg",
    "dirtbike.jpg",
    "e027.jpg",
    "f5b5.jpg",
    "f613.jpg",
    "halfdome.jpg",
    "Iceberg.jpg",
    "island.jpg",
    "kx100_gb.jpg",
    "maui_horanhero.jpg",
    "norcal_ocean.jpg",
    "sierraLake.jpg",
    "Smokey Light.jpg",
    "test.txt");
    //create resource objs
    for ( i=0; i<25; i++ ) { myImageResources[i] = new Resource("pdf://" + myImageFiles[i]); }
    //load images on meshes with handler ============
    var myImageObjs = new Array();
    var myImageMats = new Array();
    myRenderer = new RenderEventHandler();
    myRenderer.onEvent = function(renderEvent)
    for ( i=0; i<25; i++ ) { //create image from resource myImageObjs[i] = new Image(myImageResources[i]); console.println("Image = " + i);
    //add image to model
    myImageMats[i] = myMesh[i].material;
    myImageMats[i].diffuseTexture.setImage(myImageObjs[i]);
    //remove handler
    runtime.removeEventHandler(myRenderer);
    runtime.addEventHandler(myRenderer);
    //cause a recalculation of the scenegraph.
    scene.update();
    console.println("Call scene.update()");
    console.println("Created 25 Square meshes: (64, 48, 'myMeshN')");

  • I have an iPod touch and it doesn't seem to be working right it is rather slow I get booted from sites I have deleted history cache cookies still have 22.1 available space what can I do to solve the problem do I need an antivirus

    I have an iPod touch that does not seem to be working properly I have deleted history cache cookies I gave 22.1 available I get booted off sites for no reason do I need an antivirus if so where can I find a good free one

    There are no antivirus apps for any iDevice
    - Try the standard fixes:
    - Reset. nothing is 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.
    - Restore from backup
    - Restore to factory defaults/new iPod.

  • I recently upgraded my motherboard on my MacBook Pro and I need to re-download the Adobe CC software I purchased. My Purchase Order History claims I didn't have a history. There are not options to redownload either. I am logged on right now. Please advise

    I recently upgraded my motherboard on my MacBook Pro and I need to re-download the Adobe CC software I purchased. My Purchase Order History claims I didn't have a history. There are not options to redownload either. I am logged on right now. Please advise.

    Does your Cloud subscription properly show on your account page?
    If you have more than one email, are you sure you are using the correct Adobe ID?
    https://www.adobe.com/account.html for subscriptions on your Adobe page
    If yes
    Some general information for a Cloud subscription
    Cloud programs do not use serial numbers... you log in to your paid Cloud account to download & install & activate... you MAY need to log out of the Cloud and restart your computer and log back in to the Cloud for things to work
    Log out of your Cloud account... Restart your computer... Log in to your paid Cloud account
    -Sign in help http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html
    -http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html
    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    -http://helpx.adobe.com/creative-suite/kb/trial--1-launch.html
    -ID help https://helpx.adobe.com/contact.html?step=ZNA_id-signing_stillNeedHelp
    -http://helpx.adobe.com/creative-cloud/kb/license-this-software.html
    If no
    This is an open forum, not Adobe support... you need Adobe staff to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"

  • I can't get my iphone 5. Ios 7, to accept cookies. I have set the 'block cookies' field ti either never or from third parties. I have cleared history and cookies and data, restart the iphone. Please help...

    I upgraded my iphone to os 7 two days ago. However, now it cant accept cookies at all. I have set field 'block cookies' to never or from third parties. I have cleared history and cookies, then reboot my iphone. I have tries to force close all applications. Still, cant accept cookies. Please help...

    Make sure you have the latest iTunes version installed and hopefully you have the most recent backup of your iPhone.  Do a DFU restore.  While it's plugged in to your computer, press and hold the Home and Sleep/Wake buttons together until the screen is off.  When the screen's off, release only the Sleep/Wake button and keep holding down the Home button.  Wait until you see in iTunes on your computer to show that it detected it in recovery mode.  When it does, proceed with the restore.  It will be restored and updated to the latest iOS 7.0.2.  If you have a backup, restore from that backup once iOS 7.0.2 is successfully installed on your iPhone.
    If your iPhone still won't activate, I agree with gail, you will have to get in touch with that developer.

  • Why is my history blank even though I have 'remember history' turned on in the preferences

    Why is my history blank even though I have 'remember history' turned on in the privacy tab in the preferences. I use a mini mac, Mac OS X 10.6 and Firefox 6.0.2

    Same problem here. I have Firefox on several machines and OS (XP and Ubuntu [edit: Win 7 too]). However, the bookmarks file is the same in each.
    None of the location bars suggest (autocomplete) features work now. I tried deleting the places.sqlite (bookmarks) file and the bar began working again, but all my bookmarks had lost their "[http://en.wikipedia.org/wiki/Favicon favicons]". When I replaced that places.sqlite file with my original (including the favicons) the location bar again ceased working.
    I highly doubt that the upgrade to 3.6.11 would corrupt every places.sqlite file I have on multiple computers. That leads me to believe that there is some kind of bug in 3.6.11 that messes up the location bar (especially if your bookmarks contain favicons). Hope some kind of patch can be found.
    Edit: Just updated Firefox on Windows 7 with same results. I even backed up the places.sqlite (so it could not be corrupted) file before updating then used the backup file when the location bar failed to work. Even restoring with the backup file didn't work - again, this can not be due to a corruption issue.
    Finally, I noticed that one (only one) of the autocomplete bookmarks I had selected prior to updating FF in Ubuntu was actually retained. Is there some other file where autocomplete data is held? I wish I knew why that one bookmark is still able autocomplete while all the others will not (note: this is only in the Ubuntu install all other FF installs (in XP/Win7) bookmarks will not autocomplete.

  • Is it possible to have user defined field in pick and pack manager

    HI,
    I would like to know whether it is possible to have user defined field in pick and pack manager row level.
    Manage user defined field there is only provision for <b>pick list</b> and not for <b>Pick and pack</b>.
    Regards
    Krishna

    The Pick and Pack Manger doesn't relate to any specific table (nothing saved to the database), so it does not make any sense having a userdefiend field on it. I would guess that you could add a column and bind it to a userdatasource (not a SAP database field), but if this make any sense depends on what you are trying to achive...

  • How do I enable cookies in 3.6.6? Privacy menu in Tools - Options do not have Remember History and Enable Cookies and Exception button. Again, verison is 3.6.6.

    How do I enable cookies in 3.6.6? Privacy menu in Tools - Options do not have Remember History and Enable Cookies and Exception button. Again, verison is 3.6.6.

    To see all the History and Cookie options, select: Tools > Options > Privacy > History: Firefox will: "Use custom settings for history"
    See [[Options window - Privacy panel]] and [[Cookies]]

  • List of users who do not have USER GROUP.

    Hi friends,
    I want to find out the list of users who do not have USER GROUP.
    Can any one please let me know how to find out.
    Thanks,
    Ankitha

    Hi,
    use the transaction "suim" or the abap report "RSUSR002"
    -> user information system
    open tree -> user -> users by compley.... -> exec. users by complex...
    next screen -> Group for authorization -> select multiple selection (right symb.) -> in the tab 'single vals' -> click on the left symb. -> select '='
    leave the fields blank. -> 'F8' or ok. -> then in the main screen 'F8' or run.
    so you will get all users without a group asignment
    I hope it was helpfully.
    best regards
    Cahit

  • I used SCCM to deploy Firefox 5.0 to our organization, and when I redeploy firefox 6.0 I still have users complaining that Firefox needs an admin to upgrade even though it is already at 6.0

    I used SCCM to deploy Firefox 5.0 to our organization, and when I redeploy firefox 6.0 I still have users complaining that Firefox needs an admin to upgrade even though it is already at 6.0

    Absolutely! This post has the best solution by a user named cor-el.
    https://support.mozilla.com/en-US/questions/818780#answer-179418

Maybe you are looking for