OIM Custom reports - User Resource Access History

HI,
I am working on OIM custom reports . I was trying to get custom user resource access history( i.e., need to include information like field changed, its old value , its new value etc are the extra info I need in the report ). To achieve this I had used UPA_UD_FORMS and UPA_UD_FORMFIELDS. I have few questions in this process..
1. The audit result does not include the about the initial access info of the user which he obtained during usr creation, the table are containing only the changes occured after the user creation. Am I missing something please suggest.
2. And update_date and Effective_from date are not in sync .. any omments
Thanks,
Anumolu.

I have been told that this historic data is stored in upa_ud_forms and upa_ud_formfields table.
However, these tables are empty in my OIM environment. Is there a necessity to enable that audit data is written?

Similar Messages

  • OIM Custom reports - Un-Identified Accounts Report

    HI,
    I am working on *OIM custom reports . I was trying to get custom Un-Identified Accounts Report.
    Is there an example for the query Unidentified Account Report?
    I make query from oim10g is not working, especially table RCD, RCM.
    What is table name in oim 11g that subtitute RCD & RCM table?
    Thanks,
    Sapril.

    Hi
    Refer the following link for enabling the reports:
    http://docs.oracle.com/cd/E14571_01/doc.1111/e14308/system_props.htm#OMADM884
    Searhc for 'Enable exception reports'
    Sample query:
    Note taht OIM OOTB reports already contains a report for Orphaned account. You can check that too.
    SELECT * FROM recon_exceptions HERE usr_key IS NULL
    you should modify this query and join tables to add more fields.
    Regards
    user12841694

  • Custom Report for Application Catalog History

    Hi All,
    I am going to create custom report that display request and approval history from application catalog. Required parameters are Application name, requested by, approved by, request time, approval time. AFAIK there is no out of the box default report from
    SCCM 2012 SP1 that display those parameters. Which tables view and columns I could use for this purpose?
    Thanks for your help.

    The information which user installed what from the application catalog is not stored anywhere if I am not mistaken. 
    Torsten Meringer | http://www.mssccmfaq.de

  • Search which report user has access to?

    I need to search the ReportServer to find which report an individual has access to?
    This will not be via the a UserGroup, but on a individual name basis.
    thanks,

    Hi ,
      Try the below query
    USE ReportServer
    Go
    DECLARE @UserName sysname
    SELECT @UserName ='<UserName>'
    SELECT C.Name
    ,U.UserName
    ,R.RoleName
    ,R.Description
    ,U.AuthType
    FROM Reportserver.dbo.Users U
    JOIN Reportserver.dbo.PolicyUserRole PUR
    ON U.UserID = PUR.UserID
    JOIN Reportserver.dbo.Policies P
    ON P.PolicyID = PUR.PolicyID
    JOIN Reportserver.dbo.Roles R
    ON R.RoleID = PUR.RoleID
    JOIN Reportserver.dbo.Catalog c
    ON C.PolicyID = P.PolicyID
    WHERE U.UserName = @UserName
    ORDER BY U.UserName
    Best Regards Sorna

  • Custom Report: the list of IT ROLES of one or more users

    Hi all,
    I want to do a custom report that gives me the list of IT ROLES of one or more users. Anyone could give me some guidelines?
    Thanks

    according to the docs... if I interpret them right
    getRoles returns roles assigned to the context given, this is wise since it is usualy used to check if the current user invoking the call has the rights in a form, workflow or similiar...
    Adding the "accountId" string as a second argument would invoke this form of the getRoles
    getRoles
    public static java.util.List getRoles(LighthouseContext s, java.lang.String current) throws WavesetException
    This variant allows a specific name to be included in the returned list. Used to ensure that the current value of a role may continue to be assigned even though the current admin may not have access to that role.
    I believe you should get the users view and get your info from there...
    if you try using the debug page and getObject User and the accountId, you will see the user in its full glory...
    there you can see what you might want to do I hope

  • Error while running a custom report in OIM

    Hi All,
    I have created a new custom report for OIM and written a stored procedure for that. But while running the report from Admin console, its throws the below error:
    java.sql.SQLException: ORA-00911: invalid character
    ORA-06512: at "IDM.XL_EXCEPTION", line 149
    ORA-06512: at line 1
    ERROR,19 Jun 2011 22:09:31,665,[XELLERATE.WEBAPP],Class/Method: ReportAction/displayTabularReport encounter some problems: Error executing stored procedure
    Thor.API.Exceptions.tcAPIException: Error executing stored procedure
    Line 149 : DBMS_OUTPUT.PUT_LINE('select stmt ='|| select_stmt);
    "select_stmt" is a select query based on the OIM tables.
    Please advice.

    Seems like there is a invalid character in your SQL (Report's store procedure). Could you share with me whole content of this "select_stmt" variable?
    regards,
    Thiago L Guimaraes

  • Report  for "record payment history"  for customer ?

    Report  for "record payment history"  for customer ?
    Please send it.

    Dear Goutam
    Through <b>FBL5N</b>, you have to select "<b>Cleared items</b>" with "from to date" and execute.
    You will get a list which can then be downloaded as excel by selecting "List" on top left followed by "export" and "spreadsheet".
    Thanks
    G. Lakshmipathi

  • Custom report toshow the "Last Logon User Name"

    Is it possible to create a custom report to display the "Last Logon User Name" field that appears in the Properties of each computer object ?

    Yes, download the RDL file and modify the report. If the user name is not in one of the current datasets, then you have to add it first.
    Kent Agerlund | My blogs: blog.coretech.dk/kea and
    SCUG.dk/ | Twitter:
    @Agerlund | Linkedin: Kent Agerlund |
    Mastering ConfigMgr 2012 The Fundamentals

  • Custom report software installed with last logged on user.

    Can someone please help, I'd like to create a custom report: Specific software installed on a computer which includes last logged on user. I can do this by query but need a custom report for none ConfigMgr users.

    SELECT DISTINCT
    TOP (100) PERCENT dbo.v_GS_COMPUTER_SYSTEM.Name0 AS [Computer name], dbo.v_GS_ADD_REMOVE_PROGRAMS.DisplayName0,
    dbo.v_GS_ADD_REMOVE_PROGRAMS.Version0, dbo.v_R_System.User_Name0, dbo.v_R_System.User_Domain0 AS [User domain],
    dbo.v_GS_COMPUTER_SYSTEM.Domain0 AS [Computer domain], dbo.v_R_System.AD_Site_Name0 AS [Computer AD Site]
    FROM dbo.v_GS_ADD_REMOVE_PROGRAMS INNER JOIN
    dbo.v_GS_COMPUTER_SYSTEM ON dbo.v_GS_ADD_REMOVE_PROGRAMS.ResourceID = dbo.v_GS_COMPUTER_SYSTEM.ResourceID INNER JOIN
    dbo.v_R_System ON dbo.v_GS_COMPUTER_SYSTEM.ResourceID = dbo.v_R_System.ResourceID
    WHERE (dbo.v_GS_ADD_REMOVE_PROGRAMS.DisplayName0 LIKE N'Adobe Shockwave Player%')
    ORDER BY [Computer name]
    Keep in mind that this query will only find x86 software titles. Use 
    v_ADD_REMOVE_PROGRAMS
    instead to get both.
    http://www.enhansoft.com/

  • How to add user e-mail to a custom report?

    Hello,
    I am not a sql DBA, but trying to find out exact line that I should add to the query for any custom report, to show user e-mail address field as well.
    For example, I use this query for all machines running unwanted software (found this query on google) :
    Select 
    SD.Name0, 
    sys1.User_Name0,
    SF.FileName 
    From v_r_system sys1
    join v_gs_softwarefile sf on sf.resourceid=sys1.resourceid
    left join v_R_User usr on usr.User_Name0=sys1.User_Name0
    left Join v_R_System SD on SD.ResourceId = SF.ResourceId
    Where SF.FileName Like '%Azureus%'
    Or SF.FileName Like '%ABC%'
    Or SF.FileName Like '%BitComet%'
    Order By SD.Name0, SF.FileName, sys1.User_Name0
    I do have user discovery enabled with mail attribute, and can see e-mail address getting collected for all the users.
    Thanks in Advance

    In case it's SQL/SSRS, which I assumed based on the initial query, then your query should look like this:
    Select
    SD.Name0,
    sys1.User_Name0,
    usr.Mail0,
    SF.FileName
    From v_r_system sys1
    join v_gs_softwarefile sf on sf.resourceid=sys1.resourceid
    left join v_R_User usr on usr.User_Name0=sys1.User_Name0
    left Join v_R_System SD on SD.ResourceId = SF.ResourceId
    Where SF.FileName Like '%Azureus%'
    Or SF.FileName Like '%ABC%'
    Or SF.FileName Like '%BitComet%'
    Order By SD.Name0, SF.FileName, sys1.User_Name0
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • Getting list of reports a user has access to

    Hi,
    I'm new to BO and have been trying to figure out a way to get a list of reports a specific user has access to. In reading the documentation in the SDK it appears the only way to do this is to get a list of all reports, loop through them, getting the ObjectPrincipals, looping through that then checking if the objectPrincipal.Name == user.Title.
                foreach (InfoObject report in infoObjects)
                    SecurityInfo securityInfo = report.SecurityInfo;
                    ObjectPrincipals objectPrincipals = securityInfo.ObjectPrincipals;
                    foreach (ObjectPrincipal objectPrincipal in objectPrincipals)
                        if (objectPrincipal.Name != user.Title) continue;
                        if (!sortedList.Contains(report.ID))
                            sortedList.Add(report.ID, report.Title);
    This works, but takes over 90 seconds to generate the list of reports I want, as it is looping through all reports in the CMS (120). My logic is telling me there must be a better way to do this, I just haven't found the answer. It appears that calling securityInfo.ObjectPrincipals is what is taking the most time.
    Advice, thoughts, suggestions are all appreciated.
    Thanks
    James

    Ok, logging in as a user and getting a list of reports is working well and fast. But how would you recommend getting a list of all users and the reports they are assigned to. Is there a query for that using the relationship functions of Query Builder?
    Thanks
    James

  • BP Inactive Customer Report discrepancy between users

    The out-of-the-box Inactive Customer report under Business Partners gives different results for two users.  For example, one user (a superuser) gets almost 600 hits on inactive customers while another user (not a superuser) gets less than 200.  No options or filtering is selected by either user.
    I'm thinking it's related to authorizations, but can't figure out which might cause this.
    TIA

    hi john,
    Go to
    Administration>System intializatioin>General Authoirzation-->
    Select user a right side>Drill down BP Master>Drill Down
    Business Partner Reports-->
    Select Inactive customers-->Give Full Authorization
    and Update authorizations.
    Also check properties in selection creteria
    Whether user wrongly checked any properties
    detick it and
    also Tick mark Ignore properites right at the top.
    Hope above answer helps you.
    Jeyakanthan

  • Any way to publish and distribute custom reports to user ?

    Dear all,
    Would you anyone share your experience on publishing and distributing custom reports to users?
    HY

    Hi,
    See this thread.
    Does EBS license include tools for reporting and extracting data (queries)
    Does EBS license include tools for reporting and extracting data (queries)
    Thanks,
    Hussein

  • Adding of Custom Report in SAP Easy Access Menu

    Hi all,
    How can we add the Custom Report in the SAP easy access Menu.
    Transaction code can be added thru Favourites, but not the Reports.
    Can any one give a ray on this one...
    Thanks,
    Srikanth

    Srikanth
    If you want to add Z report to esay access first of all you need to create T-code using Tcode se93.
    here you need fill some details your progroam name what kind of program it is etc.
    Then come to easy accees click on favarities and add that T code.

  • Cannot delegate Reporting Services Web access to domain user / group, User does not have required permissions

    Hi
    I have an SCCM 2012 SP1 CU3 installation on a Server 2008 R2 + SQL 2008 R2.
    I'm having trouble delegating Reporting Services Web Access to a standard domain user.
    I have followed the instructions from these blogs:
    http://blog.coretech.dk/kea/creating-the-reporting-user-role-in-configmgr-2012/
    http://www.wolffhaven45.com/blog/sccm/assigning-users-to-configmgr-reportusers-group-in-sccm-2012/
    No matter how I try, I cannot get the reports to show for a standard domain user. In the console no reports are showing and in the web access I get
    "User domain\user does not have required permissions........"
    The only thing that is consistenly working when I test is to put the AD Group on the Security Role "Full Administrator".
    Then everything will show up.
    Any ideas on how to troubleshoot this?

    Thanks everyone for helping me with tips. I have now solved the problem. It was the permissions from SCCM that did not replicate to the Reporting Server.
    In srsrp.log I got these error messages:
    Could not retrieve the reporting service name for instance 'MSSQLSERVER'
    Invalid class
    Could not stop the reporting serviceAfter googling a litte I found these 2 sites with similiar problems:http://social.technet.microsoft.com/Forums/en-US/d4a7f93a-506f-4e3f-b5fc-bd2b087277da/ssrs-permissions-do-not-add?forum=configmanagergeneral
    http://www.microtom.net/microsoft-system-center/software-distribution/sccm-2012-reporting-services-do-not-install
    So I ran the command for SQL 2008 R2: mofcomp.exe C:\Program Files (x86)\Microsoft SQL Server\100\Shared\sqlmgmproviderxpsp2up.mof
    and BAAM, everything started to work =)
    /ALX

Maybe you are looking for

  • CD, DVD and ipod nano issues

    I just bought a new iPod nano- the first I have ever owned. I installed the iTunes software and that works okay. I plugged in the nano to the computer and the computer recognizes the nano, but iTunes does not. When I open iTunes, I get the following

  • How do I repeat a function that starts immediately?

    Hi, I am using a Timer function to repeat a function however the function only begins (and repeats) after the period set eg. 5 seconds not immediately. Here is an example of the code: var myTimer:Timer = new Timer(2000,8); myTimer.addEventListener(Ti

  • How to configure http server in oracle 10g

    Hi I am configuring apex 3.2.1 on oracle 10g 10.2.0 I need help how to configure http server bec i did not find any Apache file or folder in 10g if it is then how . Arshad

  • Client_ole2.Last_exception

    Hi , I am suddenly getting an exception when i use Client_ole2 for opening a document . In the exception handling , I retur client_ole2.last_exception. This is returning an Number "-2147221008" . Using overloaded Last_exception , I get the message an

  • Aperture Displays PSD Files as All Black

    Hi, I've followed the instructions to set up the preferences in Photoshop to maximize compatibility (http://docs.info.apple.com/article.html?artnum=302624), but when I import the PSD files into Aperture, they aren't displayed properly - they are just