"SUIM User Users by Complex Selection Criteria by Role" question

Hi all,
Suppose the situation is:
Composite role ZCR contains single role ZSR (profile T-001) . Composite role ZCR assigned to below two users with different expire date (both users are not locked and not expire):
UserA - 01.01.2013
UserB - 01.01.2024
(Case 1) SUIM -> User -> Users by Complex Selection Criteria -> by Role (either specify ZCR or ZSR) the result is:
UserA
UserB
(Case 2) SUIM -> User -> Users by Complex Selection Criteria -> by Profiles (T-001) the result is:
UserB
Is SUIM has error or other assumption on Case 1?   I expected the result is UserB only.
I knew there is program PRGN_COMPRESS_TIMES to remove assignment which have already expire and all the related tables.  Please let me know if the result in case 1 is SAP standard or can be fixed by OSS notes?  Thanks.
Regards,
Donald

Hi Donald,
If the user having validity expired role in his user master SU01, then the expired role can be seen under 'Role' tab in SU01 with 'Valid to' date, but the role relevant profile will be removed from user at the time of role expiration date.
So when you search for users based roles (Case 1), the SUIM lists all users who are assigned to that particular role, irrespective of expired role assignments. So in Case 1, please follow below step for accurate results.
1.  (Case 1) SUIM -> User -> Users by Complex Selection Criteria -> by Role (either specify ZCR or ZSR) the result is:
UserA
UserB
2. Then select all users in SUIM output (UserA & UserB), and click on 'In Accordance with Selection' button. So that you can see the users and the (ZCR) ZSR role 'Valid to' (End Date) date for each user.
By doing second step here, you will get the accurate results. This is how the SUIM works.
Thanks
Sridhar
>point begging removed by Moderator - last warning!<

Similar Messages

  • Display user using complex selection criteria

    How to display user using complex selection criteria, I want to display user list with company code assigned to them?

    In t.code SUIM
    Select Users by complex selection criteria in that selection of values in authorization object give F_BKPF_BUK enter and then specify the company code & execute.
    It will give list of roles having company code. Highlight each role and click on user assignment.
    hope this helps

  • Display user by complex selection criteria

    How can I display list of users with company code assigned to them?

    If your focus is on HR authroizations one of the ways :
    SE16 - table name AGR_USERS
    The technical name will provide the assignment coming from organizational management.
    Take just those roles :
    use SE16 -  AGR_1251
    Which will give you an output export to excel filter on P_origin.
    If you are not using Organizational management:
    Then use SE16 - AGR_1251 find roles having P-origin
    get the role list and use AGR_USERS to find role to user relationship.

  • Portal Activity Report with Selection criteria

    Hi All,
    I have created an iview using 'Portal Activity Report' template, added the iview to page and page is added to the role which is created for this report. Also, users were assigned to the new role. When users go to portal and see this report, they are seeing the final output of this report along with the 'Download Report' option.
    My requirement is to give selection screen option (Type of report and Reporting period) to users. So that users will change the selection criteria and run the report as per their need. Please advice me on how to do this.
    Thanks in advance.
    Swapna.

    swapna,
    you can do this by creating a webdynpro application for accessing the database tables, the list of data base tables is in this [help |http://help.sap.com/saphelp_nw04/helpdata/en/48/6aa9429b930b31e10000000a1550b0/frameset.htm]document and use web dynpro application to connect to that tables. Check this thread  for[ dynpro and database tables  |dynpro and database tables;
    regards
    Mahesh

  • Display/Print the Selection criteria entered by USER on the ALV Report o/p?

    Hi Experts,
    I hv a requirement of to print/display the Selection criteria entered by user in the selection screen.........on the top portion of the ALV report output lay out.
    There is a FM for this purpose, but, I forgot its name!!
    So, let me know the FM or FMs, so that, will choose, which is best one,
    or the piece of code, which covers all select-option entries..........appreciated.
    thanq
    Edited by: SAP ABAPer on Sep 3, 2008 6:35 PM

    Use the Function RS_REFRESH_FROM_SELECTOPTIONS get the selection details, now format the data accordingly in the TOP_OF_PAGE using the calss CL_DD_DOCUMENT.
    Check the below mention code.
    REPORT  ztest_page.
    TABLES: sflight.
    DATA : it_flight TYPE TABLE OF sflight WITH HEADER LINE.
    DATA BEGIN OF it_sel_opt OCCURS 0.
            INCLUDE STRUCTURE rsparams.
    DATA END   OF it_sel_opt.
    SELECT-OPTIONS: s_carrid FOR sflight-carrid.
    START-OF-SELECTION.
      SELECT * FROM sflight INTO TABLE it_flight
       WHERE carrid IN s_carrid.
    END-OF-SELECTION.
      CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'
        EXPORTING
          curr_report     = sy-repid
        TABLES
          selection_table = it_sel_opt
        EXCEPTIONS
          not_found       = 01
          no_report       = 02.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program          = sy-repid
          i_callback_html_top_of_page = 'TOP_OF_PAGE'
          i_structure_name            = 'SFLIGHT'
        TABLES
          t_outtab                    = it_flight
        EXCEPTIONS
          program_error               = 1
          OTHERS                      = 2.
    *&      Form  top_of_page
    *       text
    *      -->DOCUMENT   text
    FORM top_of_page USING document TYPE REF TO cl_dd_document.
      DATA : dl_text(255) TYPE c.  "Text
    * Add new-line
      CALL METHOD document->new_line.
      CALL METHOD document->new_line.
      CLEAR : dl_text.
    * program ID
      dl_text = 'Program Name :'.
      CALL METHOD document->add_gap.
      CALL METHOD document->add_text
        EXPORTING
          text         = dl_text
          sap_emphasis = cl_dd_area=>heading
          sap_color    = cl_dd_area=>list_heading_int.
      CLEAR dl_text.
      dl_text = sy-repid.
      CALL METHOD document->add_text
        EXPORTING
          text         = dl_text
          sap_emphasis = cl_dd_area=>heading
          sap_color    = cl_dd_area=>list_negative_inv.
    * Add new-line
      CALL METHOD document->new_line.
      CLEAR : dl_text.
      dl_text = 'Selection Criteria'.
      CALL METHOD document->add_gap
        EXPORTING
          width = 34.
      CALL METHOD document->add_text
        EXPORTING
          text         = dl_text
          sap_emphasis = cl_dd_area=>heading
          sap_color    = cl_dd_area=>list_negative_inv.
    * Add new-line
      CALL METHOD document->new_line.
      CLEAR : dl_text.
      CONCATENATE 'SELECT Option' 'SIGN' 'OPTION' 'LOW' 'HIGH'
      INTO dl_text SEPARATED BY cl_abap_char_utilities=>horizontal_tab.
      CALL METHOD document->add_gap
        EXPORTING
          width = 34.
      CALL METHOD document->add_text
        EXPORTING
          text         = dl_text
          sap_emphasis = cl_dd_area=>heading
          sap_color    = cl_dd_area=>list_negative_inv.
    * Add new-line
      CALL METHOD document->new_line.
      LOOP AT it_sel_opt.
        CLEAR : dl_text.
        CONCATENATE it_sel_opt-selname  it_sel_opt-sign
         it_sel_opt-option it_sel_opt-low it_sel_opt-high
        INTO dl_text SEPARATED BY cl_abap_char_utilities=>horizontal_tab.
        CALL METHOD document->add_gap
          EXPORTING
            width = 34.
        CALL METHOD document->add_text
          EXPORTING
            text         = dl_text
            sap_emphasis = cl_dd_area=>heading
            sap_color    = cl_dd_area=>list_negative_inv.
    * Add new-line
        CALL METHOD document->new_line.
      ENDLOOP.
    ENDFORM.                    "top_of_page

  • Key and Text in selection criteria depending on user

    Hello,
    I have strange situation and I have no idea how to fix this issue. I built the report in BEx and present it to the users. When they expand the selection criteria options (from first pop-up window of variables), they want to see both texts and keys. All of them set up the option "Key and Text" from settings, but some of them see descriptions, some of them see only keys given twice (what happens when there are no descriptions for masterdata). It is a big surprise for me and I am not able to fix it. Do you have any idea?
    Best Regards,
    Arelis

    Hello,
    I use BEx Analyzer. The patch level is the same.
    Masterdata texts are maintained of course. It it wouldn't - noone would see the texts.
    Arelis

  • Including User selection criteria along with LDB standard selection screen

    Hi
    While creating a HR report, along with the standard selection screen, if the cusomer requires some more fields to be added, How to retrive the data from the DB?
    Is it the way to retrive the data based on Standard selection criteria from the LDB and then filter it based on user criteria or any other way?
    Please help me out in this regard.
    Thank you.

    Yes thats the way. You get the data based on Selection screen of LDB (You can select Report Catogory you wish to) once you get data, You can put CHECK statement to see the data against PXXXX type to the filter value from you custom field on selection screen.

  • Find selection criteria used by a user

    Hi,
    One of our business users gets a time out error when she executes a Z t-code (dialog mode). Is there a way that I can find out the selection criteria enabled by her while using this t-code. I did dig around ST04 but could'nt nail it. Thanks for your time.
    Regards,
    Aj

    Do you know it before or after the timout dump?
    if you know she will use it:
    trace the user via ST12, should be part of the SQL
    st12 -> user, start trace
    if it's after, then you have to look in the dump..
    ST22
    look for here ID
    Most of the time you will see the select statement where it failed. if you ctrl f the parameters, you should find it back in the varialbe sections

  • Selection Criteria- Users

    Under Administration --> Application Approval --> Selection Criteria, I am having an issue adding domain users to the Users tab for software requests. After adding Domain users to the list, any end user requesting software does not fall under
    my customized criteria and reverts to the out of the box which doesn't apply the template or the correct approvers. 
    If I add someone's name to the users list individually it works without issue however managing who is in this group will become a nightmare with 4,000 users. Am I missing something?
    thank you

    Long time since I used AAW, but isn't there an option to add groups (instead of users) and this group could then be a dynamic group with some criterias in it..

  • User of Checkbox/ Radio Selections.doc

    User of Checkbox/ Radio Selections.doc
    Thank you, this is very informative and helpful. In the doc you mentioned about a cfm file, however I was not able to see the file. Will you be able to explain a bit about it?

    Hi,
    here
    you´ll find an explanation, working example and the related
    javascript code

  • How to get number of records in all user tables in one select

    Please advise how to retrieve the number of records in all user tables in one select. I would likt to extract the data to excel file.
    Many thanks,
    Andrew

    You could always analyze the tables:
    declare
    begin
      for X in (select owner, table_name from all_tables
                 minus
                select owner, table_name from all_external_tables) LOOP
          dbms_stats.Gather_Table_Stats(X.Owner, X.Table_Name) ;
      end loop;
    end;
    /Then: Select Owner, Table_Name, Num_Rows from All_Tables ;

  • How to know which user created a given Selection ID in Planning Book

    Dear Expert
    Do you know if there is a way to trace who created a given selection ID in DP or SNP planning books?
    Thanks!

    Hi,
    You will get details of of the user who created the selection IDs   and date /time  details  from the database table   /SAPAPO/TS_SELKO   (Header Selection Variants) .
    You may create a simple query for this or an elaborate ABAP report.
    Regards
    Datta

  • Assigning View permission to all the users that have been selected in contact selector - SP 2010, InfoPath 2010

    I have a SharePoint InfoPath 2010 browser form with item level security. Only submitter
    and approvers has access to the form.  This form contains a people picker that is populated with the names of attendees
    for the meeting they attended (which
    I am able to store in Field2 below). I want to allow attendees to be able to view (grant view permission) the InfoPath form. Field 2 has the users in form of domain\user1;domain\user2; etc. Following the below step, I am getting error when I ADD or REPLACE
    permission on current item. How do I go about assigning view permission to all the users that have been selected in contact selector?
    Jitu

    Hi ,
    i understand that the text box and the people picker hold multiple user names and you want to grant user permission based on the user in the text box.
    I have a test based on your description,the results are: When there are multiple users in the text box, the workflow will throw an error'Error Occurred'.It is the same with the people picker column.
    You need to limit the peopel picker to only allow to select one user,in this way the text box will only hold one user.Then you can use the people picker or the text box to grant user permission.
    Thanks,
    Entan Ming
    Entan Ming
    TechNet Community Support

  • Complex Data Selection Criteria

    Is it possible to do complex Data Selection Criteria invloving more than one InfoObject in Data Selection tab of the InfoPackage?
    Eg  :
    (Controlling area = 'ABC' and Fiscal Period between 001/2005 & 003/2005)
    OR
    (Controlling area = 'AAA' and Fiscal Period between 004/2005 & 008/2005)
    OR
    (Controlling area = 'XYZ' and Fiscal Period between 003/2005 & 008/2005)
    We are currently planning to use 3 different InfoPackages to do the same and checking if it can be done in 1 InfoPackage.
    Thanks!

    BAPI_IPAK_CHANGE is a good option, but will not give you the flexibility you are looking for as it will change the selection criteria, but will not give you the AND, OR (complex selection)option, that you are looking for. What you will end up havig to do if you follow this route is to call the same selection package 3 times with modified selection criteria for each using BAPI_IPAK_CHANGE, or have to use BAPI_IPAK_CREATE to create the infopack with these selection for every load. This will eliminate all or any delta loading hopes that you may have.
    I feel that infopackage group will work nicely for you and with minimal effort of maintenance in the future.
    Rishi
    Message was edited by: Rishi Joseph

  • Cisco Mediasense API user to view only selected recordings/extensions

    Dear Experts,
    Is it possible with Cisco MediaSense 10.5 to limit users to view only selected Phones/extensions recordings ?
    For eg: A department manager must only view their department members. They must only be able to listen to the recordings from their department members. Is this possible ?
    If yes, what is the configuration required ?
    Regards
    Bejoy Thomas

    Hi Bejoy,
    It is not possible in MediaSense natively to do this right now. You can get a Partner Add-on to enforce the demarkations. Both Calabrio and NICE offer a Search and Play add-on that can do this.
    HTH
    Manish

Maybe you are looking for

  • How can I disable "tabs' completely?

    I'm currently using Firefox version 16.0.2, I want to be able to get rid of tabs altogether. I've read there was a "tabkiller" download but it says it doesn't work on FF versions later than 3.

  • A free, simple undocking app for Thunderbolt Display (and non-thunderbolt) users...

    If you are using a Thunderbolt display and have several external drives, it can be a pain to undock all of the external drives when you want to unplug the monitor. Here is a link to an app that can undock it for you. I've tested it on Lion. If you li

  • Tax and amount total should show in the line item of confirmation screen

    Hi All, I need to add the Tax and amount total fields in the line item of confirmation screen for service cart. Could someone please tell me how and where should I add and write the neccessary logic for that. We are on version SRM 3.0. Thanks, Kumar

  • Is there a way to find out whether all of my music files have been imported to iTunes?

    Is there a way to find  out whether all of my music files on the computer have been imported to iTunes? I want to consolidate my music files to tidy it all up into one place, and then delete the originals. I don't want to delete any music until I kno

  • Easy fix I think

    This is the error I get: Exception in thread "main" java.lang.NullPointerException at ShoppingCart.AddToCart(ShoppingCart.java:9) at Shopper.main(Shopper.java:6) I have this assignment that I have to do. I think I am hung up on syntax type problems.