How to find the Role contains any Tcode

Dear Sir/Madam,
With SUIM I found users list having a tcode sm30. But when I tried to find out the exact Role containing that Tcode with SUIM , it is not showing any role. I have to remove this Tcode from these Users. How it can be done?
Please advice.
Thanks and Regards,
Pranab

> But when I tried to find out the exact Role containing that Tcode with SUIM , it is not showing any role.
The suim report roles "by transaction assignment" is notoriously unreliable because it only looks in the role menus. Better use the report for roles "by authorization values", fill in "S_TCODE" as object 1, hit the enter key and give SM30 as value. Now you should get a list of roles containing SM30, even if it isn't in the role menu.
I think that's less tedious than Bala's suggestion and just as accurate.
For more detailed explanations browse or search the SDN forum.
Jurjen
One other thought: Are there any profiles assigned directly to the users? That would also explain the behaviour you described.
Edited by: Jurjen Heeck on Dec 30, 2009 4:30 PM

Similar Messages

  • How to Find the Runtime for any workitem.

    Hi,
    Could you please tell how to find the runtime for any workitem.
    Thanks,
    Bhanu Gattu.

    Hi,
    I think, your query is pertaining to Workflow.
    Please explain your requirement little more.
    If you need Runtime Analysis:  Then the transaction Code: SE30 must be used.
    Thanks.
    RamaniN
    Edited by: Ramani Nagarajan on May 21, 2009 12:33 PM

  • How to find the "role" in forms 6i

    I need to find what roles does a user has from forms (roles such as "admin, reguser...etc...roles that i created"
    For example, i can find the following but i don't how to get the "roles"
    DECLARE
    UN VARCHAR2(80);
    PW VARCHAR2(80);
    CN VARCHAR2(80);
    BEGIN
    :global.UN := GET_APPLICATION_PROPERTY(USERNAME);
    :global.PW := GET_APPLICATION_PROPERTY(PASSWORD);
    :global.CN := GET_APPLICATION_PROPERTY(CONNECT_STRING);
    End;
    Thank you in advance.

    Hello,
    I made it in the following way:
    I have several roles that are granted to the user but
    are not default_roles. That means they must be enabled
    with the application.
    declare
    cursor c1 is select
    GRANTED_ROLE from user_role_privs
    where default_role = 'NO';
    rolen_name varchar2(30);
    rolen_alle varchar2(2000);
    i number := 0;
    BEGIN
    open c1;
    loop
         fetch c1 into rolen_name;
         exit when c1%NOTFOUND;
         i := i+1;
         if i = 1 then
         rolen_alle := rolen_alle || rolen_name;
         else
         rolen_alle := rolen_alle || ',' || rolen_name;
         end if;
    end loop;
    close c1;
    if i >= 1 then
    DBMS_SESSION.SET_ROLE(rolen_alle);
    end if;
    END;

  • How to find the role of a OBI user

    Hi All,
    I am using the OBI Web Services to access OBI. I have the user name with me i wanted to know whether the user is a Administrator or a Developer. Is there any way to find the role (Administrator / Developer).
    Depending on his role (Administrator / Developer) i have to provide different functionality.
    Example:
    UserName : IE_ABC
    Thanks in Advance!!!!!!!

    is it helpful?
    using narrative & get user role

  • How to find the role name for the trasaction

    Dear Gurus,
    Kindly assist me to find the role name to which a perticular transaction was assigned.
    For example:- I need to find the role name for SU01, SUIM, SE38...etc
    Thanks&Regards,
    Kalyan.

    Hi Kalyan,
                        Use SUIM T-code to analyse User Vs Roles  and Roles Vs T-Codes. Then your problem will be solved.
    Regards,
    Hari.
    PS: Points are welcome.

  • How to find the servlet container used via servlet

    I need to write code for different servlet container in a servlet. so I need to find in runtime what servlet container is used.
    Please let me know is there any possibility to get the servlet container name in servlet.
    Thanks & Regards,
    Nasrin.N

    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    public class Context extends HttpServlet {
    public void service(HttpServletRequest req,HttpServletResponse res) throws ServletException,IOException {
    PrintWriter out=res.getWriter();
    res.setContentType("text/html");
    ServletContext stx=getServletContext();
    out.println("ServletContext " + stx.getServerInfo());
    }

  • How to find the role modification done for what objects

    dear all
    role modificaton done for some objects, when execute the suim for change document for roles with option "authorization data",out put is not showing old value and new value.we are using ECC 5.0,report is showing only objects modified.how to know the old values and new values?

    Dear thanks for nice reply,
    how to read this format
    take for example for object F_BKPF_BLA which is old value and new value
    F_BKPF_BLA *** Authorization created ***
                                           Activity
                                            03, 77
                                   Authorization Group
                                            SA
    F_BKPF_BLA     *** Authorization created ***
                                           Activity
                                               77
                                     Authorization Group
                                               SA
    F_BKPF_BLA                    Activity
                                               03
    report is showing values above mentioned.

  • File upload....How to find the user entered any file or not

    Hi Team,
    I am working on with file upload UI.
    Some times without clicking on browse button, I mean without entering any file they are cliking on upload button, which is giving the exception.
    I know there is no action for UI element, Then how to resolve this?
    I just control the user, not to press the upload button without entering any file name there?
    How to resolve this?
    regards,
    Bala

    Hi,
    This code will solve ur problem.
    public void onActionUploadFile(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionUploadFile(ServerEvent)
        IWDAttributeInfo attributeInfo = wdContext.getNodeInfo().getAttribute(IPrivateFileUploadDownloadView.IContextElement.FILE_RESOURCE);
        IWDModifiableBinaryType binaryType = (IWDModifiableBinaryType)attributeInfo.getModifiableSimpleType();
        IPrivateFileUploadDownloadView.IContextElement element = wdContext.currentContextElement();
        if(element.getFileResource() !=null)
             try
                  String mimeType = binaryType.getMimeType().toString();
                  byte[] file = element.getFileResource();
                  //element.s
                  wdComponentAPI.getMessageManager().reportMessage(IMessageFileUploadDownloadComp.SF__UPLOAD,new Object[] {binaryType.getFileName()},false);
             catch(Exception e)
                  throw new WDRuntimeException(e);
        else
              wdComponentAPI.getMessageManager().reportMessage(IMessageFileUploadDownloadComp.NO__FILE,new Object[] {" "},true);
        //@@end
    Here "fileresource" is context attribute name
    Regards,
    Sunaina Reddy T

  • How to find the T-codes that's in a Single Role & Composite Role??

    Hi all,
    Some of the user have authorization to particular t-codes. However single roles are not created for them.
    Now I need to assign authorization to that particular t-code to a new employee.
    Since the single role is not there, I do not know how to find if it is inside a composite role.
    Which table should I find all the t-codes that are assigned to a single role / composite role?
    pls help.
    Regards,
    Pri

    Rakesh Kulkarni wrote:>
    > Table AGRS_TCODES give the roles with their tcode assignment.
    Beware of AGR_TCODES, it only reports transactions entered into the role menu. If you query table AGR_1251 filtered on object S_TCODE you get the actual transaction authorizations.
    Besides that, authorizations are always in single roles, so if you cannot find them there there's no point in searching through the composites.

  • I've tried downloading iOS5 several times and after an hour each time I get a message that says my network connection has timed out.  But I can't find any information about "timing out" or how to correct the situation.  Any help?

    I've tried downloading iOS5 several times and after an hour each time I get a message that says my network connection has timed out.  But I can't find any information about "timing out" or how to correct the situation.  Any help?

    Disable your antivirus and firewall, and try again.

  • How to find the processing time of any query?

    im using oracle express edition, can anyone help me, how to find the processing time of any query?

    Trace the query and tkprof the generated trace file.
    http://download.oracle.com/docs/cd/E11882_01/server.112/e16638/sqltrace.htm#PFGRF01010

  • How to find the last executed date of any program?

    <<Frequently asked questions. So search>>
    How to find the last executed date of any program?
    is there any system variable or function module?
    Edited by: Matt on Oct 5, 2010 12:48 PM

    check the transaction STAD.
    Prabhudas

  • How to find the records using contains with the word like this 'some text-some text'?

    Hi,
    How to find the records using the full text contains keyword and that column contains ‘some text-some text’
    In the above some text can be anything.
    Does anybody know please let me know.
    Thanks,

    Hello,
    You can try to create a Full Text Index on the table and use CONTAINS() to get the record which contains the specify words.
    For example:
    SELECT * FROM TABLE WHERE CONTAINS(column_name, 'some text')
    Reference:
    Full-Text Search (SQL Server)
    Creating Full Text Catalog and Full Text Search
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • How to find the TCODE that is created for the table maintanance generator

    Hi ,
    How to find the TCODE that is created for the table maintanance generator of particular table,if we only know the table name.
    Regards
    Ramakrishna L

    Hello,
    I try it this way
    1. Goto SE16 --> enter table TSTCP.
    2. In the selection-screen displayed, enter
    PARAM = *<ZTABNAME>*
    You will get the t-code for the TMG.
    BR,
    Suhas
    PS: Are you sure a t-code has been created for this TMG ?

  • How to find the contain of @list_of_cols_val_tab_del

    Hi
    Could you please tellme how to find the contain of @list_of_cols_val_tab_del
    for a given table when we write a stored procedure in SBO_SP_TransactionNotification.
    Thanks
    Sanjaya

    The way I have handled is by inserting the values being passed to this SP to a temp table
    INSERT INTO TRANSNOTIFY VALUES (@object_type, @transaction_type, @num_of_cols_in_key, @list_of_key_cols_tab_del, @list_of_cols_val_tab_del)
    Use this script to create this table
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE TABLE [dbo\].[TRANSNOTIFY\](
         [ObjType\] [nvarchar\](20) COLLATE SQL_Latin1_General_CP850_CI_AS NULL,
         [TransType\] [nchar\](1) COLLATE SQL_Latin1_General_CP850_CI_AS NULL,
         [NumCols\] [int\] NULL,
         [KeyCols\] [nvarchar\](255) COLLATE SQL_Latin1_General_CP850_CI_AS NULL,
         [ColsVal\] [nvarchar\](255) COLLATE SQL_Latin1_General_CP850_CI_AS NULL
    ) ON [PRIMARY\]

Maybe you are looking for

  • I have accidently deleted my recently added folder, how do i get it back

    I have accidently deleted my Recently Added folder in my iTunes.  How d o I get it back.  I wanted to delete the contence of the folder and ended up deleting the entire folder. Any help would be great.  I have itunes on my laptop.

  • Which scope for a UIManager?

    Hello, I want to use a UIManager to save persistance of some of my UIComponents. The idea is to bind UIcomponents (which are present in many jsff fragments) with a "RichComponent" attribute in a Bean (UIManager). For exemple : in the first fragment :

  • Checking Raw devices on Linux box

    How i can check raw device configured on Linux box? Like System admin configured dev/raw/raw1 and dev/raw/raw2 how i can check this? With df command i am not seeing this...

  • Cs3 instalation error

    hi there,I need adobe photoshop CS3.I was download it and receive error message when I open the file.what must I do to install cs3 photoshop?(I have try to run as administratir) this is the link to the screenshoots http://u.kaskus.us/31/k29fxkm9.gif

  • INSTALL_ERROR_DISTRIBUTION_SIGNED_BY_APPLE

    If I want to buy an App from the App Store I get this message. My itunes Account works well.