Disabling Command field in Portal

Hi EP Gurus,
I have an requirement where in the command field should be disabled while calling a Tcode.
I.e. After i call a Tcode, the command field box should not be there for the user to go for another transaction. How can i achieve this??

Hi,
I dont know abt the hiding th command field. I think we need a exit or BADI for that.
Or
Try to have the Iview in the Iput Disabled mode when opened in the portal.
Or
Give the permissions only to view the Tcode but not for eidting.
Regards
Lekha

Similar Messages

  • Reg Disabling command field in Portal

    I have an requirement where in the command field should be disabled while calling a Tcode in Portal.
    I.e. After i call a Tcode in Portal, the command field box should not be there for the user to go for another transaction. How can i achieve this??

    Hi,
    Duplciate Post.
    I dont know abt the hiding th command field. I think we need a exit or BADI for that.
    Or
    Try to have the Iview in the Iput Disabled mode when opened in the portal.
    Or
    Give the permissions only to view the Tcode but not for eidting.
    Regards
    Lekha

  • SAP ESS Portal. Hiding or Disabling a field in portal iview for transaction

    I'm working with SAP R/3 4.6C and SAP Enterprise Portal 6.  I have an iview on the portal for transaction PZ02 for modifiing addresses.  There is second address line that I'd like to disable or hide in the portal iview.  How do I do that?

    check these links...
    PZ02 Transaction Screens
    ESS Disply only mode for PZ02/PZ03
    ESS Service PZ02

  • Disable/hide Command Field in T-iViews

    Hi All,
    I have ctreatd some transaction iviews. I am using SAP GUI type as SAP GUI for windows, I there any way to disable/hide the command field so that user user cannot enter any other T-Code and navigate to that transaction.
    Waiting for your inputs...
    Regards,
    Srinivas

    Hi,
    I have done that. I created that as a local object.
    Below are the params i maintained for the system created
    Application Host : My R3 Host
    Using SSO
    WebAs Host : FQDN of R3:8000
    WebAs Path :/sap/bc/gui/sap/its/webgui
    Protocol: http
    ITS Host : FQDN of R3:8000
    ITS Path :/sap/bc/gui/sap/its/webgui
    Protocol: http
    After that If I do a Preview, I am getting the below error:
    The URL http://MyPortal.Node1:8000/sap/bc/gui/sap/its/se37 was not called due to an error.
    Note
    The following error text was processed in the system ECD : Template interpretation cancelled, syntax error.
    The error occurred on the application server devecc_ECD_00 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    SYSTEM-EXIT of program SAPLSFUNCTION_BUILDER
    Function: RS_FUNCTION_INITIAL_SCREEN of program SAPLSFUNCTION_BUILDER
    Method: IF_WB_PROGRAM~PROCESS_WB_REQUEST of program CL_FB_FUNCTION_INITIAL_SCREEN=CP
    Method: DO_THE_NAVIGATION of program CL_WB_NAVIGATOR===============CP
    Method: DO_THE_NAVIGATION of program CL_WB_NAVIGATOR_VIS_AS_DYNPRO=CP
    Method: PROCESS_WB_REQUEST of program CL_WB_MANAGER=================CP
    Method: PROCESS_REQUEST_QUEUE of program CL_WB_MANAGER=================CP
    Method: IF_WB_MANAGER~SET_WORKSPACE of program CL_WB_MANAGER=================CP
    Method: START_INTERNAL of program CL_WB_STARTUP=================CP
    Module: MANAGER_START of program SAPLWB_MANAGER
    User with which I am trying this is having SAP_ALL permissions....
    More over, If I delete the ITS Params from the system definition, I am getting a Portal RunTime Error.
    0}#1#com.sapportals.portal.prt.runtime.PortalRuntimeException: Exception in SAP Application Integrator occured: Application URL &\#39;:///sap(ZT1zZEFWZjVWU1JNazVBRlg0ZWdLblNBLS1STFBvNnZPUEdYSnJaZjZCZnU1cWdBLS0=)/bc/gui/sap/its/se37&\#39; is not valid! Please check the protocol and host entries for system &\#39;ECC_DEV&\#39;.
    Please help me, am I missing any thing????
    PS: I am using the same system for T-Code iViews and are working fine.
    Regards,
    Srinivas

  • How to forbid command field at user level?

    Does anyone know how can i forbid at user level the command field?
    Thanks
    M.

    Hi marco,
    1. In normal SAPGUI,
       there is some REGISTRY Value, (when gui installation is done)
    2. If that setting/value in registry is changed,
       then the command field won't come.
    3. For PORTALS,
        the setting is done in the ICF/Service parameter
       ~NOHEADEROKCODE=1
      (By doing this, it will come in SAP GUI,
      but won't come if we access r/3 from portal/internet explorer)
    regards,
    amit m.

  • Missed command field on easy access screen

    hai guys, i am just the starter of SAP. while browsing the screen , i dont know what i did and finally i lost my command field in easy access screen. please let me know how to 2 get it back.i think u understood what i mean.the field where we give commands like mmo1etc.,.
    thanks guys

    Hi,
    are you talking about SAP GUI? This forum is about Knowledge Management in the SAP NetWeaver Enterprise Portal: http://help.sap.com/saphelp_nw70/helpdata/en/4c/9d953fc405330ee10000000a114084/frameset.htm
    To make your Transaction code field visible again: you should see some small white arrow as the secon icon. Click on it and the input field will re-appear
    Kind regards
    Karin

  • Disabling certain fields on the selection screen.

    Hi all,
              I want to disable certain fields on selection screen of my program, also i want to display certain fields on selection screen only if a particular field on the selection screen is checked or selected. Please guide me how this can be achieved via coding in a program.
    Thanks & regards,
    Chetan.

    Hi Chetan,
    try this.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS: pa_file TYPE rlgrap-filename MODIF ID abc,
    pa_lifnr TYPE lfa1-lifnr MODIF ID abc,
    pa_vkorg TYPE vbak-vkorg MODIF ID abc.
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    PARAMETERS: pa_kunnr TYPE vbak-kunnr MODIF ID def.
    SELECT-OPTIONS: s_lifnr FOR gs_lfa1-lifnr MODIF ID def,
    s_date FOR gs_lfa1-erdat MODIF ID def,
    s_augru FOR gs_vbak-augru MODIF ID def,
    s_vbeln FOR gs_vbak-vbeln MODIF ID def.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-003.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: pa_upd RADIOBUTTON GROUP g1 USER-COMMAND uc01 DEFAULT 'X'."#EC *
    SELECTION-SCREEN COMMENT 3(60) text-004 FOR FIELD pa_upd.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: pa_rep RADIOBUTTON GROUP g1 ."#EC *
    SELECTION-SCREEN COMMENT 3(60) text-005 FOR FIELD pa_rep.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK b3.
    IF pa_rep EQ gc_x.
    LOOP AT SCREEN.
    IF screen-group1 = gc_abc.
    screen-input = gc_zero_num.
    ELSEIF screen-group1 = gc_def.
    screen-active = gc_one_num.
    ENDIF.
    MODIFY SCREEN.
    ENDLOOP.
    ELSEIF pa_upd EQ gc_x.
    *For Reprocessing
    LOOP AT SCREEN.
    IF screen-group1 = gc_def.
    screen-input = gc_zero_num.
    ELSEIF screen-group1 = gc_abc.
    screen-active = gc_one_num.
    ENDIF.
    MODIFY SCREEN.
    CLEAR pa_upd.
    ENDLOOP.
    ENDIF.
    REPORT zrich_001.
    PARAMETERS: p_rad1 RADIOBUTTON GROUP grp1 DEFAULT 'X'
    user-command chk,
    p_rad2 RADIOBUTTON GROUP grp1.
    SELECT-OPTIONS: s_datum1 FOR sy-datum MODIF ID d1,
    s_datum2 FOR sy-datum MODIF ID d2.
    AT SELECTION-SCREEN OUTPUT.
    LOOP AT SCREEN.
    IF p_rad1 = 'X'
    AND screen-group1 = 'D2'.
    screen-active = '0'.
    ENDIF.
    IF p_rad2 = 'X'
    AND screen-group1 = 'D1'.
    screen-active = '0'.
    ENDIF.
    MODIFY SCREEN.
    ENDLOOP.
    reward if useful.
    regards,
    sravanthi.

  • WEBGUI: hide command field

    Hi everybody,
    I'm actually integrating some portal content in EP6 including SAP Transactions using webgui.
    Now my task is to hide the command field. I found a parameter ~noHeaderOkCode=1 that hides the command field. But if the user clicks on any menu entry for example 'open new window' the command field appears again.
    Did anyone have the same problem yet?
    Regards
    Eric

    Hello,
    here some information for everyone:
    the note above describes a webgui prarameter that supresses the menu and command field in the WebGUI. But if you call the parameter over the URL it is only valid for one request so the field ist shown immediately after clicking anything in the GUI. If you want to make it permanet you must enter the parameter in the SICF.
    regards
    Eric

  • Disable password expiry in Portal V2

    Hello,
    Is it possible to disable password expiry in Portal V2 (ias902).
    I do not password to expire for some users at all.
    Thanks,
    Ritendra.

    Hi Kaustubh,
    Refer this link:
    how to disable the "change of password" field in login page of SAP portal?
    Regards,
    jithin

  • How to disable a field on the basis radio button value selected.

    hello to all,
    i am facing one problem.I have declared two selection screen blocks.
    In one i hvae declared two radio button r1 -Fiscal year and r2--Datewise.
    And in another selection screen block all i/p fields. like plant. date.year etc.
    Now if user select r1-Fiscal year  then i/p field - date of second block should be disable.
    And if user select r2-Datewise  then i/p field - year of second block should be disable.
    SELECTION-SCREEN BEGIN OF BLOCK BLK WITH FRAME
              TITLE TEXT-002.
           PARAMETERS: R1 RADIOBUTTON GROUP RA1 user-command ucomm,
                       R2 RADIOBUTTON GROUP RA1 DEFAULT 'X'.
       SELECTION-SCREEN END OF BLOCK  BLK.
    selection-screen begin of block b1 with
      frame title text-001.
    parameters : gjahr like ZSA_DETAIL-gjahr  MODIF ID YAR,
                 aedat like ZSA_DETAIL-aedat  MODIF ID DAT,
                 werks like ZSA_DETAIL-werks .
    selection-screen end of block b1.
    AT SELECTION-SCREEN on RADIOBUTTON GROUP RA1.
       BREAK-POINT.
        IF R1 = 'X'. "fiscal
         LOOP AT SCREEN.
            IF screen-group1 = 'DAT'.
             screen-active = 0.
             screen-invisible = 1.
             MODIFY SCREEN.
             ENDIF.
            endloop.
       ELSEIF R2 = 'X'.
         LOOP AT SCREEN.
         IF screen-group1 = 'YAR'.
           screen-active = 0.
          MODIFY SCREEN.
         ENDIF.
         ENDLOOP.
        ENDIF.

    Hi Shikha,
    Regarding your query, when you select a particular radio-button then the fields pertaining to that radio-button should get activated or get displayed, otherwise it should be hidden.
    This can be done adding the addition to the Radiobutton 'USER-COMMAND' this will automatically enable-up
    the functionality of the fields related to that radiobutton, while disabling the others.
    If USER-COMMAND isn't given, then ENTER key serves the purpose.
    DATA:
    w_carrid LIKE sflight-carrid,
    w_connid LIKE sflight-connid.
    PARAMETERS:
    p_carrid RADIOBUTTON GROUP airl USER-COMMAND airline,
    p_connid RADIOBUTTON GROUP airl.
    SELECT-OPTIONS:
    s_carrid FOR w_carrid,
    s_connid FOR w_connid.
    INITIALIZATION.
    p_carrid = 'X'.
    Now enabling desired fields and disabling the others, can be done by the following snippet.
    AT SELECTION-SCREEN OUTPUT.
    LOOP AT SCREEN.
    IF p_carrid EQ 'X'.
    IF screen-name CS 'S_CONNID'.
    screen-active = 0. " Disable the field S_CONNID
    MODIFY SCREEN.
    ELSEIF screen-name CS 'S_CARRID'.
    screen-active = 1. " Enable the field S_CARRID
    MODIFY SCREEN.
    ENDIF.
    ELSEIF p_connid EQ 'X'.
    IF screen-name CS 'S_CARRID'.
    screen-active = 0.
    MODIFY SCREEN.
    ELSEIF screen-name CS 'S_CONNID'.
    screen-active = 1.
    MODIFY SCREEN.
    ENDIF.
    ENDIF.
    ENDLOOP.
    Hope, this would help you solve your problem.
    Thankyou,
    Zahack.

  • Disable screen fields

    I required help to disable screen fields when User command runs in PBI not in case of PBO. Pl. help.
    vikas

    Hi,
    PBI? assuming PAI...
    u can disable filed useing :
    loop at screen.
    if screen-name = '<ur_fld_name>'.
    screen-input = 1. "or may be 0
    modify screen.
    endif.
    endloop.
    Jogdand M B

  • Disable commnad field standard toolbar SAP

    Hi,
    How I can disable de command field in the standard toolbar?
    I try to remove, delete, disappear or lock the command field, by this way, the users can't introduce any transactions.
    I know that exist the possibility with which you can don't show this command field (pressing the triangle) but this solution doesn't lock this field and if you press again the icon, this field appear another time, then this is not a solution with which I can solve this problem. Another thing or method that I have used it is through the SM30 with the table SSM_CUST with the parameter ALLOW_TCODE_START but this doesn't work or do any thing with the command field standard.
    Don`t exist authorizations.
    I hope some help for this problem.
    Thank's
    -MARCOS-

    Hi Darren,
    thank you for your answer.
    Do you know other way to disable that command field?? I was thinking about something like Windows Regedit or modification the initial screen (programme SAPLSMTR_NAVIGATION). 
    Thank's.
    -MARCOS-

  • Getting Drop Down list for a field in portal based on the values in R/3

    Hi,
    Presently we were customizing the ESS>>Family Members/Dependants iview in Portal. Because of the design requirement, in R/3 we have added some custom field for infotype 21 (Family Member details Infotype). We have to display these field on portal in Family Member Iview.
    However for these custom fields i am not able to get the drop down list with all the possible values description(F4 help ) in portal unlike the standard SAP fields.
    I am able to display the codes but the description is not coming up for the fields. However for standard SAP field, only description comes.
    For this I tried to attach the search help to the data element and also assigned a check table to the data element in R/3. But still I am not getting the description in the drop down.
    So how can I get the description and only the description in the drop down.
    Thanks
    Namit

    Hi,
    When you run the Search hep is it giving the description or not
    You have to create the serarch help with both the fieldname and its description field then we cna the values. Or
    Try to mantain the text table for this field and get the data.
    Get the valeusinto drop drown with this table Or create the SearchHelp for this text table
    Regards
    Lekha

  • Enable / disable classification fields in material master?

    Hi experts
    We hope to assign one group who could change the matieral master fields on classification.
    Like one gropu who could change the classification fields- date, on mateiral master . others only could display
    Is that possible to modify the program to enable or disable one field ?
    Now we have mm02 for normal user and zmm02 for specific user.
    Thanks
    ALice

    Hi
    When you create a role with transcation MM01, the Authorisation objects related to Classification are inherited from the transaction.
    If you want to give the user only diplay options maintain the Activities as 03 for the authorisation object C_KLAH_BKL & give the Class Type Z01.
    For the Chracteristics (Class maintenance)in the authorisation object C_TCLS_MNT maintain Activity 03 & Class type Z01
    Similarly create another role & assign it to the user whco is authorised to create or chnage values, Give hm the activiies 01,02 & the class type Z01.
    I feel that there is no requiremnt of changing the Program, as the authorisation objects are laready available.
    Thanks & Regards
    Kishore

  • Disable certain fields during the creation of SC using "create limit item"

    Hi,
    I have a requirement to disable certain fields from the role "SHOP" associated with the operational purchaser role. I would like to disable the fields "Unlimited check box", "Service Agent", " Invoice Only radio button", "Unknown account assignment radio button" from the screen I get during creation of SC using the option "Create Limit Item". Also i need to disable the option "Good / Service" entry box as we are using only free text items and donu2019t want this option to be seen in the screen when using the operational purchaser role.
    Please advise how can I achieve this.
    Regards
    GGL

    Hi,
    I have a same requirement to disable certain fields from the Shopping Cart Limit Item. I would like to disable the fields  "Service Agent", "Unknown account assignment radio button" from the Detail  screen. during creation of SC using the option  Limit Item .  Also i need to make default Value "Known" and "Invoice Only". But this is in SRM 7.0. Notes You have mentioned supports only Release 5.5, But I am in Release 7.0. Any idea?
    I appreciate your help
    Thanks,
    Monica

Maybe you are looking for

  • Need help. Exporting pdf to Word or cretaing live fields in doc

    I need to take a 180pg doc and save it as a word doc or manage to turn all the necessary areas into live fields. I've tried going to export > word document or File > export to anything really and I keep getting this error message Adobe was unabl;e to

  • What lcd cord should i be looking for to buy for lenovo g500s no touch.

    i heard that i should be looking for oem cords since i dont have shared graphics. but i have no idea though. and by lcd cord i mean the cord that connects to the screen.

  • Still Clip Duration

    I'm just starting to use Imovie HD, and i'm having problems editing the length of still clips. I can make them as short as i want, but can't make them longer by dragging in the editing bar. I looked in help, and where they tell you to double click th

  • Change of GL account - Cannot be efffected

    Hello All A PO was created successfully; After the PO creation immediately realised I entered a wrong GL account, so have changed it. But the GL account which I changed did not get saved when I saved the PO, there is a information message ME 664; (Ch

  • Microsoft setup bootstraper has stopped working

    hi, when i am trying to install microsoft office professional plus 2013  in my windows8.1 based system pc , i can not installed it. there shows a massage " microsoft bootstraper has stopped working" i tried to installed it several time but it shows s