Don't allow user to enter transaction-code ?

hi,
is it possible to 'lock' the field in SAPGUI, where you can enter a transaction code ? i want this for a specific group of users.
best regards, Martin

Hi Martin,
Yes, you must handle this using authorizations.
Go to transaction SE93 and check for the transaction code whether there is any Authorization Object maintained.
Most T codes have S_TCODE as the authority object.
Check with basis, they would confirm all the profiles and roles which hold the authorization for this authority object + tcode combination.
By ensuring the user is not given the required auth. role, the user on entering the tcode in command box would receive an error and he would not be able to execute.
Cheers.

Similar Messages

  • How to customize SAPlogon so that the user cannot enter transaction code?

    I use PFCG to create a role which limit the choices of menu.  I create a user and set the role to the user.
    I would like to disable or hide the COmmand Field so that the user cannot enter transaction code directly.
    Is it possible to do so?
    If yes, would anyone show me how?
    Any discussion is welcome.

    anyway you are going to restrict the user authorization vai role, insted of going throught the whole tree to execute the tcode there is shotcut as command line. here you can save much more time for the user insted going through the tree always. there is no harm for the system if you keep the command line option. What and why you think it should be disabled?
    Cheers,
    -Sunil

  • Hide Command field (where users enter transaction codes in SAP GUI)

    In our requirement, the custom SAP transaction will be launched on CRM Web UI through transaction launcher technique (when users clicks a hyperlink on CRM UI)
    But business people are asking us to not provide the user to enter transaction codes in command field. They don't want User's see command field when the back-end SAP GUI is displayed on CRM UI through transaction launcher and they don't want the user to navigate to any transaction from the SAP GUI. Please let us know you comments on this. Is this possible, if so please guide me?

    Hi Madhu,
    This is a question for SAP basis.
    One work around could be that the the users who would use ITS screens should not have any other AUTH objects for executing other TCODES. And when they try to do so they will get an error message like you do in a normal SAP GUI.
    Basis can configure this by running a Auth Trace.
    Hope it helps.
    Thanks

  • Allowing user to enter new member in a dimension

    <p>I would like to know if it is possible to use forms to enter newmember in a dimension (for example a new project in the 'project'dimension). Currently we have created dummy project beforehand...But I have seen that <b>the workforce</b> allows users to enter anew 'employee' using a form... I believe it must create a newmember in the dimension ?</p>

    <p>I am not sure to understand exactly how you are working...</p><p>If you create three dummy project for every branch / sales area,does that means that actual project are consolidated in thoseproject? Then do you use the workflow feature? For example, how canyou approve or reject a high probability project code that wouldsum up several kind of project...</p><p> </p><p>In my opinion, it's necessary to work on 'single' and identifiedproject. In my company we have to be SOX compliant. I am quite surehaving a budget on 'unidentified' project is not really SOXcompliant...</p><p> </p><p>"It is better not to allow the users to edit thedimensions.It will create problems."</p><p>I certainly do not want to give them administration rights norto much possibilit&eacute;. But I am just willing to let themcreate new zero level member on their department... I believethat's what Hyperion has done in the Workforce Planning module. Isthere anybody who can confirm that? How do they have done that?</p>

  • Display users of a transaction code

    How can I display a listing of user-ids with access to the Transport Management system? The t-code for the Transport Management System is " stms "

    Transaction Code : SUIM
    Expand "User"
    Expand "Users by Complex Selection Criteria"
    Execute "By Transaction Authorizations"
    Enter Transaction Code "STMS"
    Click on "Execute"
    Hope this help.

  • On and iPad how to Allow User To Enter Custom Text  (Dropdown only) Enables users to enter a value other than the ones in the list.

    On an iPad, how do I :
    Allow User To Enter Custom Text
    (Dropdown only) Enables users to enter a value other than the ones in the list.'?

    Are you using the built-in Currency option under the Format tab? If so,
    what you're describing should not happen.

  • USer exit for transaction Code APPCHANGE

    I want to include a function module to trigger a workflow
    in a user exit related to program
    SAPLHRHAP_UI_DOCUMENT_REPORT (transaction Code APPCHANGE.)
    The workflow will be triggered when SAVE button  is pressed.
    Thank your for your help

    Here is a program that can be used to find user exits per transaction code.
    report z_find_user_exit no standard page heading.
    tables: tstc, tadir, modsapt, modact,
            trdir, tfdir, enlfdir, tstct.
    data : jtab like tadir occurs 0 with header line.
    data : hotspot(30).
    parameters : p_tcode like tstc-tcode obligatory.
    at line-selection.
      get cursor field hotspot.
      check hotspot(4) eq 'JTAB'.
      set parameter id 'MON' field sy-lisel+1(10).
      call transaction 'SMOD' and skip first screen.
    start-of-selection.
      perform get_data.
      perform write_list.
    *       FORM get_data                                                 *
    form get_data.
      select single * from tstc
                  where tcode eq p_tcode.
      check sy-subrc eq 0.
      select single * from tadir
                where pgmid = 'R3TR'
                  and object = 'PROG'
                  and obj_name = tstc-pgmna.
      if sy-subrc ne 0.
        select single * from trdir
                 where name = tstc-pgmna.
        if trdir-subc eq 'F'.
          select single * from tfdir
                         where pname = tstc-pgmna.
          select single * from enlfdir
                         where funcname = tfdir-funcname.
          select single * from tadir
                         where pgmid = 'R3TR'
                           and object = 'FUGR'
                           and obj_name eq enlfdir-area.
        endif.
      endif.
      select * from tadir into table jtab
                 where pgmid = 'R3TR'
                   and object = 'SMOD'
                   and devclass = tadir-devclass.
      select single * from tstct
              where sprsl eq sy-langu
                and tcode eq p_tcode.
    endform.
    *       FORM write_list                                               *
    form write_list.
      format color col_positive intensified off.
      write:/(19) 'Transaction Code - ',
      20(20) p_tcode,
      45(50) tstct-ttext.
      skip.
      if not jtab[] is initial.
        write:/(95) sy-uline.
        format color col_heading intensified on.
        write:/1 sy-vline,
        2 'Exit Name',
        21 sy-vline ,
        22 'Description',
        95 sy-vline.
        write:/(95) sy-uline.
        loop at jtab.
          select single * from modsapt
          where sprsl = sy-langu and
          name = jtab-obj_name.
          format color col_normal intensified off.
          write:/1 sy-vline,
          2 jtab-obj_name hotspot on,
          21 sy-vline ,
          22 modsapt-modtext,
          95 sy-vline.
        endloop.
        write:/(95) sy-uline.
        describe table jtab.
        skip.
        format color col_total intensified on.
        write:/ 'No of Exits:' , sy-tfill.
      else.
        format color col_negative intensified on.
        write:/(95) 'No User Exit exists'.
      endif.
    endform.
    Regards,
    Rich Heilman

  • Good afternoon, I'm normally the security code disabled but yesterday as he visits I enabled it and put my usual code but my iphone 4S version 5.1.1 and says it is wrong now only ever asks me to connect to itunes or me allows you to enter the code again.

    Good afternoon, I'm normally the security code disabled but yesterday as he visits I enabled it and put my usual code but my iphone 4S version 5.1.1 and says it is wrong now only ever asks me to connect to itunes or me allows you to enter the code again.
    can you tell me how can I fix it? thank you

    DO as the manual says to do and restore your iphone

  • SQVI Transaction access to Users or Z transaction code---- Urgent please

    Hi Experts,
    I need a information regarding ABAP Queries. I have created some SAP Queries in SQVI as per requirements from the endusers.
    We don't have the ABAPers at the site for this purpose we used the SAP Queries to users.
    So I need to give this SQVI transaction access to the Users is it good practice to give the authorization to end users(Some particular users)
    Just display of the queries is it possible.
    Is there is any option so that I can create the Z Transaction code in SE93 and include the tables in the Z transaction code to access so we can avoid any consequences on the SQVI transaction.
    Please provide me the details.
    rgds
    Swamy

    Hi,
    You can create a transaction that calls the query you developed. Then work on authorizations if you need.
    Get in touch for more info goncalo.garcia(AT)gmail.com.
    Cheers.

  • Do not allow user to enter non-number data.

    Hello
    For some reason the have used the TEXT FIELD object for numeric data input field.
    Actually, user has to always enter numeric data ONLY.
    No decimals, no commas, no alphabetical characters allowed except numbers.
    (Syststem should not allow user enter non-allowed data at all....i mean to say, when we achive by using Numeric field/object.... or If user trying to enter any non-allowed data i hv to throw an error and CLEAR the field immediately)
    Pls. let me know How to get my requirement? Do i need to use JavaScript or Pattern or Validation Pattern in object pallette or ALL 3?
    I am newbie, pls. provide me the code (if JavaScript)
    Thank you

    http://forums.adobe.com/message/4265578#4265578

  • Don't allow to press "Enter" in JEditorPane

    Hi,
    I need not to allow to press "Enter" key in JEditorPane. I added keylistener to JEditorPane.How to implement this?
    public void keyPressed(KeyEvent e){
    int code = e.getKeyCode();
    if(KeyEvent.getKeyText(code).equals("Enter")){
    //Don't allow to press
    Please provide me a suggestion.
    Regards
    Senthil

    I am only providing an alternative answer but perhaps could have been a little clearer with my reply.
    ***For the benefit of those who don't know***
    e.consume() will consume that keystroke and thereby also accomplish what he asked.
    A Document filter would be a better implementation if he wants to block the newline but Senthil was also not clear as to weather he wanted to block the keystroke or the newline.
    @db A simple "Welcome to the forums, but ......." may also have been a better answer from you.
    I am not trying to start a flame war, just would like to become part of the community and provide some assistance where I can.

  • User exit for transaction code MIGO (Goods Receipt)

    Hi Team,
    Please let me know the <b>name of the user exit</b> for adding a new field in transaction code <b>MIGO</b> (The field is Freight charges ) at header level.
    Would be suitably rewarded.
    Regards
    Badari

    hi,
    Transaction Code - MIGO                     Goods movement
    Exit Name           Description
    MBCF0002            Customer function exit: Segment text in material doc. item
    MBCF0005            Material document item for goods receipt/issue slip
    MBCF0006            Customer function for WBS element
    MBCF0007            Customer function exit: Updating a reservation
    MBCF0009            Filling the storage location field
    MBCF0010            Customer exit: Create reservation BAPI_RESERVATION_CREATE1
    MBCF0011            Read from RESB and RKPF for print list in  MB26
    MB_CF001            Customer Function Exit in the Case of Updating a Mat. Doc.
    Cheers
    Alfred

  • How to allow, user to enter the free text in smart forms and Drop Down list

    Hi Experts,
    How to provide the user to enter text in smart forms? ie Once the smartform generated, there the user allowed to enter text.
    And also is there any option to provide Dropdown list  in smart forms.
    Possible give with example with clear idea.
    Its very urgent!!!!
    Thanks in Advance!!!

    Hi!
    No, there's no way to it, because Smartform is just like a piece of paper, it can't handle any objects, after it is ready.
    It can be printed out/archived/sent on email as an attachment and that's all. It cannot be modified after it is completed.
    Regards
    Tamá

  • How to allow user to enter multiple values?

    Hi, can someone tell me how I can allow user to select multiple values from a selection screen. To be more clear, I have to display 4 values on the selection screen and want to allow user to select 2 or 3 values from it. It will be very helpful if someone could tell me how to do it.
    Thanks in advance,
    pushpa

    hi mahesh,
    pls c the code below. this is what i have written in my program. when i run this program it is showing only one value and that too only the first one '1234'. i want that it display all the values that i gave in the initialization part.
    please help.
    thanks,
    pushpa
    SELECTION-SCREEN BEGIN OF BLOCK enter_data WITH FRAME TITLE text-001.
    SELECT-OPTIONS skunnr FOR kna1-kunnr.
    SELECTION-SCREEN END OF BLOCK enter_data.
    INITIALIZATION.
    skunnr-low = '1234'.
    skunnr-sign = 'I'.
    skunnr-option = 'EQ'.
    APPEND skunnr.
    skunnr-low = '9824'.
    skunnr-sign = 'I'.
    skunnr-option = 'EQ'.
    APPEND skunnr.
    skunnr-low = '8756'.
    skunnr-sign = 'I'.
    skunnr-option = 'EQ'.
    APPEND skunnr.
    skunnr-low = '6534'.
    skunnr-sign = 'I'.
    skunnr-option = 'EQ'.
    APPEND skunnr.

  • How to allow user to enter a string including one quotation mark

    I'm not sure anyone here has talked it before.
    I'm quite confused, and hope someone could help me.
    I have a SQL script which has a field for user entering some comments in command-line.
    Whenever I tried to enter something like " it's not bad" in a statement like:
    select '&&COMMENTS' from dual;
    I got an error message like:
    select upper('it's not bad') from dual)
    ERROR at line 1:
    ORA-00907: missing right parenthesis
    I've tried some other ways such as using INSTR first, but all failed. :(
    Could anyone please give me some suggestion?
    Thanks a lot.

    Thank you for your response.
    It is the good way.
    But I'm afraid that I didn't talk about it clearly.
    I just wonder if there is a way for the user to enter the quotation only once, then I write some codes for the procession.
    Otherwise I've got to keep reminding them to enter it twice. :(

Maybe you are looking for

  • Bluff package: Apple Universal Dock

    I am the owner of a 2G iPod classic and my girlfriend owns a 1G iPod nano. To use our iPods with the same HiFi system I thought it would be nice to have an universal dock. As this dock - according to the promisses on the package - can be used univers

  • Error when intializin​g PXI-2567 Hardware

    I get an error when initializing my hardware(PXI-2567). The error is related to the source name. When I input the source name same as that found in the Measurment Explorer, which is in this case PXI4::11::INST, I get an error that the source does not

  • MySQL Joining Tables

    I have a MySQL table that contains two user id's, each of a different user. I want to make a query that joins that table with the user table to fetch the usernames corresponding to both user id's. How can this be done?

  • What is error code 213:19 , and how do I get past this??

    I just installed PSE9 on My new machine running Windows 7 Pro 64 bit. I can access the organize function, but as soon as I try to use edit, it gives Me error code 213:19. I got no help from a live chat with customer support. She suggested the technic

  • Why can't recipients open file attachments that I email from iFiles?

    I currently use iFiles on my iPad to store and organize my business files but when I send any file from iFiles as an email attachment, my recipient can not open the attachment. Instead of showing in their email as attachment that requires a double cl