Exclude object functionality in RAR

Hi All
While using the Exclude objects functionality in RAR.....is there any further configuration setting need to be checked/changed....coz while doing ROLE LEVEL analysis in RAR, it is still analysing the Role which is already excluded...
Thanks
Abhijeet

Hi Abhijeet,
Did you make the RAR configuration correctly?
Please Goto -> RAR-> Configuration -> Default Values
Here you will get,
Exclude Locked Users
Exclude Expired Users
Exclude Mitigated Risks
You can make these configuration to YES so that these will be excluded at the time of Risk analysis.
Please let me know if it is satisfies your question
Thanks,
Sudip.

Similar Messages

  • Exclude objects list in RAR

    When I exclude roles before scheduling background jobs the roles are excuded from Role analysis as expected but I want to know are those roles excluded from user analysis also when I run the batch user analysis job?
    Thank you,
    Partha

    The excluded roles in exclude objects aren't getting excluded from the user analysis.
    So I'm going to try the other option i.e defining those roles as critical roles and configuration is set to exclude critical roles.
    Now on running the full user analysis, I'll check if it excludes the roles from user analysis.
    Let me know if this is how it works.
    Thank you,
    Partha

  • Alv grid control toolbar exclude generic functions

    Hi,
    I'm attempting to exclude certain functions from the toolbar of an (editable) alv grid (of class cl_gui_alv_grid).
    The problem is that the  buttons still show on the toolbar.
    My program is based on the SAP example program 'BCALV_EDIT_03'. It would seem that even this example doesn't work as expected.
    This is an extract of my code:
    -[EXTRACT <b></b>BEGIN]--
    *---Restrict generic functions to 'change only'.
    *   (i.e The user should not be able to add new lines).
      DATA ls_exclude TYPE ui_func.
      DATA: lt_exclude TYPE ui_functions.
      ls_exclude = cl_gui_alv_grid=>mc_fc_loc_delete_row.
      APPEND ls_exclude TO lt_exclude.
      ls_exclude = cl_gui_alv_grid=>mc_fc_loc_append_row.
      APPEND ls_exclude TO lt_exclude.
      ls_exclude = cl_gui_alv_grid=>mc_fc_loc_insert_row.
      APPEND ls_exclude TO lt_exclude.
    *...initialize alv grid
        CALL METHOD g_grid->set_table_for_first_display
          EXPORTING
            is_layout            = ps_layout
            it_toolbar_excluding = lt_exclude
          CHANGING
            it_fieldcatalog      = pt_fieldcat
            it_outtab            = pt_outtab.
    -[EX<b></b>TRACT END]--
    Thank You In Advance,
    Nhlanhla

    Hi,
    i've done similar one, i am able to exclude.
    DATA: LT_EXCLUDE TYPE UI_FUNCTIONS.
    PERFORM EXCLUDE_TB_FUNCTIONS CHANGING LT_EXCLUDE.
    FORM EXCLUDE_TB_FUNCTIONS CHANGING PT_EXCLUDE TYPE UI_FUNCTIONS.
    * Only allow to change data not to create new entries (exclude
    * generic functions).
      DATA LS_EXCLUDE TYPE UI_FUNC.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_COPY_ROW.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_DELETE_ROW.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_APPEND_ROW.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_INSERT_ROW.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_MOVE_ROW.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_COPY.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_CUT.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_PASTE.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_PASTE_NEW_ROW.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
      LS_EXCLUDE = CL_GUI_ALV_GRID=>MC_FC_LOC_UNDO.
      APPEND LS_EXCLUDE TO PT_EXCLUDE.
    ENDFORM.                               " EXCLUDE_TB_FUNCTIONS
    "can you check the LT_EXCLUDE in debug mode.
    regards
    vijay

  • Service For Objects functionality (SDV transaction)

    Hello experts,
    Some users are getting an authorization error while trying to display an image from t-code FBL1N (services for objects). After identifying the reason of this issue with NSU53, the simple fix is to provide access to the user to transaction SDV. Actually, we are proposing to the security team to provide the access in a Generic role, so all user can get the access.
    Their concern is that if for any reason, any of the users runs the t-code directly (SDV), and not through the Services for Objects funtionality, they might be able to access other documents that they should not be allowed. To be honest, I haven't seen this as an issue before in my 13 years working with SAP.
    The question for you guys is: what is the best approach to grant access to users from different modules to Services for Objects functionality without violating security policies?
    Thanks,
    Alfredo

    own

  • Error in ME51N -  Account object functional area differs from asset master

    We are in the middle of going thru an upgrade -
    Funds & Functional Area were display fields in the old system but it was recetly changed to required fields in the Asset Master Record (AS01). Now when I try to create a Purchase Requisition for procuring the asset, I get this error - We are in the middle of going thru an upgrade -
    Funds & Functional Area were display fields in the old system but it was recetly changed to required fields in the Asset Master Record (AS01). Now when I try to create a Purchase Requisition for procuring the asset, I get this error - Account object functional area differs from that in asset master record. Any suggestions?. Any suggestions?

    The functional area what is comming is not the same in Asset accounting as you get from ME51N.
    What functional area you get from ME51N and what is the asset.
    Is the functinal area in the cost center not the same as you filled in the asset?

  • Error in ME51N - Account object functional area differs in asset master

    We are in the middle of going thru an upgrade -
    Funds & Functional Area were display fields in the old system but it was recetly changed to required fields in the Asset Master Record (AS01). Now when I try to create a Purchase Requisition for procuring the asset, I get this error - Account object functional area differs from that in asset master record. Any suggestions?

    hi
    please check the Asset Master for functional area.

  • How to configure objective function for use in minimizati​on?

    Hi all,
    I have been working on a minimization problem (for details, see this post).  I have figured out how to run an unconstrained minimization, but can't quite figure out why my objective function wire remains broken.  Here is a screen shot:
    Any ideas?
    I include below this example main VI, a subroutine that does the minimization, and a subroutine that gets called during the minimization.  As it seems I am limited to 3 attachments, I will add some sample data to the first reply that I will generate.
    Many thanks,
    RipRock
    Solved!
    Go to Solution.
    Attachments:
    ExampleCode2.vi ‏15 KB
    Function2Min.vi ‏11 KB
    DashPotCorr1a.vi ‏72 KB

    Basically all I did wrong was I created my own function to minimize from scratch.  The help very clearly says to copy the template and use that.  Here is the function copied into the LV provided template.  
    All the best,
    RipRock
    Attachments:
    Function2Min.vit ‏36 KB

  • Want to replicate services for object functionality in my z- program

    Hi
    I can see the "Services for object functionality" in IW32 transaction. I want to replicate the same functionality for my custom program.
    Please let me know if I can get any pointers for this.
    Regards
    Swetabh

    Hi,
    check out the program of the iw32 tcode.
    then in debugging mode find the code where exactly the requirement is going on with the code of the program.
    then copy that code in your custom program and do the needful changes.
    Regards,
    Venkat n

  • Replicate "Services for object" functionality in Z Program

    Hello All,
    I want to replicate "Services for object" functionality as in ME23N in my Z Program. How do I achieve it.
    Thanking you all in anticipation.
    Regards,
    Anju

    Read this wiki [How to Attach Documents to Any Custom Program Using Generic Object Services|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/0e6b0d95-0a01-0010-4696-ca0a48de5fb3]
    Regards,
    Raymond

  • Replicate services for object functionality in my customised  program

    Hi
    I can see the "Services for object "functionality in ME23N transaction. I want to replicate the same functionality for my custom program.Is there any badi or Function Module .
    Please let me know if I can get any pointers for this.
    Regards
    Deesanth

    hi desanth,
    i am in need of same requirement.
    if you any solution please let me know...........
    thanks,
    krishna

  • GRC10 Exclude Objects (Roles) - Batch Risk Analysis Job

    All -
    We are setting up some non-production GRC 10.1 systems at this time and are trying to exclude project roles from our dashboards via the "Maintain Exclude Objects for Batch Risk Analysis" table [SPRO --> GRC --> AC --> ARA --> Batch Risk Analysis].
    The problem that we are encountering is that this Batch Risk Analysis is taking an extremely long time to run on our Project Users even though we have excluded the project roles that these users are assigned.
    For example, User A has 3 project roles which hit a very large number of SoD violations in our rule set, however in the exclusion list we have defined the three roles the user is assigned to be in the exclusion table for All systems and for the specific system that the job is running against. With no luck. The job still takes an average of 30 minutes to run on each user even though the roles they are assigned are excluded.
    We have tested that the exclusion table works because we can exclude the users by adding them to this table and we can also exclude the groups that they are in and this also works. However we have instances where there are other users in this groups that have other roles in addition to these excluded roles that need to be checked.
    Does anyone have any recommendations for how to excluded roles so that the job quickly checks the users with these roles? It is my understanding that if the roles are in the exclusion list they should be skipped by the Batch Risk Analysis job which is running to check these users for the dashboards.
    Thanks,
    Darnell

    Hi,
    Was a solution found for this error?
    Thanks,
    Glen

  • Subvi waiting to run (objective function)

    Dear Users,
    I have an optimization process using unconstrained nonlinear optimization and an objective function. The only place I use that objective function is in a subVI (let's call it Optimise.vi), where I supply that to the optimization subVI (which is LabVIEW native). After running my whole program, the Optimise.vi stops and is in the idle state. But the objective function and all of its subVIs are in a running state, and their run-arrows display "SubVI waiting to run" or "Run" (always with an arrow inside an arrow). I could check on the state of the two VIs using a VI by Marche at http://forums.ni.com/t5/LabVIEW/SubVI-Waiting-to-Run/td-p/49432.
    The execution of the Optimise.vi and the objective function is set to "shared clone". If I set the execution of the Optimise.vi to "non-reentrant", then the objective function also ends in the idle state. But my program runs longer, and I would like to avoid that.
    Is this behavior bad? Should I care about it?
    Cheers,

    Dear ghighuphu,
    I really like to help you with your issue but some more informations are necessary.
    I assume you use this optimization function:
    Constrained Nonlinear Optimization VI
    http://zone.ni.com/reference/en-XX/help/371361H-01/gmath/constrained_nonlinear_optimization/
    Did you create the objective function from the template located here: labview\vi.lib\gmath\NumericalOptimization\cno_objective function template.vit ?
    In the template the execution settings should be right.
    For further troubleshooting a screenshot would be nice. Feel free to come back to me.
    Kind Regards,
    Vanessa
    AE Munich

  • Excluded objects

    I was analyzing memory leaks in my application using DevPartner, i get to see columns called "Profiled Objects", and "Excluded Objects". What are these excluded objects?

    I was analyzing memory leaks in my application using
    DevPartner, i get to see columns called "Profiled
    Objects", and "Excluded Objects". What are these
    excluded objects?Sounds like some setting of your special tool that I don't know. Objects that are excluded from something: profiling or whatever. There is no such term in Java.
    Neither do memory leaks exist in Java. All you can encounter is allocation of memory that's never released.

  • Connection Objects / Functional Location Number ranges Issue

    Hi ALL
    Number range object: ISU_EHAU is related to Connection Object / Functional Location  creation.
    But my client wants to create Connection Object number and functional Location  number with different number range series number.
    Can any one guide me how to proceed?
    Thanks In Advance
    KK

    Hi,
    As Connection Object & Device Location are functional locations so you have to be sure to map it to the same structure as defined in PM.
    The structure can be defined in PM through this path:
    Plant Maintenance and Customer Service -> Master Data in Plant Maintenance and Customer Service -> Technical Objects -> Functional Locations -> Create Structure Indicator for Reference Locations/Functional Locations                                                                                                    
    Here you can define your own edit mask for your structure for the functional location.
    according to the error message you got the Edit mask defined in your system must be XXXX-XXX-AA-NN.(kindly Check).
    X means you can enter both number and letters.
    A means only letters can be entered.
    N means only numbers can be entered.
    So try something like 1ABC-1A-QW-77(again check with the old number range that was defined)
    You can change the edit mask to 'XXXXXXX......XXXXXXXX'.(full field filled with X).
    and then I guess you can use the number range you have defined(as you wrote above) in the Connection Object number range(Object : ISU_EHAU)
    Kindly revert back for any clarifications.
    Regards,
    Rakesh..
    Edited by: Rakesh Dasgupta on Feb 12, 2011 2:41 PM

  • Object function(){} has no method 'isElementatached toDocumentBody'

    Hi,
    obiapps 7963
    obiee 11115
    server linux and client windows7
    i had configured ebs with obiee
    when i open dashboard it shows 1st page data(tables and graphs) when i select 2nd page(tab) there is no change only first page displays
    and when i select prompt it displays below error
    Object function(){} has no method 'isElementatached toDocumentBody' on popup window
    any suggestion plzz

    I was contacted by Adobe regarding my error and I was informed that I was running two differen versions of jQuery at the same time which is a no, no. jQuery does not like to have multiple versions loaded at the same time, but if you needed to you could always run one after another, but it would take longer for the page to load. In my case I changed the embeded code in my lightbox under the "Join Our Mailing List". The embeded code uses jQuery version 1.4.4 while the jQuery version that Muse uses is version 1.8.3. To resolve this problem I simply change the 1.4.4 to being 1.8.3. While jQuery is not always backwards compatible, I was lucky on this item as it appears to be backwards compatiable.
    I would also like to note that I had originally placed my CSS for this code inline with the coding, but I then removed it and placed it in the head as this helped with some of the problems as well. It is always better to create seperate CSS and .js files and then have your code reference these files. I will work on this in the coming days.
    -John

Maybe you are looking for

  • Cant open nef raw file in photoshop elements 9?

    i have photoshop elemets 9 i have a nikon d5200 and i have problems opening nef raw file. this is the message i get. i have tried all updating procedures.useless.i am upto date.i opened file as a raw nef file and i get this message: could not complet

  • How to disable the 30 seconds of CDROM installer when connecting via USB?

    A few days ago my wife and I acquired two Samsung Galaxy S3 phones as our first smart phones.  When I connect either phone to any of the three different Windows 7 computers I have tried, the phone mounts as a virtual CDROM containing a Verizon softwa

  • Shared Calendar and Permissions

    Hello, I have a shared calendar that we use in my organization and only 1 person has publishing editor rights while the rest of the company has reviewer rights. The problem is that if a reviewer opens a time block, instead of restricting the ability

  • IMessage text reply fails back to email

         I have a user who regularly emails from outlook to a [email protected]   or att.net for specific people who get it sent as a text to their iPhone.  The # that displays as who the text is sent from is always a random Verizion auto-generated #.  U

  • Captivate | How to link a pdf file

    Hello, I have a PDF icon (image), i have put a clickable, now clicking on it i need a PDF to open. How can I do it. Regards Chandru