PFCG issue - removing transaction codes from menu and not clearing up the authorization tab

I’m using SAP ERP version ECC6 and EHP5 and also we have updated our system with the PSCD FI module.
I’m having the following issue in PFCG transaction code - I have created a new single role by copied other or from scratch and added few  transaction codes into the menu.  After that, I went in the authorization tab using the "Change Authorization Data" and I felled all the missing information until the role was green out.  I generated the role then I totally went out.  I come back to the same role that I created earlier and I did removed all the transaction codes from the menu and I did find the following:
- the Authorization tab light didn't change from green to red
- I went into the Authorization tab by "Change Authorization Data" and a part of the objects were still in.
Normally behave should be:
- when we remove one transaction code from the menu the light from Authorization tab should change from green to red.  When you empty the menu then the light color should change also, but the authorization tab should be also empty.
Could please give me some idea how to do it next?

Hi Gabriela,
Most of the times standard roles contains manually added authorization objects. When ever you are creating a new role by copying the existing standard role so by default, these objects will come in to new role.
Now, coming to your role. After removing t code from role if nothing has changed in Authorization tab means.
Here are the possible reasons.
1.  The t code which you have removed might not have any checked and maintained authorization objects, that's why your Authorization tab still in unchanged.
2. Rememeber, when ever you are adding or removing t code from menu always use expert mode for profile generation option along with "Read old status and merge with new data" Option.
This will bring the all checked and maintained data for each t code.
3. After removing the t codes from menu and if you generate the Authorization tab by using expert mode option still if you find authorization objects means, those are manually added authorization objects that's why those were not removed.
I hope this will give some clue to your issue.
Thanks,
Siva

Similar Messages

  • Remove transaction codes from multiple roles at a time

    Hello,
    how to remove transaction codes from multiple roles at at time?
    Thank you in Advance.

    Hi Vanita,
             Why do you want to remove a t-code from all the roles. Are you no longer going to use the t-code. If this is the case then you can lock the transaction code in T-code SM01 so that no one can use it. But this would effect other users as well, it should only be locked if no one should use the particular T-code.
    Another alternative is to write a program to remove the particular T-Code from the table AGR_TCODES where the relation ship between the role and t-code is stored.
    Thanks.

  • How do i remove iOS 7 from iphone and go back to the previous iOS?

    How do i remove ios 7 from my 4s and get back the previous ios?

    You cannot do so.

  • How to create Transaction code for ABAP and execution by other user

    Hi All,
    Could someone please let me know how to create transaction code in detail for ABAP program. Step by step procedure expected. I would like to know how other user can execute the report using same transaction code which I have created.
    More about authorization.
    Thanks in advance.

    Hello,
    You can create transaction code from se80 as well.In object navigator,right click on your program name and create->transaction code.You can create transaction and select if it is only a report,a report with selection-screen depending on your requirement.You can run your report directly by entering the transaction code in the command field.
    You can authorise the users who can use your transaction:
    <b>Authorisation objects</b> are used to restrict certain transactions to users.Critical data must be protected from unauthorised users.For example,the head has access to certain data.But it cannot be accessed by his subordinate.For this we need to define <b>roles</b>.
    •Create an authorization object with transaction SU21.
    An object usually consists of the ACTVT (activity) field and one other field,which specifies the data type to be protected.By ACTVT, we can decide if the data is accessible for change,display only etc.
    •Add authorization fields to the authorization object created.
    •Assign the authorization object to the transaction using SE93.
    Attach the authorization object to the role using transaction PFCG.
    If you want <b>to assign roles</b>,use transaction PFCG.Create a new role.In the AUTHORIZATIONS tab,you can get a self generated profile name and a profile text by clicking on the icon next to it.Then go to the "Change Authorization data" and choose an authorization template.Then you can choose to display/change/create an activity and after the selection,click on the red and white circle.The profile will now be created.
    In the user tab,you can give the user details who can use this role.
    <b>Also check this link:</b>
    http://www.*********************/r3_security/r3_security_tips.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/52/6716a6439b11d1896f0000e8322d00/content.htm
    <b>Very helpful guide:</b>
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a92195a9-0b01-0010-909c-f330ea4a585c
    Regards,
    Beejal
    **Reward if answer is helpful

  • WebDynpro Java: how to remove blank element from Table and Dropdown.

    Hi  Folks
    In a webdynpro application,
    I created a table and witten the below code to populate the table
         IPrivateDummyView.IFirst_TableElement First_Table_Element = null;
         First_Table_Element = wdContext.nodeFirst_Table().createFirst_TableElement();
         First_Table_Element.setF_Value("One");
         wdContext.nodeFirst_Table().addElement(First_Table_Element);
         First_Table_Element = wdContext.nodeFirst_Table().createFirst_TableElement();
         First_Table_Element.setF_Value("2");
         wdContext.nodeFirst_Table().addElement(First_Table_Element);
    As per the code, i got 2 row in the table.
    But , i have one Empty row on top of the table ,  how to get ride of this.
    i find the same problem happening with dropdown too, where i used DDBI, i populated a the content as mention, but i initial 2 row as blank and then i have my own elements ,as per my code.

    >
    > how to remove blank element from Table and Dropdown
    >
    Change selection property of related node to from 0..1 to 1..1 (mandatory)
    Re: DropdownByIndex and empty line (Thread: DropdownByIndex and empty line )
    Re: Can the empty selection be removed from element dropdownbykey(Thread: Can the empty selection be removed from element dropdownbykey )
    Edited by: Anagha Jawalekar on Nov 18, 2008 10:28 PM

  • Delete transaction codes from a role

    Hi,
    I want to delete 20 percent of the transaction codes from a role and I have to carry out this exercise for 20 to 30 roles, please let me know how to go about it.
    I know that I can go to the each role and delete each transaction by transaction but this process appears to be very tedious and time consuming, kindly let me know if there is any other alternative for this.
    Please help.
    Thanks
    Suresh

    Hello Suresh,
    First create single column internal table, for example ROLES which will hold all the ROLES for which you want to delete transaction codes. Read all the required ROLES into ROLES table.
    Now, You can create internal table, for example ITAB1 for ROLES and TRANSACTION CODES and read required roles and transactikon code from AGR_TCODES table.
    Now loop at ROLES.
      Move all the records from ITAB1 to ITAB2 where AGR_NAME = ROLES. --> as ROLES is single column table.
         DESCRIBE TABLE ITAB2 LINES <count>.
        Now find 20 % of the total <count>.
        Now use delete table with from 1 to <result after %age>
    ..... Go for next ROLE.
    endloop.
    For example:
    If total transaction cod efor particular ROLE are 10 then
    20% of 10 will be 2 transaciton codes.
    so you can delete table <table> name from 1 to 2.
    Hope this helps.
    Thanks,
    Augustin.

  • HT201209 I bought a gift card from japan and when i enter the code it says the code must be redeemed in the japanese storefront

    I bought a gift card from japan and when i enter the code it says the code must be redeemed in the japanese storefront

    If your iTunes Store account is for another country, you can't redeem a card from another country even if you are currently present in that country. You would need to either move your existing account to the Netherlands or set up a new account in the Dutch iTunes Store, either of which would require you to also have a valid Dutch mailing address. Unless you're going to be in the Netherlands for quite a while, I would suggest you just give or sell that iTunes card to someone who lives in the Netherlands.
    Regards.

  • How to remove HP ink from hands and fabrics

    How to remove HP ink from hands and fabrics
    Please note that the ink used by HP is a water based ink that will clean easily. Here’s how to remove ink stains from hands and fabric.
    NOTE: IMMEDIATELY rinse the stained area with COLD water, and then follow the appropriate instructions.
    To remove ink stains from hands:
    Wash hands with an abrasive (gritty) soap. Note: It may take several washings.
    To remove ink stains from white fabrics:
    If ink from an HP Inkjet print cartridge spills on white fabric, use chlorine bleach and cold water to remove the stain, but act quickly.
    CAUTION: Use only COLD water. Warm or hot water will "set" the color into the fabric.
    To remove ink stains from colored fabrics:
    Use sudsy ammonia—a dilute mixture of detergent and ammonia—and cold water. Act quickly and test on an inconspicuous area first.
    CAUTION: Use cold water. Warm or hot water will "set" the color into the fabric.
    WARNING: Do not mix ammonia and chlorine bleach; this creates a toxic gas!
    Although I work for HP, my post's and replies are my own opinion. I am not an official HP spokesperson.
    ****Please click the Kudos Thumbs up if you would like to say thanks****
    ****Please mark Accept As Solution if it solves your problem****

    This should be a sticky
    Although I work for HP, my post's and replies are my own opinion. I am not an official HP spokesperson.
    ****Please click the Kudos Thumbs up if you would like to say thanks****
    ****Please mark Accept As Solution if it solves your problem****

  • Copying code from Typekit and pasting in Muse.

    Can someone please, please tell me how to paste Java Script code into Muse that I have copied from TypeKit? I have never dealt with code and don't know a thing about it. The tutorials I've watched don't seem to give any detail except to say "Simply copy the code from TypeKit and easily paste it in your Muse website code place somewhere close to but under <head>".  I don't get it.
    Plus I am lost on the "Muse-TypeKit- What TypeKit shows and what I can use, thing". I bought the whole Cloud-Muse-BusinessCatalist-a-Rama because I thought it would be nice to have everything I needed right there. With great quantities of fonts included. Now I'm not sure if  "going live" allows me to use more web-fonts than I can now (just the ones that show up in "design" mode). TypeKit has some faces that I use all the time, but I can't access them.
    Maybe if I could just paste that Java Script....
    Also The new version of Muse won't download on my Mac. An error shows up when it's almost finished.
    Have a great weekend everybody!

    Hi,
    To insert the code in the head section, right click on the page and go to Page Properties -> Metadata.
    Regards,
    Abhishek Maurya

  • Hi. I lost my IPad. I left it on a plane. What can be done to locate it and / or remove my information from it  and / or disable it. Thanks

    Hi. I lost my IPad. I left it on a plane. What can be done to locate it and / or remove my information from it  and / or disable it. Thanks
    Thanks

    These links may be helpful.
    How to Track and Report Stolen iPad
    http://www.ipadastic.com/tutorials/how-to-track-and-report-stolen-ipad
    Reporting a lost or stolen Apple product
    http://support.apple.com/kb/ht2526
    Report Stolen iPad Tips and iPad Theft Prevention
    http://www.stolen-property.com/report-stolen-ipad.php
    How to Find a Stolen iPad
    http://www.ehow.com/how_7586429_stolen-ipad.html
    Oops! iForgot My New iPad On the Plane; Now What?
    http://online.wsj.com/article/SB10001424052702303459004577362194012634000.html
     Cheers, Tom

  • [svn:osmf:] 13401: PARB changes: removing nesting capabilities from MediaContainer, and introducing a separate MediaContainerGroup class ( that is not a MediaContainer) that now holds the functionality.

    Revision: 13401
    Revision: 13401
    Author:   [email protected]
    Date:     2010-01-09 07:37:48 -0800 (Sat, 09 Jan 2010)
    Log Message:
    PARB changes: removing nesting capabilities from MediaContainer, and introducing a separate MediaContainerGroup class (that is not a MediaContainer) that now holds the functionality.
    Modified Paths:
        osmf/trunk/apps/samples/framework/NestedMediaContainersSample/NestedMediaContainersSample .as
        osmf/trunk/framework/MediaFramework/.actionScriptProperties
        osmf/trunk/framework/MediaFramework/.flexLibProperties
        osmf/trunk/framework/MediaFramework/org/osmf/containers/HTMLMediaContainer.as
        osmf/trunk/framework/MediaFramework/org/osmf/containers/IMediaContainer.as
        osmf/trunk/framework/MediaFramework/org/osmf/containers/MediaContainer.as
        osmf/trunk/framework/MediaFramework/org/osmf/display/MediaPlayerSprite.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/MediaFrameworkTests.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/containers/TestMediaContainer.as
    Added Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/display/MediaContainerGroup.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/display/TestMediaContainerGroup.as

    Hi,
    these concepts are used and implemented in jGuard(www.jguard.net) which enable easy JAAS integration into j2ee webapps across application servers.
    cheers,
    Charles(jGuard team).

  • How can I define regions code from Venezuela and Ecuador ?

    Hello,
    I need to define regions code from Venezuela and Ecuador, but I don´t know how do I get this.
    Can I use letters (like Brazil: SP from São Paulo) ou numbers (like Argentina: 01 - Buenos Aires) ?
    Thanks a lot!
    Juliana

    ... but i would it to be executed from remote location.Sounds like you want to use RMI (Remote Method Invocation).
    Allows you to have a remote machine execute code.
    Start here:
    http://developer.java.sun.com/developer/onlineTraining/rmi/index.html

  • I bought a itune card from walmart and when i enter the code it say it had already redeemed

    i bought a itune card from walmart and when i enter the code it say it had already being redeemed

    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

  • Remove CSLive button from menu

    Hi!
    How to remove CSLIVE button from menu in ILLUSTRATOR cs5?
    Thx!

    Isn't that strange? You can do so with ease in PS so why on earth are the options different here?

  • HT1725 I downloaded an album from itunes and only half of the songs have downloaded. The rest of the songs keep trying to download and then come up with an error saying they cannot download at this time. I'm not sure what the issue is.

    I downloaded an album from itunes and only half of the songs have downloaded. The rest keep trying to download, but I keep getting a message that says, "Song cannot be downloaded at this time. Do you want to retry or be done." Each time I retry, the same thing happens. They will not download. I have restarted my phone and the same problem remains.

    Other people have been having similar problems with songs over a number of days.
    Depending upon what country that you are in (music can't be re-downloaded in all countries) then try deleting it from your iTunes library and redownload it via the Purchased link under Quick Links on the right-hand side of the iTunes store home page on your computer's iTunes : re-downloading.
    If you aren't in a country where you can re-download music or if it re-downloads in the same state then try the 'report a problem' link from your purchase history : log into your account on your computer's iTunes via Store > View My Account and you should then see a Purchase History section with a 'see all' link to the right of it ; click on that and you should see a list of your purchases ; find that song and use the 'Report a Problem' link.

Maybe you are looking for

  • Added email account, don't want separate inbox, etc.

    What a PITA! I just registered, spent a while typing, responded to confirmation email, spent a while more typing, and got "Access Denied" when I hit submit. Everything I had typed is gone, and I have to start all over again! I repeat - PITA! The re-t

  • Lumia 822 Completely Bug-ridden

    I bought this device for myself and my wife just under a month ago and am astonished at the number of issues. I had so mnay issues in my first two weeks that I returned my phone thinking a had a bad device. I didn't - my second handset has all the sa

  • I am going to need another 928 replaced, possibly with a different phone.

    I should be getting my fourth, yes FOURTH 928 tomorrow due to freezing issues, hardware crashes, you name it. On my current 928 I have tried hard resetting 8 times now and it will not even go past the "Welcome to you Windows Phone." screen because it

  • Argh! what's wrong with my nano?

    i recently purchased an ipod nano (after my mini died) and it's not showing up on my computer. i have read many of the posts here on nanos not showing up on windows, not showing up on itunes, not appearing on the desktop, etc., tried the solutions pr

  • Installing Problem error tn_19166

    For some reason flash players install went wrong, so i uninstalled it and went to re-install it. it came up with this error "Failed to install for troubleshooting tips, please see http://www.adobe.com/go/tn_19166 i have tried all the parts suggested