Report to find Users that cannot Shop?

Hi All,
Is there a report/program in SRM 5.0 that can tell what users are not configured correctly that will not allow them to shop?
Also does the same report run in SRM 4.0?
Thanks,
Nikhil
Edited by: Nikhil Malvankar on Nov 24, 2008 6:49 PM
Edited by: Nikhil Malvankar on Nov 24, 2008 6:49 PM

Hi Viv, Muthu,
Thanks for your reply.
How do I check for errors like users that are not have a position?
Also is there any documentation link that I can refer too to debug such such issues?
Thanks,
Nikhil

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 do I make Word and Excel Documents readable to PC users that cannot open them

    How do I make Word and Excel Documents readable to PC users that cannot open them

    Be sure to save them in the Office 2007 format as .doc or .xls files.

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

  • Find user that enter to program

    Hi,
    i wont to find user number that enter to program,
    how i can do that?
    regards

    Hi
    If yuo need to know the user by abap u can check SY-UNAME, but if u need to know the users are using a certain program u can try to use trx like SM50/SM51 and SM04
    Max

  • Find USERS that are using a particulary Forms ??

    It is possibile to find the USERS that are using the a FORMS in application server ??
    I must update sometime a forms, but if the user is using the forms it is not possibile. Find the user i can call it for exit from teh form.
    Thank's a lot.

    I'm not aware of such an information somewhere. We had a similar need (actually we needed something more), and we used DBMS_APPLICATION_INFO package, which updates CLIENT_INFO column in V$SESSION.
    Bad news are : you have to change every Form to do that....but it's not difficult, you can add a call to that package in WHEN-NEW-FORM-INSTANCE trigger in each Form...

  • How to find users that who open/send the purchase requisition

    Hi gurus,
    I need to find all the users that open the purchase requisitions in the system. Is there a table where I can check or any other way?
    Thank you.
    H

    Dear Hakan,
    SM04 is just who is doing in perticular transaction in current time,but there is no display who is done in past time in perticular transaction, i mean what are the Changes have done.
    the only solution in Purchase Requisition is available is Venrtion Management.if you activate and configure Vertion Management, werever people is changing PR before saving they must have the enter name or permition to take,so as your solution is best useful is Vertion Management is very much suitable
    Vertion Management configuration is also pretty simple,so threads available,please have a look
    Hope this may helps you
    Prem.

  • Script to find users that are a member of more than one of a list of specific groups

    Hi,
    I need to generate a list of users that are members in more than one group, out of a list of specific security groups.  Here's the situation:
    1) We have about 1100 users, all nested under a specific OU called CompanyUsers.  There are sub-OUs under CompanyUsers that users may actually be in.
    2) We have about 75 groups, all directly under a specific OU called AppGroups.  These groups correspond to a user's role within an internal line of business application.  All these groups start with a specific character prefix "xyz", so the group
    name is actually "xyz-approle".
    I want to write a script that tells me if a user from point 1) is a member in more than one group in point 2).  So far, I've come up with a way to enumerate the users to an array:
    $userlist = get-qaduser -searchroot 'dq.ad/dqusers/doral/remote' | select samaccountname |Format-Table -HideTableHeaders
    I also have a way to enumerate all the groups that start with xyz that the user is a member of:
    get-QADMemberOf -identity <username> -name xyz* -Indirect
    I figure I can use the first code line to start a foreach loop that uses the 2nd code line, outputting to CSV format for easy to see manual verification.  But I'm having two problems:
    1) How to get the output to a CSV file in the format <username>,groupa,groupb,etc.
    2) Is there any easier way to do this, say just outputting the users in more than one group?
    Any help/ideas are welcome.
    Thanks in advance!
    John

    Here is a PowerShell script solution. I can't think of way to make this more efficient. You could search for all groups in the specfied OU that start with "xyz", then filter on all users that are members of at least one of these groups. However, I suspect
    that most (if not all) users in the OU are members of at least one such group, and there is no way to filter on users that are members of more than one. This solution returns all users and their direct group memberships, then checks each membership to
    see if it meets the conditions. It outputs the DN of any user that is a member of more than one specfied group:
    # Search CompanyUsers OU.
    strUsersOU = "ou=CompanyUsers,ou=West,dc=MyDomain,dc=com"
    $UsersOU = New-Object System.DirectoryServices.DirectoryEntry $strUsersOU
    # Use the DirectorySearcher class.
    $Searcher = New-Object System.DirectoryServices.DirectorySearcher
    $Searcher.SearchRoot = $UsersOU
    $Searcher.PageSize = 200
    $Searcher.SearchScope = "subtree"
    $Searcher.PropertiesToLoad.Add("distinguishedName") > $Null
    $Searcher.PropertiesToLoad.Add("memberOf") > $Null
    # Filter on all users in the base.
    $Searcher.Filter = "(&(objectCategory=person)(objectClass=user))"
    $Results = $Searcher.FindAll()
    # Enumerate users.
    "Users that are members of more than one specified group:"
    ForEach ($User In $Results)
        $UserDN = $User.properties.Item("distinguishedName")
        $Groups = $User.properties.Item("memberOf")
        # Consider users that are members of at least 2 groups.
        If ($Groups.Count -gt 1)
            # Count number of group memberships.
            $Count = 0
            ForEach ($Group In $Groups)
                # Check if group Common Name starts with the string "xyz".
                If ($Group.StartsWith("cn=xyz"))
                    # Make sure group is in specified OU.
                    If ($Group.Contains(",ou=AppsGroup,"))
                        $Count = $Count +1
                        If ($Count -gt 1)
                            # Output users that are members of more than one specified group.
                            $DN
                            # Break out of the ForEach loop.
                            Break
    Richard Mueller - MVP Directory Services

  • Report to find user ids which are expiring ...

    Hi all,
    We need to have a report which will give a list of people whose SAP ID passwords are expiring so that they can change their passwords.
    Is there any standard report to get this list ?
    If we need to have a custom report where can we get the data from ?
    Regards,
    Vivek K

    Hi,
    Use program RSUSR200. Select only 'Users with inactive passwords' checkbox.
    Just check [this also....|http://help.sap.com/saphelp_nw04/helpdata/en/1e/478f40f3b19920e10000000a1550b0/frameset.htm]
    Thanks

  • Where did i find users that are marked for deletion ?

    Hi,
    Experts,
    As i want to check that the users present in table USR02 are marked for deletion or not? can u please suggest me soon on this.
    Thank u in advance,
    Shabeer Ahmed

    Deleted users list in SRM server

  • How to find user that reset encashment date for a check

    How can I determine what user reset (removed) the encashment date (field BANCD in table PAYR) on a check?

    Hi Will,
    You can only do that if the change document flag is set on the the payr-bancd data element.  Go to SE11 to see this.  Most places don't have that flag set, so you chances are you won't be able to see who changed it.
    Thanks,
    Tammy

  • Where I can see all document of pay and the user that modified

    Hello people
    Where I can generate a report with all user that modified a document of pay.
    I have a problem, in the finance area, they request a reports with all users that modified some document of  pay.
    In the FB04 transaccion  I see the document of pay and user that modified, but is one for one, in my company are generated thousand documents pay for day.
    I see that the transacction FB04 gets the information of the tables "BSEG", but in this table I do not have the field "User"  and with this I will can link the document of pay more the user and date
    Example
    Number of document              User                              Date
    30004567                                Pvaldez                        05.01.2010
    30008756                                Rpower                         07.08.2011
    30008890                                Mramos                        15.11.2012

    Hi Naveen.
    I reviewed the two notes, but  this not help me with my problem.
    I think that in the system when a user modify a document pay this is saved a register in some table.
    In the table BSEG I find that there a part, but this have link with other table for complete the report, I do not know what other table complemented this information.
    I require a report with all document of pay more the user that modified and the date
    How  I can generated this report ? 
    atte.
    Gerardo Ceballos

  • Find users with Role A and Role B but not Role C

    Hi all.
    How can I find users that have a combination of roles? The find user and user reports only have one line for selecting a role the user has. Is there a report that lets you select multiple roles? It would be really handy!
    Thanks,
    Jim

    If you haven't found it, there are likely no such reports, but it is easy to do that in a custom report. The problem is that its really badly documented how to make a custom report. But, it's really not that difficult if you know what to do. I will, when I get some spare time, post a guide here on how to make a custom report, the way I, and some other people, think it should be done.
    Roughly a custom report consists of three parts, a listing object, to make the report turn up in the report list, a report form, and the report WF. The trick is to know the correct subtypes, attributes and such.
    But take a look here Sunday, and there will possibly be a nice custom report guide posted.

  • Only get Users that match all Links

    Seemingly a very simple problem, but I can't seem to figure it out.
    Table below is a table that holds UserId' s and LinkId's.
    CREATE TABLE UserLink (UserId NUMBER, LinkId NUMBER );
    ALTER TABLE UserLink ADD PRIMARY KEY (UserId, LinkId);
    INSERT INTO UserLink VALUES (1, 1);
    INSERT INTO UserLink VALUES (1, 2);
    INSERT INTO UserLink VALUES (3, 1);
    INSERT INTO UserLink VALUES (4, 1);
    I'm looking for a query in which I can plug a List of LinkId's that outputs only users that have a relationship with ALL LinkId's provided.
    In this example you may assume that the List is equal to (1, 2), but you can't make any assumptions about the size of the list, other than size != 0.
    The query to find users that match ANY of the provided LinkId's is quite simple:
    SELECT UserId FROM UserLink
    WHERE LinkId IN (1,2)
    The correct query should output:
    USERID
    1
    And it should work for any size > 0 list of values.

    Here's one way:
    with ID_LIST as (select 1 LINKID from DUAL union all select 2 from DUAL)
    select distinct USERID from USERLINK a
    where not exists (
                      select LINKID from ID_LIST
                      minus
                      select B.LINKID
                        from USERLINK B
                       where B.USERID=a.USERID                  
    In 11g here is a different way using UNPIVOT to build the list of Link IDs.  This may be less cumbersome than a long UNION ALL list.
    with ID_LIST as (select  1 a,2 b from DUAL)
    select distinct USERID from USERLINK a
    where not exists (
                      select LINKID from ID_LIST UNPIVOT (LINKID for COL in(a,b))
                      minus
                      select B.LINKID
                        from USERLINK B
                       where B.USERID=a.USERID                  

  • Changing Admin user that was created at time of install of OSX to Standard

    I have a Mac with an admin account the one that was created at the time of installing OSX 10.4 and I am trying to change that user to a standard user. I have made another admin and have also another standard user. I evry time I tray to change the admin user and turn off admin rights the box is grayed out.
    What is up with the first user that is created at the time of installing the OS? Is that a user that cannot be changed? How can I change its privileges to standard user?

    I have tested this on a few different Macs. I have found some that I can get the admin right away form the fist Admin the one created at the time of installing the OS. Others I am still puzzled to way I cannot change the fist account to a Standard. In all cases I have 3 accounts 2 admins and one standard. The times that I could change the account I was logged in the standard account.
    Is there a work around to get an admin account to have the same permeations as a standard account when the admin box in users is grayed out?

Maybe you are looking for

  • How do I get to settings with a non-functioning home button - iPod touch5

    My daughter dropped her iPod touch (gen. 5) and now the home button is not responsive.  It will not 'click'.  It is not stuck, it seems to have lost a piece under the home button and now is very loose and constantly down.  I am trying to use the 'hom

  • Problem about Mac Os X 10.6.3 V.S Labview 2009

    hi,labview~ i have some problem about Labview 2009.i saw the website of NI wrote the Labview 2009 is not support for Mac OSX 10.6.3,but i have already installed it (English system) in my computer successfully. anyway,i cant open the programs which ar

  • Asm disk status

    hi all, the present status is SQL> select GROUP_NUMBER,DISK_NUMBER,MOUNT_STATUS,HEADER_STATUS,MODE_STATUS,STATE,NAME,FAILGROUP,PATH from v$asm_disk; 0     0     CLOSED     MEMBER          NORMAL          /DEV/ORACLEASM/DISKS/vol4 1     0     CACHED  

  • Bit shifting tricks and speeding up data structure

    I'm pretty new to working directly with bits, but it is a lot of fun. I'm converting a javascript data structure to Flash. So I'm thinking that Math.floor(uint/32) is the same as uint >> 5, right? And that uint % 32 is the same as uint & 31 ? Evident

  • How do I make a backup of my TC using a second external Hard drive?

    Its only a matter of time when my TC crashes (not IF, but when). What I would like to do is attach an external hard drive to the TC and then perhaps weekly copy the TC to that hard drive so WHEN my TC crashes, I have a backup that can be restored on