[OIM] Need report for a user that unlock another one

Great people of OIM realm..
I need to make a report that can discern about users that were unlocked by an administrator, or by OIM for example, one that pass the challenge-response. Do you know if is there in some part of the data model, a query I can make so I can display USER-DATE_OF_UNLOCK-BY_WHO?
Thanks!

Hi Babu,
<b>Please check out this Blog
/people/sap.user72/blog/2005/02/23/raising-exceptions-in-sap-xi-mapping
Also check these blogs ...
/people/michal.krawczyk2/blog/2005/09/09/xi-alerts--step-by-step
ALERTS STEP BY STEP MICHAL
/people/michal.krawczyk2/blog/2005/09/09/xi-alerts--troubleshooting-guide
ALERTS TROUBLE SHOOTING MICHAL
/people/krishna.moorthyp/blog/2006/04/08/reconciliation-of-messages-in-bpm
Reconciliation of messages in BPM
/people/bhavesh.kantilal/blog/2006/07/25/triggering-xi-alerts-from-a-user-defined-function
Triggering XI alerts from user defined function
Thanks,
Aby

Similar Messages

  • How to get Reports for specific User that how many password has been reset using FIM SSPR in FIM 2010 R2 SSPR

    Hi,
    How to get Reports for specific User that how many password has been reset using FIM SSPR in FIM 2010 R2 SSPR
    Regards
    Anil Kumar

    Hello there Anil,
    A simple way to quickly get a overview is to look at the request history within the portal environment (note that this will expire in a few day based on your environment, after that you would need to FIM Reporting Module - but you could increase this to
    maybe 60 days to so, watch the DB size).
    To do this you could create some custom search scopes of do some custom queries. The creator of the SSPR activities always has the same GUID so you can use that so search.
    In your search scope you can use the following XPath to play with.
    - All Password Reset Requests - /Request[Creator='b0b36673-d43b-4cfa-a7a2-aff14fd90522' and Operation='Put']
    - All Completed Password Reset Requests - /Request[Creator='b0b36673-d43b-4cfa-a7a2-aff14fd90522' and RequestStatus=‘Completed']
    You can play with the "RequestStatus".
    Hope this helps.
    Almero Steyn (http://www.puttyq.com) [If a post helps to resolve your issue, please click the "Mark as Answer" of that post or "Helpful" button of that post. By marking a post as Answered or Helpful, you help others find the answer
    faster.]

  • How to Block Account member in input reporting for some users?

    Hi experts, i need to know if is possible to block input of values for some Users in the Account Dimension so that some users can input value in the report but other user cant do it.
    I try to do this from "member access profile" but this option only allow you to define access right for one specifict parent o member.
    I mean, is posible to asigned to Account Dimension a Propertie type "OWNER" like ENTITY?
    For example: one user must to input value for the Account member "CASH", but other user dont, however i have to show the same input reporting for both users.
    I hope understand the question, im sorry about my english
    thank you in advance
    Ignacio Vazquez

    I would think you could do one of the following:
    Either set account as a secured dimension.  You would then define security profiles for all account groups and assign those to your users / teams as appropriate.  Would take a while to setup initially, but if your users don't change that much it shouldn't be too difficult to manage once it's done.
    Setup different input templates that only showed the accounts you wanted each group of users to see.  Put the templates in different site folders and assign access to those sites as required.  users would then only have access to open the template applicable to them.  Would require that you basically make duplicate copies or your current template, modify and save to different site folders which could become a pain if the template requires changes (since you would now have to make the same change multiple times).
    Setup a macro in the current template so that you need to enter a password to unlock the send commands for the respective accounts.  I don't know if it can be setup to support multiple passwords - assuming it can, password 1 would unlock all accounts, password 2 would only unlock CASH accounts, password 3 would only unlock LIABILITY accounts, etc.  You then distribute the passwords to the users as appropriate.
    Hope that helps.

  • How to set different default interactive reports for different user groups?

    I'm probably overlooking an obvious solution, but how do I set different default interactive report for different user groups?
    For the same interactive report, I want one set of users to see a default where the default filter is based on column X. However, another group of users doesn't have authorization to see that column so I need to set the default filter to something else for them.
    Thanks

    You can set a filter on a report in a URL - would that help? I think with apex 4.x you can also link to a saved default report or alternative report...

  • Is there any object in labview that contains a list of data for the user to select (selection one at a time) or add a new data?

    Is there any object in labview that contains a list of data for the user to select (selection one at a time) or add a new data?

    List and table controls -> listbox..is that what you are thinking of?
    The listbox presents the user with a list of options, and you can set it to only accept one selection at a time...Adding new data to the list can not be done directly by the user but if you make e.g. a text control and a button you can programatically insert new objects described in the text box when the button is pressed...(see example).
    If you need more than one column you have the multicolumn listbox. If you want the users to write new entries directly yu can use a table and read selected cells using it's selection start property to read what cell has been selected.
    MTO
    Attachments:
    Listbox_example.vi ‏34 KB

  • SimpleSearch can only retrieve documents(reports) for enterprise users!!

    Good Day Everybody,
    i'm using SimpleSearch to retrieve all reports for specific users, the problem is that i'm only able to retirve reports for enterprise users and i can not get reports for domain users, anybody knows why?? or there is another way to do so??
    GetDocumentList is working fine but it's only retirves reports for the loged in user only....
    also i would like to extacrt all useres which has permession to reports, so would you please give me a hand of help and send me how to do!!!
    kindly find below the code i'm using to retrieve all reports for specific users:
    //After creating connection, seesion and login using administrator enterprise user
            SimpleSearch mySearch = new SimpleSearch();
            mySearch.InAuthor = txtUsername.Text;//.Trim();
            //mySearch.InName = "";
            mySearch.BeginDate = System.DateTime.Now.AddYears(-2);
            mySearch.BeginDateSpecified = true;
            mySearch.ObjectType = "documents";// "documents";
            BusinessObjects.DSWS.BICatalog.SortType[] mySort = new BusinessObjects.DSWS.BICatalog.SortType[1];
            mySort[0] = BusinessObjects.DSWS.BICatalog.SortType.NAMEASC;
            BICatalogObject[] searchResults= null ;
            searchResults = boCatalog.Search(mySearch, mySort, null, null, InstanceRetrievalType.WITHOUTINSTANCE);
            if (searchResults != null)
                foreach (BICatalogObject myBOCatObject in searchResults)
                    Response.Write(myBOCatObject.Name + "----" + myBOCatObject.UID + "" + myBOCatObject.CreationDate + "--" +"<BR>");
            else
                Response.Write("no documents");

    Which version  are you using?
    BICatalog is pretty limited, and has been deprecated for more recent versions.
    Sincerely,
    Ted Ueda

  • How can I set the default home page in Firefox 4 for all users that login to a PC on a Win 7 PC?

    I work at a community college in upstate NY.
    We use Firefox as the default browser at our institution and we have always set the default homepage to be our homepage for all users that login to the PC. We had a procedure to to that that worked with Windows XP and FF 3 or earlier
    We would do the following:
    1. go to: c:\Documents and Settings\Administrator\Application Data\Mozilla\FireFox\Profiles\<profile_name>\prefs.js
    2. Add the line: user_pref (“browser.startup.homepage”,”http://www.genesee.edu”);
    3. Copy the Folder
    C:\Documents & Settings\Administrator\Application Data\Mozilla
    To
    C:\Documents & Settings\Default User\Application Data\Mozilla
    4. Restart the computer
    We're going to Win 7 and Firefox 4 and things seem to be different in terms of files and file structure. Does anyone know how to accomplish this?
    Thanks in advance.

    Making customisation from the default profile is generally considered poor practice and quite often doesn't work out as planned. (If you're interested in some more information on this, [http://mockbox.net/windows-7/227-customise-windows-7-default-profile.html see here] see here)
    This article should help you with developing and deploying your customised Firefox 4 installation (without touching the Windows 7 default user profile):
    http://mockbox.net/configmgr-sccm/174-install-and-configure-firefox-silently.html

  • BI 7.0 version report  for  anonymous user

    Dear Gurus,
    Greetings for the day!
    I want to display the BEX BI 7.0 version  report on Portal 7.0 for anonymous user. But I am not able to do the same. Can somebody please help me to achieve my task. Thanks.
    Regards,
    P.Swarna

    HI,
    Thanks for your reply,
    Its already configured and the reports working perfectly with login user ids( like end user).But when we assign same report
    to anonymous user with authentication scheme = anonymous in iview properties still its redirecting to logon page.
    Please suggest how to configure BI 7.0 report for anonymous users.
    Regards,
    P.Swarna

  • Want to set Reader option in Internet Preferences for all users that login to the workstation

    How can I do this? Is there a config file to edit or a policy object to maintain the perferences settings for all users.  Right now this has to be set manually for each users that would use the system.  Thank you!

    Making customisation from the default profile is generally considered poor practice and quite often doesn't work out as planned. (If you're interested in some more information on this, [http://mockbox.net/windows-7/227-customise-windows-7-default-profile.html see here] see here)
    This article should help you with developing and deploying your customised Firefox 4 installation (without touching the Windows 7 default user profile):
    http://mockbox.net/configmgr-sccm/174-install-and-configure-firefox-silently.html

  • Need SP_TN for specific user must use specific document series and warehouse in Marketing Documents

    Hi experts,
       I need SP_TN for specific user must use specific document series and warehouses in Marketing Documents SAP B1.
       Kindly give solution ASAP.
    Thanks in advance

    Hi Nagarajan,
       It show (1) Not allowed to add PO.
       I used the following SP
    IF  @object_type = '22' AND @transaction_type IN (N'A',N'U')
    BEGIN
    IF Exists
    (SELECT T0.DocEntry FROM POR1 T0 INNER JOIN OPOR T1 ON T0.DocEntry = T1.DocEntry
    WHERE  T1.DocType = 'I' AND T1.Series = '142' OR T1.Series = '145' AND T0.[WhsCode] = 'STEX-01'
    or T0.[WhsCode] = 'STNEX-01' and T1.[UserSign] ='1'
    and T1.docentry = @list_of_cols_val_tab_del)
    BEGIN
    SELECT @error = 1
    SELECT @error_message = 'Not allowed to add PO'
    END
    END
    warm regards,
    Guhan

  • Hi, my free trial license has expired, and I am wondering if it's possible to only pay for one month for after effects without locking for a year with monthly fee. I only need this for a project that is ending next week.

    Hi, my free trial license has expired, and I am wondering if it's possible to only pay for one month for after effects without locking for a year with monthly fee. I only need this for a project that is ending next week.

    Creative Cloud Plans
    https://creative.adobe.com/#plans

  • Is it possible to save System preference settings for every user that logins to a Mac OS X?

    I work at a school and we have iMacs running Mavericks 10.9 in our environment.  We have them binded to our Windows domain so that way students can use their own login to access the Macs.  I have a number of System preference settings that I would like to take a effect, but I only see that these settings take effect for every user.  So even if I login as the Main administrator account and set settings in System Preferences, such as not allowing the Wifi symbol to show, the next user that logins will still see the wifi symbol because the setting isn't taking effect for their System preferences.  Does anyone know a way to get System Preference settings to take affect for every user that logins? Maybe a script?

    Modifying the user template is not supported. You can Google for people who have done it in the past. I would recommend going to official route, if possible. Here are a couple of training documents. I'm sure there is more available though more official channels.
    http://training.apple.com/pdf/wp_osx_configuration_profiles_ml.pdf
    https://www.apple.com/education/docs/l521219b_osx_deployment_guide_030513.pdf
    http://training.apple.com/pdf/wp_integrating_active_directory_mav.pdf

  • How do I chat between users that are under one .mac/MobileMe family acct?

    How do I chat between users that are under one .mac/MobileMe family acct? We are all under one account, but in different locations, using iChat 4.0.5 and OS 10.5.4. Thank you.

    The only way is to create separate accounts under either AIM or Jabber (for example Googletalk). Then everybody logs into iChat with a different user and you can have full iChat functionality (except encryption which works only if you have different .mac accounts). If some members of your family have already a gmail/googlemail account then they can use this account information to log into iChat if you create a Jabber account with the gmail user information. Otherwise go to www.aim.com, request a screen name and use this user information to create an AIM account in iChat.
    Have fun.

  • Need driver for HP Photosmart 309G - only see one for 309a

    Need driver for HP Photosmart 309G - only see one for 309a - that one does not print correctly after install Please help! Running Windows 7 home premium 64 bit

    Hi,
    The following link is for Windows 7 (only few weeks old):
         http://ftp.hp.com/pub/softlib/software12/COL29699/​mp-73652-4/PS_AIO_06_C309g-m_USW_Full_Win_WW_140_1​...
    Release details
    Released: 2014-08-21
    File name: PS_AIO_06_C309g-m_USW_Full_Win_WW_140_175-4.exe [1/1, 157.0M]
    Version 14.1.0
    Compatibility:
    Microsoft Windows Vista
    Microsoft Windows Vista Home Basic (32-bit)
    Microsoft Windows Vista Home Premium (32-bit)
    Microsoft Windows Vista Business (32-bit)
    Microsoft Windows Vista Ultimate (32-bit)
    Microsoft Windows 7 (32-bit)
    Microsoft Windows 7 Home Basic (32-bit)
    Microsoft Windows 7 Home Premium (32-bit)
    Microsoft Windows 7 Professional (32-bit)
    Microsoft Windows 7 Enterprise (32-bit)
    Microsoft Windows 7 Ultimate (32-bit)
    Microsoft Windows 7 Home Basic (64-bit)
    Microsoft Windows 7 Home Premium (64-bit)
    Microsoft Windows 7 Professional (64-bit)
    Microsoft Windows 7 Enterprise (64-bit)
    Microsoft Windows 7 Ultimate (64-bit)
    Microsoft Windows 7 (64-bit)
    Microsoft Windows Vista (64-bit)
    Microsoft Windows XP Professional
    Microsoft Windows Vista Enterprise (32-bit)
    Microsoft Windows Vista Enterprise (64-bit)
    Microsoft Windows XP Home Edition
    Microsoft Windows XP Media Center
    Microsoft Windows Vista Home Basic (64-bit)
    Microsoft Windows Vista Home Premium (64-bit)
    Microsoft Windows Vista Business (64-bit)
    Microsoft Windows Vista Ultimate (64-bit)
    Microsoft Windows XP
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Shared Services User Reports - for HFM Users

    Does anyone have some good material or knowledge they can share with me today regarding the following Shared Services topics?
    1. What might cause a run of the Users By Group report to fail? After about 15 mins bombs out and receive the following error: "User not found with identity = ntlm:SID=S-1-5-21-787380144-986785343-375376054-10174?USER(-2147216700). Then gives much more detail on error.
    2. How to remove users that appear under admin role but not in default?
    3. For audit (TODAY), ideally should produce a report of HFM users – including dates (when added, when security /provisioning was changed for them) – is there a report or combo of reports that will provide this information?
    Any help or a point in the right direction is hugely appreciated.
    Thank you!

    Ok - just some pointers, so use as suits.
    1: this looks like it is not seeing your AD/NTLM user. You see a similar SID if in Properties of any file share where the connection to the domain is not available, or the user no longer exists. Remember, if a user ID in NTLM or AD has been changed, Shared Services does not recognise this, and stores the original SID, so you need to remove and reprovision the user.
    2. The cleanest INHO is to do a CSS Import/Export and 'clean' the file. RTFM :)
    3. There are some reports in Shared Services, but see if this is of use - especially the Security Matrix, (http://www.epmmaestro.com/dnn/Products/EPMWebSymphony/tabid/56/Default.aspx)
    Good luck

Maybe you are looking for