How can I revoke S_CTS_ADMI from some users?

Hi all,
I want to revoke the authorization object S_CTS_ADMI from some users. In our environment, this authorization object is under T-D15000451 profile.
Which transactions/steps are envolved to accomplish this?
Thanks
Fabio Neukirchen

Hi,
In the Command field enter T-Code PFCG  click on Enter
In the next screen you will be prompted with role
Enter the role name CONSULTOR_ABAP_ESPECIAL
Click on change icon button (pencil icon on the right to the role name)
In the next screen you will be displayed with multiple TABS (Descripton, Menu, Authorization, Users ....)
Click on the Authorization TAB
You will have two options
Click on
Change Authorization Data (pencil icon )
In the  next screen you will have list of Objects and Objects class... etc..
Click on Search (Binoclar icon) or (CTRL + F)
You will prompoted with pop-up window
with follwoing options
Authorization object  
or object text
Enter the Object Name (i.e S_CTS_ADMI ) in the Authorization Object field.
Click on find button.
If the techinical names are not on.
Click on  Utilities on Menu
In the drop down list you will find option of techinical names on (click on this)
You will be displayed with objects as follows
Administration Functions in the Change and Transport System   S_CTS_ADMI
Administration tasks for Chang (with some values here like EPS1, EPS2, IMP*, PROJ)  CTS_ADMFC
Double click on this you will be prompted with pop-up to change values (do the necessary chages here and save)
Once saved Generate the profile by clicking on authorization tab on menu you will have a drop down list in that list you will have option of generate click on it or (shift + F5)
Once generated click on Back button (or F3)
In the next screen do the user comparsion in the USER TAB
I hope this is clear
If you need further help or if you are struck any where let me know I will help you in that contex.
Cheers
Soma

Similar Messages

  • How can I transfer files from one user to another user?

    I have a Macbook Air with 10.9.5.
    I have two admin users.  I want to transfer all the files from User A to User B's profile so that I can get rid of User A and just use User B from now on.  So far I can access the files if I change sharing permissions but the files are not under the root User B's folder still.   Any ideas on how to do this?  I also have greyed out folders when I created User B in the root directory. 
    Root folder /UserA/  includes all the usual folder links like desktop, documents, etc,  including some created one for example "myoldphotos".   When i created UserB/ it has all the desktop, documents, etc folders (but with nothing in them since it's new) but also the myoldphotos folder, except it's greyed out and I can't do anything with it at all or open it or anything. it's just there?  

    Thank you, that worked to transfer files.  After I move it into my normal home folder, can I delete it from the Shared folder?
    Also if anyone has any ideas on the greyed out folders I would be thankful.  For example I moved the 'myoldphotos' folder from users/UserA to users/Shared then from there to users/UserB  and it worked.  HOWEVER, the greyed out mysterious folder is still there and i can't do anything about it.  It also affected my new copied folder, changing the name from myoldphotos to "myoldphotos 2"  like as if there IS a folder there with the same name already.   I can't click on the greyed out folder to open it or anything. 

  • How can I transfer music from one user's account to another on my Imac?

    I want to transfer some music from my Imac user account to another user account on the same Imac.  How can I do this?

    Here are the instructions to do that:
           http://support.apple.com/kb/HT1203?viewlocale=en_US&locale=en_US

  • How can i make changes from the user in TabBar with more button persistent?  I´m using the Storyboard.

    I have build an App with more than 5 Tabs, the user can change the order of the items, but this is not persitent.
    How can i fix this on iOS 7 and i´m using the Storyboard.

    Can I do it afterwards ?
    Yes. In addition to what Bee Jay said, here are some other tips.
    First record a pattern that's a few bars long, and don't tweak any knobs while you're doing this. Set a Cycle Range, because we want to play this pattern over and over again. Press A to make Automation visible (although there isn't any yet).
    Find the channel strip for this track, either in the Inspector or in the Mixer window. Just above the meter, look for the button that says "Off." Hold down this button and a menu will appear. Select "Touch." Press Play. As the pattern plays the first time, pick a knob in the ABL2 window, and mess with that knob. At the end of the pattern, let go of the knob, and then watch what the knob does as the pattern plays again. Then as the pattern plays some more, mess with another knob. You'll notice that curves are being drawn in the Arrange window as you mess with the knobs.
    This should help get you started.

  • How can i move settings from one user to another?

    How do I move all settings and permiions from one user to another?

    http://discussions.apple.com/thread.jspa?messageID=11320719&#11320719
    http://discussions.apple.com/thread.jspa?messageID=12317222
    http://discussions.apple.com/thread.jspa?messageID=6331229

  • How can I replicate table from a user to another user?

    I want replicate a table from a user to another user, I use DBMS_STREAMS_ADM.RENAME_SCHEMA, but it didn't work.
    who can tell this reason?
    scripts as following:
    create user strmadmin IDENTIFIED BY strmadmin;
    grant dba to strmadmin;
    BEGIN
    DBMS_STREAMS_AUTH.GRANT_ADMIN_PRIVILEGE(
    grantee => 'STRMADMIN',
    grant_privileges => TRUE);
    END;
    connect strmadmin/strmadmin
    --queue
    BEGIN
    DBMS_STREAMS_ADM.SET_UP_QUEUE(
    queue_table => 'STREAMS_QUEUE_TABLE',
    queue_name => 'STREAMS_QUEUE');
    END;
    --capture
    BEGIN
    DBMS_STREAMS_ADM.ADD_SCHEMA_RULES(
    schema_name => 'SCOTT',
    streams_type => 'CAPTURE',
    streams_name => 'S_CAPTURE',
    queue_name => 'STREAMS_QUEUE',
    include_dml => true,
    include_ddl => true,
    include_tagged_lcr => false,
    source_database => 'ORCL.REGRESS.RDBMS.DEV.US.ORACLE.COM',
    inclusion_rule => true);
    END;
    --instantiation
    DECLARE
    iscn NUMBER;
    BEGIN
    iscn := DBMS_FLASHBACK.GET_SYSTEM_CHANGE_NUMBER();
    DBMS_APPLY_ADM.SET_SCHEMA_INSTANTIATION_SCN(
    source_schema_name=>'SCOTT',
    source_database_name => 'ORCL.REGRESS.RDBMS.DEV.US.ORACLE.COM',
    instantiation_scn=>iscn);
    DBMS_APPLY_ADM.SET_TABLE_INSTANTIATION_SCN(
    source_object_name=>'SCOTT.DEPT',
    source_database_name => 'ORCL.REGRESS.RDBMS.DEV.US.ORACLE.COM',
    instantiation_scn=>iscn);
    END;
    --apply
    --transformation
    DECLARE
    s_dml VARCHAR2(30);
    s_ddl VARCHAR2(30);
    BEGIN
    DBMS_STREAMS_ADM.ADD_SCHEMA_RULES(
              schema_name => 'SCOTT',
    streams_type => 'APPLY',
    streams_name => 'S_APPLY',
    queue_name => 'STREAMS_QUEUE',
    include_dml => true,
    include_ddl => true,
    source_database => 'ORCL.REGRESS.RDBMS.DEV.US.ORACLE.COM',
    dml_rule_name => s_dml,
    ddl_rule_name => s_ddl);
    DBMS_STREAMS_ADM.RENAME_SCHEMA(
              rule_name => s_dml,
              from_schema_name => 'SCOTT',
              to_schema_name => 'TEST',
              step_number => 0,
              operation => 'ADD');     
    END;
    --start
    BEGIN
    DBMS_APPLY_ADM.SET_PARAMETER(
    apply_name => 'S_APPLY',
    parameter => 'DISABLE_ON_ERROR',
    value => 'N');
    END;
    BEGIN
    DBMS_APPLY_ADM.START_APPLY(
    apply_name => 'S_APPLY');
    END;
    BEGIN
    DBMS_CAPTURE_ADM.START_CAPTURE(
    capture_name => 'S_CAPTURE');
    END;
    /

    select * from dba_streams_rename_schemaWhat do you have there?

  • How can we import object from 1 user to another user using DATA PUMP

    hi,
    i have taken full export by EXPDP( data pump) now i want to import user objects from target user of one database to another user of different database.
    plz reply me solution
    Thanks

    Hi,
    impdp 'user/user@db' DIRECTORY=DATA_PUMP_DIR(DEFAULT) DUMPFILE=FILENAME.dmp LOGFILE=IMPORT.LOG REMAP_SCHEMA=SOURCE SCHEMA:TArget SCHEMA
    1.Before Import check whether user importing has read,write on directory.
    2.Always Try to Add logfile clause This will help.
    3.Add TABLE_EXISTS_ACTION=REPLACE if you want target schema tables to be replaced by source schema table(if both has same table)
    Regards,
    NEerav

  • How can I get info from one user account onto another?

    I have just migrated from one Mac to another Mac

    Change the user account to an admin account.  You can have multiple admin accounts on a Mac.
    Go to System Preferences>Users & Groups>Click on any account on the left, and just make it an admin.

  • How can I sort photos from two users into one

    I have two users on my Mac and I am trying to get all my photos onto my new External hard drive.  I want one user, one photo library stored on my external hard drive.  Help!

    If you have Aperture 3.3 or later and iPhoto 9.3 or later you can merge libraries with Aperture.
    Otherwise the only way to merge Libraries is with the paid ($20) version of iPhoto Library Manager

  • How to revoke everything from a user when opening a new session.

    HI,
    I am using oracle 10g Express Edition and SQL Developer.
    I have 2 user, 2 database connections in my SQL Developer.
    First user is Oracle and its database connection is called TCF.
    Second user is SMITH and its database connection is called TCF_SMITH.
    Oracle user has privileges to do anything.
    SMITH user has no privileges except for CREATE SESSION.
    What I am trying to achieve is assign a user to a role (this role will have grants to select, insert , update from tables) for the current session (this step is successful), and then revoke
    The role from that user (set it back to its default/or revoke everything from it) if opening another session, or session has been terminated (what I am trying to achieve).
    From TCF I was able to do the following:
    CREATE synonym SMITH.EMP_IOD FOR EMP_IOD;
    CREATE ROLE TCF_I;
    GRANT SELECT, INSERT, UPDATE ON EMP_IOD TO TCF_I;
    GRANT TCF_I TO SMITH;In TCF_SMITH
    SMITH has the same privileges as TCF_I.
    so, smith now can select, insert , and update from EMP_IOD table.
    If I open another TCF_SMITH session, and select * from EMP_IOD I should not be able to see any of the records.
    I am trying to make this session base only. Unfortunately when opening another session I am able to select, update and insert records in the new session.
    Is there a way to make this session based ?
    How can I revoke everything from user SMITH from TCF connection ?
    Thanks,

    Oh My Good Lord!
    Rooney,
    What are you attempting to do ?
    In programming anything can be achieved, but there are speicifc tools to solve specific problems .
    I think you are trying to use fork to paint a wall* (If painting the wall indeed is your requirement).
    The "need" as you say...
    +The need for this is to grant the user different roles each time the user logs in.
    for example I can log in 5 different time in one week with different role each time.
    Moday I could have access to X,Y,Z,
    Tuesday I could have access to X,A,B
    Wednesday I could have access to A,B,C.+
    ... is to solve WHAT PROBLEM?
    Please describe your original requirement , not what you think should be the solution/tool to satisfy the requirement.
    In your previous thread you "solved" privilege/role problem by creating SYNONYM. That does not compute at all.
    Re: database roles seems like its not working for me - your help is appreciated
    Think about it. We are here to help each other as best we can.
    Please read more* about Oracle capabilities and "tools" it provides.
    http://tahiti.oracle.com/
    Especially the Oracle Concepts Guide ...
    http://download.oracle.com/docs/cd/B14117_01/server.101/b10743.pdf
    Also, please take time to respond as "helpfully" as possible. each response from you should take you closer to the solution.
    Hopefully, your original requirement will be solved.
    vr,
    Sudhakar B.

  • How can i Copy paste from e-mail to Notebook or textbook

    How can i Copy pasta from some Content of e-mail to the notepad or textbook or word?

    hold your finger down in the body of the mail - the part you want to copy. a blue box will comeup and offer to 'select/select all' or something like that. choose the appropriate choice. If you only want part of it that bubble will have two handles that allow you to drag out the selection box.
    then hold your finger down again and another bubble will come up offering to cut/copy the words. choose copy
    then navigate to your notes app (not sure about the textbook, depends on whether or not it support it) and hold your finger down in an empty text area. you'll get another blue bubble offering to paste it. choose that and the words should appear. then save as appropriate.

  • How can i get input from user in Workflows

    Hello professionals,
    I'm new to SAP B1 Workflow, i have created some workflows and they all worked fine.
    But, I am wondering, How can i get input from user?. For example, i want to display list of options to choose between them and route the workflow based on the selected option. I don't want to use the exclusive gateway and check for some conditions, i want to get input from user.
    How can i do that?
    Thanks in advance,
    Kareem Naguib

    Hi,
    Please refer SAP help file:
    http://help.sap.com/saphelp_sbo900/helpdata/en/b8/1f9a1197214254b79bcf8f93f9fff9/content.htm?frameset=/en/44/c4c1cd7ca22…
    Thanks & Regards,
    Nagarajan

  • How can I login and retrieve my user file from the trash?

    I was trying to find out where all my HD had gone, which a did using ‘What Size’.
    I found what looked like an old backup file so I put the file in the trash.
    It turns out that the file was my user file. So now I can’t login to as the user.
    How can I login and retrieve my user file from the trash?

    The Digital Editions forum is here, in case this is what you are talking about:
    http://forums.adobe.com/community/adobe_digital_editions
    If you are not, I apologize for the misunderstanding.

  • How can I stop iTunes from trying to start in another open user account?

    When I run iTunes, it often tries to open in another open User account, causing distracting Windows warning tones.  How can I stop it from trying to automatically open in the other account?

    Close iTunes before switching profiles or disable fast user switching.
    tt2

  • I have a jailbroked iphone,and  it seems that it has some viruses how can I remove them from my iphone?

    I have a jailbroked iphone,and it seems that it has some viruses how can I remove them from my iphone?

    You have viruses because you jailbroke your phone, and now you're probably spreading them to other phones. Nice.
    Jailbroken phones are generally bricked for good. Throw it away, it's junk.

Maybe you are looking for