Make Item level field Non-Editable in VA01

Dear Experts,
        I have a requirment to make ITEM Category field in item level of VA01
        make Non-editable based on the value of Sale order Type in the main screen
  i am using Program MV45AFZZ to make necessary changes i am able change any thing on the header level but i am not geting the control of item level Please suggest me how to change or make fields non-editable in Item level.

Hi,
Try writing code in FORM userexit_field_modification.
*** Lock field pricing date in SO if delivery occured
  IF   screen-name = 'VBAP-PSTYV'  AND
       sy-tcode NE 'VA01' AND l VBAK-AUART EQ 'your document type'.
      screen-input = 0.
  ENDIF.
ENDFORM.                    "USEREXIT_FIELD_MODIFICATION
KR Jaideep,

Similar Messages

  • User Exit to make Payment Term field non editable in item level .

    Hi all,
    User wants to make the Payment Term field in sales order as non editable and  Payment terms is copied from Customer Master to Sales order.
    I use user exit MV45AFZZ (USEREXIT_FIELD_MODIFICATION) to make Payment Term field non editable in header level.
    I am not able to do it in item level. Pl help to to make Payment Term field non editable in item level.
    Thanks,
    sunil

    Hi,
    You can try implicit enhancement in the include MV45AF0T_TCTRL_U_ERF_AUFTRAG_I
    use below code.
    DATA: WA_COLS LIKE LINE OF TCTRL_U_ERF_AUFTRAG-COLS.
       LOOP AT   TCTRL_U_ERF_AUFTRAG-COLS INTO WA_COLS.
       IF WA_COLS-SCREEN-NAME = 'VBAP-ZTERM'. " Check the field name
       WA_COLS-SCREEN-INPUT = 0.
       WA_COLS-SCREEN-OUTPUT = 1.
      MODIFY TCTRL_U_ERF_AUFTRAG-COLS FROM WA_COLS.
       ENDIF.
    ENDLOOP.
    It better to control it via a custom authorization object.
    put a authorization create a custom authorization object so that you can restrict it for a certain users.
    AUTHORITY-CHECK OBJECT 'ZTERM'
             ID 'ACTVT' FIELD '02'.
    IF SY-SUBRC NE 0.
       LOOP AT   TCTRL_U_ERF_AUFTRAG-COLS INTO WA_COLS.
    ENDLOOP.
    ENDIF.
    Regards
    Aromal

  • How to make Resource Forms fields non editable (OIM)

    Hi all!
    I would like to know if there's any way to make some resource fileds non editable.
    I have one resource which is getting 3 fileds from the oim user profile. When i change the oim user profile, these values are updated on the resource form associated.
    But i want to prevent the situation in which those fields are directly updated on the resouce form.
    I now i can propagate those changes back to oim profile but it will be much appropiate for what we want if we just could prevent anyone from changing those values on the resource form.
    Is it possible to make those fields non editable? How?
    OIM version is 9.1.0.1.
    Thanks in advance.

    Hi, thanks.
    Finally i found this: http://kr.forums.oracle.com/forums/thread.jspa?threadID=591683
    and after setting the fields to required=false, it worked without any errors ("The Resource has not been configured properly" because of the prepopulate adapters)
    Bye

  • SRM catalog setting to make items level field vissible.

    Hi
    I am dealing with SRM catalog activitities . I want to know the setting by which we make the field visible on portal at item level.
    rgds
    amarendra

    Hello amarendra,
    which field are you talking about ?
    The one to access to catalog?
    If yes, you have to maintain Web Service value for CAT attribute.
    Regards.
    Laurent.

  • In PO -Me21N Material PO text field non editable

    Dear All ,
                  We have specific requirment in PO (ME21N). In Item level ther is free text field "Item Texts". In Item texts we have 4 text fields
    (1) Item Text
    (2) Info Record PO text
    (3) Material Po text
    (4) Deivery Text
    As per our configuration in "Material PO text"  Material long description picking from Material master .We want to make this text field Non Editable.
    In SAP there is facility to configure non editable  Texts , But it will non editable all text fields.
    How we can non editable only Material Po text .
    Thanks in Advance.
    Regards
    Abhishek Tiwari

    Dear Chetan,
                          I think you have not understood my complete question. First thing i dont want to non editable Short text field.
    In my problem  i In Item level ther is free text field "Item Texts". In Item texts we have 4 text fields
    (1) Item Text
    (2) Info Record PO text
    (3) Material Po text
    (4) Deivery Text
    In above text fields ,I want to non editable only "Material PO Text" only....
    Regards
    Abhishek Tiwari

  • Make 1 field non-editable while using transaction VA02.

    Hi,
    I want make a field non-editable under tab 'shipping' for transaction VA02. I know one way of doing it by adding code to  MV45AFZZ -> USEREXIT_FIELD_MODIFICATION. is there any other way ( other user-exit / BADI) to achieve the same.

    Hi,
    Please go through this link... It tells you the step to follow....
    http://www.sap-basis-abap.com/sapbs010.htm
    Also please refer these posts..
    Re: Transaction Variants & Variant Transactions
    Re: Transaction Variants

  • How to make fields Non Editable in Web ADI

    Hi All,
    Can you please let me know how we can make fields Non Editable in Web ADI?
    Thanks,
    Anil

    Hi,
    Are you trying to make required parameters readonly and does this variable have different values for each row. If not then I would suggest you use a wrapper for the API and get only parameters that you need from the excel sheet and the use the wrapper to send the other read only values.
    Thanks

  • To make the "req.delivery date" field non-mandatory in VA01 Transaction

    Hi All,
    I want to make "req. delivery date"(RV45A-KETDAT) field non mandatory in VA01 transaction.
    I have already checked on screen 4440 .This field is not mentioned as required field.
    Please help me to find where can i make this field non-mandatory.
    Thanks and Regards,
    Dipali.

    Hi,
    this is a required field, as far as the standard SAP code goes: everytime this field is touched the following function is executed in programme FV45EF0V_VBEP-EDATU_EINGEBEN:
        call function 'PERIOD_AND_DATE_CONVERT_INPUT'
          exporting
            external_date     = rv45a-etdat
            external_period   = rv45a-prgbz
          importing
            internal_date     = vbep-edatu
            internal_period   = vbep-prgrs
            ev_date_in_past   = lv_date_in_past
            ev_period_in_past = lv_period_in_past
          exceptions
            no_data           = 1
            period_invalid    = 2
            date_invalid      = 3.
        case sy-subrc.
          when 1.
            set cursor field 'RV45A-PRGBZ' line sy-stepl.
    * Bitte Datum eingeben
            message e394.
    The only way to avoid this is create an implicit enhancement at the beginning of this form, copy the exisitng code in there, delete the message after WHEN 1. and put RETURN at the end of the enhancement. But this would be HIGHLY UNRECOMMENDED, because I am positive you cause a lot of misery later on in the process: this field is mandatory for a reason!
    Roy

  • How to make a field non-Editable in Web UI

    Hello Experts,
    I am new to Web UI CRM 7.2. Could anyone pls guide me in making a field non-editable on Web UI.I have the field in one of the custom assignment block. Could you pls guide me with some sample code how to achieve this ?
    Thanks in advance.

    Hi experts,
    For the component 'ICCMP_EMP_SRCH' there is a view 'BUPAEMPSEARCH' , which has 2 context nodes 'CUSTOMER' AND 'SEARCHEMPLOYEE' , i need to add the field 'NICKNAME' which is part of the 'CUSTOMER' context node on the search screen. Currrently all the fields on the screen screen are from the 'SEARCHEMPLOYEE' context node. when i did the configuration , the 'NICKNAME' field is greyed out . I have already generated the Getter ,Setter , GET_I, GET_M methods for the 'NICKNAME' field and the context node and controller class and context class are all active .
    on debugging the GET_I method, i see that rv_disabled = 'TRUE' and the current = collection_wrapper->get_current( ) is returning empty value .
    for this rv_disabled to be set false , the code below is not triggered since there is no value in current.
    IF current->is_property_readonly(
    'NICKNAME' ) = abap_false. "#EC NOTEXT
    rv_disabled = 'FALSE'.
    ENDIF.
    when i check for other search fields of context node 'SEARCHEMPLOYEE' , all the fields are set to rv_disabled = 'FALSE'.
    can anyone suggest how to approch this. iam i missing any binding between context nodes or any activations ?
    The field properties are set as Input field and the display checkbox is not checked.

  • Making the whole po line item as a non editable one (Greyed out)

    Hi all
    can any one please let me know is there is any way we can grey out the whole line item,
    i mean to say non editable mode.
    i am working on a user exit where based on certain field entries i have to make the whole line
    item as an non editable one.
    For example po change transaction if there are 5 line items i want to make the three as a non editable one and i have a user exit
    with me but dont have the idea of how to make it geryed out.
    Thanks in advance.
    Joe

    Hi
    Do you have a PO release strategy implemented. This can be done through PO release strategy. please tell  the exact requirement whether this is for all users ???
    hope it will help
    Regards

  • SOLAR01 / 02 Administration tab - making 'Plan Data' fields non-editable

    For the SOLAR01 / 02 t-codes, and under the Administration tab, how can one make the 'Plan Data' non-editable for the users. This is required so that the planned data is controlled only by the Admin / Mgmt team and the functional and technical team can update only the 'Actual Data' fields.
    Thanks very much,
    Varun Narula

    Hi Prakhar,
    I would like to create a project plan similar to MS Project with tasks, activities etc. and having planned and actual dates. The ASAP roadmap structure is more suitable for this kind of thing, but it does not provide a tab to add the planned and actual dates.
    The SOLAR01 provides the Admin tab for the planned and actual dates, but it has a constraint that the structure it creates is only 2 levels deep. Besides, I don't want the Org Structure, Master Data and Business Processes sub-folders to appear under each task / activity.
    Any ideas if any of the above can be achieved?
    Regards,
    Varun

  • Purchase Order Field and Cost Center Field Non Editable In F-48

    Hi Friends,
    I have a cretain requirmnet to make the PO and cost centre field non editable.I tried through shd0 bt it says i can only cretae Transcation variats for Dialiog tran.Please help
    Regards,

    Hi,
    You can speak to your functional people. I think through SPRO "Maintain Field Status Variant' under Financial Accounting ->........
    we can control this.

  • Making Screen fields Non editable in Migo

    Hi TO ALL,
    In MIGO T-code , aganist oubound delivery under Batch Tab i want to make fields Non editable.
    I am unable to find suitable exit for this,can any body help me regarding this.
    Thanks

    Hi,
    Use Transaction variant (Tcode : SHD0) to make fields display only.
    Regards,
    Ashok.

  • How to set the field non-editable in the classical report..

    Hi..
              How to set the field non-editable in the classical report..

    Hi experts,
    For the component 'ICCMP_EMP_SRCH' there is a view 'BUPAEMPSEARCH' , which has 2 context nodes 'CUSTOMER' AND 'SEARCHEMPLOYEE' , i need to add the field 'NICKNAME' which is part of the 'CUSTOMER' context node on the search screen. Currrently all the fields on the screen screen are from the 'SEARCHEMPLOYEE' context node. when i did the configuration , the 'NICKNAME' field is greyed out . I have already generated the Getter ,Setter , GET_I, GET_M methods for the 'NICKNAME' field and the context node and controller class and context class are all active .
    on debugging the GET_I method, i see that rv_disabled = 'TRUE' and the current = collection_wrapper->get_current( ) is returning empty value .
    for this rv_disabled to be set false , the code below is not triggered since there is no value in current.
    IF current->is_property_readonly(
    'NICKNAME' ) = abap_false. "#EC NOTEXT
    rv_disabled = 'FALSE'.
    ENDIF.
    when i check for other search fields of context node 'SEARCHEMPLOYEE' , all the fields are set to rv_disabled = 'FALSE'.
    can anyone suggest how to approch this. iam i missing any binding between context nodes or any activations ?
    The field properties are set as Input field and the display checkbox is not checked.

  • Display of Item Level Fields in Complaint Search Result

    Hi,
    We have enhanced the complaint search result screen to display columns such as item category or code group. These values come from the item level, so the result list displays blanks under these columns. Is it possible to populate these fields? Something like, displaying multiple rows for the same complaint, with different values for item level fields in each row?
    For example, there is a complaint with 3 items. The user searches for complaints based on some header field, and this complaint is in the result list. Is it possible to display 3 different rows for the same complaint, with the value for Item Category being different for the 3 rows?

    Hi,
    Yes, this is possible but it a custom development.
    We had similar requirement where we needed to search all searvice orders and complaints belonging to an item category.
    We created a Z-search component for this and implemented the logic .
    If the complaint search component has item category as a search parameter ( i am not sure) then it will be simple...but it is doesnt have it, then u can include it programatically or using AET ( if you are on 7.0) .
    The result population will be programatic as you will have to search complaints matching to your item category.
    There are large no of item categories per transaction type, so dynamic search takes too much time and times out on web ui..You must supply atleas one valid item category as the basis for your search.
    Thanks & regards,
    Suchita

Maybe you are looking for

  • Boot Camp & 64-Bit Windows Vista Ultimate

    My wife and I purchased the latest top-of-the-line iMac about 10 days ago (3.06 Ghz (Core 2 Duo), 8 GB RAM, 24 inch). We were hoping to use Apple's Boot Camp in order to run a very specific 64-bit application on the Windows side. To our astonishment,

  • CAN YOU PLEASE TELL ME HOW TO RECORD AN ACTION IN PSE 7?  I WANT TO DO SAME ACTION ON WHOLE BATCH.

    COULD YOU PLEASE EXPLAIN  HOW TO RECORD AN ACTION IN PSE 7?  I AM WANTING TO PUT MY BUSINESS NAME ON ALL MY PHOTOS & WANT TO DO IT @ THE SAME TIME INSTEAD OF INDIVIDUALLY.  I KNOW IT WILL SAVE A LOT OF TIME.  THANKS SO MUCH!!

  • No document header data in GL simulation Print preview

    Hi When we perform  General Ledger simulation  in transaction FB01, The screen displays both the header data and simulated line item details, however on selecting print preview, the output does not contain the document header information shown on the

  • Camera connection kit - useless delay Again

    Well, the camera connection kit said 2-3 weeks ship 4 weeks ago, now it says 3-4 weeks, looks like I will be returning 5 of my brand new factory sealed iPads since apple can't seem to get it together, and when the few do come into a retail location,

  • Pop up windows

    In my Safari drop down menu I have the option for block pop up windows check off. Yet, there are a few sites that it will not block the popups. IMDB boards being the main one. Has anyone else had this problem? Any idea why it won't block the popups?