Want to grey out (Non-editable)  field in Additional Tab in Header of ME21N

Hi all,
i've got a requirement to grey out the field(Non Editable) of header tab in ME21N.
Can anybody tel me the solutions.
Rgds,
Spandan

Question asked again, and again, and again, and again. Search for "grey out" (and please read forum rules as it seems you didn't)

Similar Messages

  • BDC for non editable fields

    hi
    i want to process the non-editable fields in a transaction (ME32) from the program itself. but when i am doing this it is showing error saying  '........field is not input field'.
    how to process this. pls check this.

    Hi Jay,
    The noneditable fields cannot be modified by BDC.
    But in one of our tasks,
    We followed this techinique..
    Actually 2 of the fields in second screen are not open for input if certain variable is X in 1st screen.
    Then we started that screen with Y and in this case those fields are open for input,now in second screen we modified the field as X back and saved the record..
    I am not sure whether this might help you

  • Update non-editable field Start date which is calculated from other context

    I had created some custom date fields(model, bol entity) in component ICCMP_BTSHEAD. We are calculating Start date based on the new input value into receiving date in the other context node.
    so, for this i get the value on controller class(_IMPL). and pass the same value in the GET method of Start date.
    But, Problem is Start date is the non-editable field so SET method will not be trigger as expected. so the same i used the DO_PREPARE_OUTPUT method but it's called and update the value when we press the enter. IF directly we click on the "SAVE" button then it' trigger but value is not updating in the database.
    Please, find the below piece of code for the same. can u please anybody help me that how can i achieve this requirement.
    DATA: l_recieve_date     TYPE crmt_date_timestamp_from,
            lr_current TYPE REF TO cl_bsp_wd_mixed_node,
            lr_col      TYPE REF TO cl_bsp_wd_collection_wrapper.
      DATA: lv_date TYPE d,
             lv_time TYPE t,
             lv_date_temp TYPE sydatum.
      IF iv_first_time EQ abap_false. "avoid for first tile load
    Read the value of btreceivedate-TIMESTAMP_FROM.
        lr_col = me->ztyped_context->btreceivedate->get_collection_wrapper( ).
        IF lr_col IS BOUND.
          lr_current ?= lr_col->get_current( ).
          IF lr_current IS BOUND.
            lr_current->if_bol_bo_property_access~get_property_as_value( EXPORTING iv_attr_name = 'TIMESTAMP_FROM'
                                       IMPORTING ev_result   = l_recieve_date ).
          ENDIF.
        ENDIF.
        IF l_recieve_date IS NOT INITIAL.
          CONVERT TIME STAMP l_recieve_date TIME ZONE sy-zonlo
                    INTO DATE lv_date TIME lv_time.
    Check day is working day - if not, correct to previous working day
          IF lv_date IS NOT INITIAL.
            lv_date_temp = lv_date.
            CALL FUNCTION 'DATE_CONVERT_TO_FACTORYDATE'
              EXPORTING
                correct_option      = '-'
                date                = lv_date
                factory_calendar_id = 'GB'
              IMPORTING
                date                = lv_date_temp
              EXCEPTIONS
                date_after_range    = 1
                date_before_range   = 2.
            IF sy-subrc IS INITIAL.
              lv_date = lv_date_temp.
            ENDIF.
          ENDIF.
          CONVERT DATE lv_date TIME lv_time
                 INTO TIME STAMP l_recieve_date TIME ZONE sy-zonlo.
        ENDIF.
        lr_col = me->ztyped_context->btstart->get_collection_wrapper( ).
        IF lr_col IS BOUND.
          lr_current ?= lr_col->get_current( ).
          IF lr_current IS BOUND.
            lr_current->if_bol_bo_property_access~set_property(
                       iv_attr_name = 'APPT_TYPE'               "#EC NOTEXT
                       iv_value     = 'ZSTWTIME0001' ).
            lr_current->if_bol_bo_property_access~set_property(
                            iv_attr_name = 'TIMESTAMP_FROM'     "#EC NOTEXT
                            iv_value     = l_recieve_date ).
          ENDIF.
        ENDIF.
      ENDIF.
    could you please help me?

    Hi,
    Thanks for your reply,
    yes, i checked the same thing also. But DO_HANDLE_DATA is called before the SET method of receiving date and in that case we are getting the old value in DO_HANDLE _DATA and  source and Target fields both are not updating.
    I checked, if, i'll change the input field then set method of input field and then EH_ON_SAVE is called directly.
    i think, if i'll do the same modification in the EH_ON_SAVE method as i did in the DO_PREPARE_OUTPUT then it can be updated but i don't want to change the EH_ON_SAVE at this moment.
    is there any other way to update the START DATE(Display mode in the screen) which is calculate from the other context node field receiving date.

  • How to create non editable fields in OIM?

    Hi ,
    I would like to know about the creation of non-editable fields in OIM.
    Thanks in Advance.

    Hi,
    Where do you want to create this field? (Create User Form, Process Form....).
    If your requirement is to do it in the Create User Form, or Self Register or Edit Profile... You have to edit the FormMetadata.xml file. There are many posts in the forum of how to edit this file but ask if you need any help.

  • Greying out the particular field of active group

    hi guru's
    we have requirement of greying out a particular field of active screen group
    say for eg:
    LOOP AT SCREEN.
        if screen-group1 EQ 'PUR' OR screen-group1 EQ 'SAL' OR screen-group1 EQ 'FIN'.
          screen-input = 0.
        ENDIF.
        MODIFY SCREEN.
      ENDLOOP.
    AT SELECTION-SCREEN OUTPUT.
      if rb_md EQ 'X'.
        LOOP AT SCREEN.
          if screen-group1 EQ 'PUR' OR screen-group1 EQ 'SAL' OR screen-group1 EQ 'FIN'.
            screen-input = 0.
          ELSEIF screen-group1 EQ 'MAS'.
            screen-input = 1.
          ENDIF.
          MODIFY SCREEN.
        ENDLOOP.
      ELSEIF rb_td EQ 'X'.
        LOOP AT SCREEN.
          If screen-group1 EQ 'MAS'.
            screen-input = 0.
          Endif.
          MODIFY SCREEN.
        ENDLOOP.
        if rb_pur EQ 'X'.
          LOOP AT SCREEN.
            if screen-group1 EQ 'SAL' OR screen-group1 EQ 'FIN'.
              screen-input = 0.
            ELSEIF screen-group1 EQ 'PUR'.
              screen-input = 1.
            ENDIF.
            MODIFY SCREEN.
          ENDLOOP.
        ELSEif rb_sal EQ 'X'.
          LOOP AT SCREEN.
            if screen-group1 EQ 'PUR' OR screen-group1 EQ 'FIN'.
              screen-input = 0.
            ELSEIF screen-group1 EQ 'SAL'.
              screen-input = 1.
            ENDIF.
            MODIFY SCREEN.
          ENDLOOP.
        ELSEif rb_fin EQ 'X'.
          LOOP AT SCREEN.
            if screen-group1 EQ 'SAL' OR screen-group1 EQ 'PUR'.
              screen-input = 0.
            ELSEIF screen-group1 EQ 'FIN'.
              screen-input = 1.
            ENDIF.
            MODIFY SCREEN.
          ENDLOOP.
        ENDIF.
      ENDIF.
    in the above code
    say for eg: the active group is 'SAL' in which i want to grey out one field say as parameter p_doc as invisible always
    what i need to do
    with regards
    s.janagar

    hi
    may be this code can help you:
    selection-screen begin of block b1 with frame title text-001.
    parameters : p1  radiobutton group r1 default 'X' user-command ac,
                         p2  radiobutton group r1,
    selection-screen end of block b1 .
    selection-screen begin of block b2 with frame title text-002.
    select-options : p_eg for mara-matnr modif id SAL
    parameters : p_doc  like mara-matnr modif id PUR.
    selection-screen end of block b2.
    at selection-screen output.
      if p1 = 'X'.
        loop at screen.
          if screen-group1    = 'SAL'.
            screen-input     = '0'.
            screen-invisible = '1'.
            modify screen.
          endif.
        endloop.
      elseif p2 = 'X'.
        loop at screen.
          if screen-group1    = 'PUR.
            screen-input     = '0'.
            screen-invisible = '1'.
            modify screen.
          endif.
        endloop.
      endif.

  • Hide/Remove/Grey Out/Disable Edit Button on Deleted Shopping Carts

    Dear forum contributors,
    Is there any way to make the Edit button unavailable/greyed out for deleted carts? The button is available at the Purchasing screen but nothing can actually be edited in a deleted carts and the business wants it greyed out (unavailable) or to be totally removed when a deleted cart line is highlighted (links to screenshots)
    http://i42.tinypic.com/30kt1eg.jpg
    http://i40.tinypic.com/e1etkh.jpg
    Thanks,
    Oscar.

    Hi,
    Deleted SC's are not an available selection in the dropdown in POWL criteria personalization. Is this a custom addition to the POWL?
    Regards,
    Jason

  • By default one field should be greyed out( not input field)

    hi all,
    My requirement is
    By default one field should be greyed out( not input field)
    when i click on a check box and press enter this field should be open to put input values.
    can some somebody please give me sample code for both PBO and PAI

    Hi Ram
    In flow logic.
    PBO
    module screen_modify.
    IN main program
    module screen_modify.
    loop at screen.
    if p_cb = space.
    if screen-name = <Name of your screen field>.
    screen-input = 0.
    screen-output = 0.
    modify screen.
    endif.
    endif.
    endloop.
    endmodule.
    P_cb is the checkbox.

  • Field exits for non-editable field

    Hi All,
    can I write field exit for non-editable field?
    Thanks in advance...
    bye.

    hi,
    i think you can, just try it.
    But when you have to change it, because of a certain exception in the fieldexit, it is impossible to change the field.
    Hans

  • How to make non editable field after requestor created the shoping cart

    Hi,
    i need to make non editable field (Price field) after requester created the shooping cart.The field should be  non editable only for requster .
    this i need to make when workflow triggers when the buyer sends  back the shopping cart to requester.
    one solution which i found:depend on the status of the shoping cart
    but i dont know whether it is correct way.
    if not please suggest me the solution.

    Hi,
    You can implement the BADI" BBP_UI_CONTROL_BADI".
    You can check for the role of the user who has logged in(e.g. for user REQUESTER,there will be a distinct role to idnetify that the user is a requester) and then acc set the display properties for the field PRICE.
    For sample code pls refer the foll links:
    Sample code for BBP_UI_CONTROL_BADI
    Re: Hiding Shopping Cart Fields in SRM 3.0
    Re: How to Hide the attributes from template BBPSC01?
    Re: How to validating total value in shopping cart
    Re: Price filed in Shopping cart should be in display mode
    BR,
    Disha.

  • Enabling the non editable fields

    Hello Friends..
    How to enable a non editable field. For example...how to make Personnel area field in IT0001 into a editable field. For some reason..we need this. Is there a way...?
    Kindly help..
    Thank you

    Hi,
    Assignmwnt which you hav don in info typ 0000 (Prsonnl area) will be as non editbl  fild in info typ 1
    i would like suggstest. instead of doing personnel area field editible, met ur requitmet with prsonnel subarea on same info type 1.
    If it is, there will be no problems
    Friends correct me if i am wrong.
    Edited by: MVRmvr on Aug 19, 2010 1:14 PM

  • Adding Custom fields to PO Additional TAB in Header

    Hello Experts.
    We have a requirement to add 2 additional fields in the PO header - ADDITIONAL TAB.  I have included  the fields in CL_EKKO include and activated it.  Can you please let me know the exit or BADI or sample to have this in Additonal TAB.
    I understand that we can create a custom TAB in header and bring in those fields. But i would like to bring these custom fields in ADDITIONAL TAB of  PO header only....not creating any new customer tab.
    Please share your thoughts.
    Edited by: Ganeshkumaran Gopalakrishnan on Oct 6, 2011 3:57 PM

    Hi Max,
    Using SAPLXM06  0101 is adding new Custom TAB in PO Header. As i mentioned i dont want new custom tab in Header. All I want is  to add the new custom fields in the existing Additional DATA TAB of the PO header.
    There is already existing TAB called Additional DATA, i need my custom fields to be available in that TAB, rather than creating a new tab for those fields.
    Please let me know how to add it to existing Additional data tab in PO header. thx

  • Is it system modification to add custom field in Addition B Order Header?

    I need to add user specific text and input field in Addition B Order Header in Sales Order Function(PGM: SAPMV45A Dyn: 8309). Is this system modification? What will happen when the system is upgraded?

    Hi,
    Remember that your z-fields must begin with ZZ* in your appends.
    Second. With this screens the problem is the same that with other userexits, enhancements, etc...
    Check the Note 16466 - Customer name range for SAP objects, it will help you.
    When you will do an upgrade or you will apply support-packages, you must remember to check these objects.
    Regards,
    Eduardo

  • Filed BEWAR in transaction F-51, F-44 is greyed out, not editable

    Hello Gurus,
    I would like to ask you one thing. We are using transaction F-51 to post with clearing. When we enter the line with the GL account and amout, automatically the line with vendor is marked for correction. In this company is due to validation as the transaction type BEWAR is missing. When we want to correct the line, we go to further data, then the field is not editable.
    So my question is if always this field is greyed out or if this is a matter of customizing, If this is the second option where in customizing  we can find this
    thanks a lot in advance for your feedback
    regards
    Hana

    HI,
    Unfortunetly you cannot enter in field BSEG-BEWAR manually in transaction F-44.
    The field BEWAR is not part of the index tables. Therefore it can't be transferred from the open item to the clearing line.
    above is not posiable.
    Reg
    Madhu M

  • (non)Editable field on Myspace & Firefox 3.5/6

    Symptom: flash app has an editable field that becomes non-editable on Myspace, but only when accessing it with Firefox 3.5 or 3.6;
    What's more, it actually can be edited, as long as one right-clicks into the field.
    The app is made with Flash Pro CS5 and embedded on Myspace using AddThis, if that makes any difference.
    The same app behaves just fine in Chrome or IE8. All of these are on WinXP, in case that's at play.
    My skills with flash are limited, so I'm at a loss as to where things would go wrong.
    As these apps are also working just fine on other sites, I'm guessing this is very Myspace limited issue, but what?
    thanks,
    karoy

    I had the same problem.  Called HP support and that was useless.  They tried to help me restore to before the problem but the restore wouldn't work!  In the end they wanted me to restoer to factory settings.  All because they haven't bothered to test their update with some pretty standard software (firefox).  I always get the same response from their service folks - "you are using software that is not from HP so we can't really help you".  Well, yeah - uh, I occassionally do use software on my laptop that is not made by HP.
    I had high hopes for moving from Dell to HP, but am just disappointed over and over again.  Perhaps my expectations were too high, but never the less, I will not buy an HP laptop again.

  • Non editable field in POP_GET_VALUES

    Hello,
    I am using the POP_GET_VALUES function to request two values from the user. I have to ask for a provider and a price. The provider field works fine (mach code included), but the price field appears in grey (non editable) and then the user cannot inform the value. How can I avoid this behaviour?
    Thanks in advance,
    Ricard.
    Edited by: Oscar Barrabes on Jul 3, 2008 3:27 PM

    DATA: TITOL type string.
        DATA: VALORS LIKE SVAL OCCURS 0 WITH HEADER LINE.
        CLEAR VALORS.
        REFRESH VALORS.
        VALORS-TABNAME = 'EKPO'.
        VALORS-FIELDNAME = 'NETPR'.
        APPEND VALORS.
        VALORS-TABNAME = 'AFVC'.
        VALORS-FIELDNAME = 'LIFNR'.
        APPEND VALORS.
          CLEAR TITOL.
          CONCATENATE ITAB-CODCON ITAB-CODCLI ITAB-NOMSRV INTO TITOL
    separated by '-'.
          CALL FUNCTION 'POPUP_GET_VALUES'
            EXPORTING
            NO_VALUE_CHECK        = ' '
              POPUP_TITLE           = TITOL
             START_COLUMN          = '5'
             START_ROW             = '5'
          IMPORTING
            RETURNCODE            =
            TABLES
              FIELDS                = VALORS
          EXCEPTIONS
            ERROR_IN_FIELDS       = 1
            OTHERS                = 2
    I have tried it using the field netpr from other tables and the result has been the same. If I run the function at se37 the price field appears as non editable too.

Maybe you are looking for

  • Getting parameter values from ITS to back end Modulepool program

    Hi, I worked on external ITS developments for SRM project I  was passing values from and to between ITS front end template and corresponding back end module pool program. I was using filed-set and field-get macro for passing values. It was working pe

  • Office document properties in WebUI

    Most of the documents stored by our company are Office documents, which contain a large set of properties, that are used extensively to manage documents. In moving to iFS we'd like to see and search on these properties from the WebUI, but they only s

  • Execute all procedures in a package

    Pls tell me how to execute all the functions and procedures in a Package in a single shot or is there any coding for the same Please help me Thanks in advance

  • Email Server Behind WRV210

    We just purchased and setup the WRV210 VPN router, but we are having a major issue with it. We are running a mail server behind the VPN router, but we can no longer connect to it through Outlook. We forwarded all of the appropriate ports but still ca

  • Info Needed. Urgent!

    Hello, I need some urgent info regarding iFS. 1- Does Oracle iFS supports multi master replication? 2- Can iFS Operations can participate in regular Db transaction? 3- Does iFS maintain ACID properties? 4- Does iFS support online Hotbackup? 5- Do u k