Field Not Editable

Dear All,
I got msg when i make manual change in my Order header level Goods recpt tabBATCH field.
I want to make it not editable then how can it be possible?

Hi Maulik,
That's what I had asked you in your earlier thread?And reply too regarding this query.
[Standard SAP Message|Standard SAP Message]
And if I am not wrong, you want to restrict that manual Batch creation, correct or nor?
If yes then there are some other ways by which you can control it.
- Transaction Variant
- User Exit
- Authorization control.
Regards,
Dhaval

Similar Messages

  • How to make fields not editable in screen

    Hi gurus,
    I have a table and i need to make some fields not editable depending on the values of other fields of the table .
    Example :
    my table have these fields : begin_date, name.
    If the begin_date < sy-datum  -->  then the field  ' name' should not be editable.
    Tankyou.

    Hi,
      OK. I did some code and was able to get the results as you want. Created a table YTESTHV with two fields YYDATE and NAME. Generated a two screen maintenence for the table. Screen 2 - Overview screen, screen 3 Detail screen.
    Overview screen.
    PBO.
    PROCESS BEFORE OUTPUT.
    MODULE LISTE_INITIALISIEREN.
    LOOP AT EXTRACT WITH CONTROL
      TCTRL_YTESTHV CURSOR NEXTLINE.
       MODULE LISTE_SHOW_LISTE.
       MODULE DISABLE_FIELDS.
    ENDLOOP.
    MODULE DISABLE_FIELDS
      move extract to YTESTHV.
    if YTESTHV-yydate > sy-datum.
       loop at screen.
        if screen-name = 'YTESTHV-NAME'.
         screen-input = '0'.
         modify screen.
         else.
         screen-input = 1.
         modify screen.
        endif.
        endloop.
    endif.
    Details screen PBO.
    PROCESS BEFORE OUTPUT.
    MODULE detail_init.
       module change_mode.
    module change_mode
    if YTESTHV-yydate > sy-datum.
       loop at screen.
         if screen-name = 'YTESTHV-NAME'.
           screen-input = 0.
           modify screen.
         endif.
       endloop.
    endif.
    When YYDATE is greater than sy-datum field NAME is display only.
    Regards,
    Himanshu

  • Adobe Interactive Form text field not editable

    Hello,
    I created an Adobe Form using transaction SFP and placed a textfield on the body page.
    I then created a Web Dynpro application using SE80, placed Interactive Form container on the view. I also checked the flag 'Enabled' and provided the templateSource as my Adobe Form name.
    When I test the WD application, the text field is not editable.
    Can you please advise what needs to be done?
    Thanks
    Sagar

    Hi...
    Place the following code in domodifyview
    data:
        lr_interactive_form type ref to cl_wd_interactive_form,
        lr_method_handler   type ref to if_wd_iactive_form_method_hndl.
      check first_time = abap_true.
      lr_interactive_form ?= view->get_element( 'INTERACTIVE_FORM' ).
      lr_method_handler ?= lr_interactive_form->_method_handler.
      lr_method_handler->set_legacy_editing_enabled( abap_true ).
    Thanks
    Gopal.

  • IH01Functional Location field NOT EDITABLE

    Hi,
    We are facing a problem when we enter IH01screen, it shows functional locationa field as NOT editable.
    But with some other user ID its editable.
    We have checked the roles and authorizations but its fine.
    Kindly guide.
    Regards
    DM

    Hi Deepak,
    you must be using 4.7 or above versions.In that case you need to set the Parameter ID
    PM_TREE_INACTIVE as X in your user settings through SAP easy access      System>User Profile>Own Data 
    Try this and confirm if u still face problem
    Regards
    Manish

  • AP Invoice Tax Amount Field not editable

    Hi all,
    The tax amount (LC) field on the AP Invoice field is not editable. What tax setup do I need to do to allow the tax amount to be editable. All of our sales transactions are tax exempt, however, we need to pay tax to some of our service vendors.
    Thanks,
    Jane

    Hi,
    It is Standard SAP B1 behavior, Tax Amount is editable in Purchase Documents and not editable in Sales Documents.
    You have to frame the tax formula to match the amount correctly.
    Do you want to enter in your own tax amount?
    Did you check the form settings for Tax amount?
    It is not a problem, its standard SAP B1 behaviour so you can click the link(Orange) button of row level Tax amount
    and open the define  tax amount distribution window. put the tax amount in the row level and update.
    Thanks,
    Madhan.

  • BROWSER BASED PI SHEET INPUT FIELDS NOT EDITABLE.

    Hi Gurus,
    I am working on browser based PI sheet. I am able to generate PI sheet but input fields for Browser based PI sheet are not editable. I can not post my entries in T. Code:CO60.
    This is happening to all recipe Groups also.
    Please give inputs. Thanks in advance.
    Regards,
    Pradeep

    Hi Dhawal,
    I am using process Instruction Type 0 (Universal Type) for Process Instruction Category.
    I am using browser based PI sheet. It is getting generated but I am unable to Put information in Input
    fields to post data.
    When I see error logs I get following Error:
    Data transfer to the server: data contains error.
    I am not using PI category 7 in master Recipe.
    Same settings I am using in another client and it is executing. But for this server I am facing Problem.
    Can I have your contact no. so we can discuss in detail.
    Pradeep
    9820969465
    Edited by: PRADEEP on Mar 20, 2009 4:54 PM
    Edited by: PRADEEP on Mar 20, 2009 4:56 PM

  • How to make entriesinto table with out first field not edited

    hi everyone,
    I'm new to SAP ,the task provided to me is to display the data in the display fields when the particular cell in table is selected
    at the same time a button is provided make new entries into the table by clicking a button
    but when iclick the new entry button the row which is already selected getting erased temporarily
    but when i update the new record and save it it is also shown along with new record
    the code i used is here below
    method onactioncreate .
    DATA:
          node_expenseset                     TYPE REF TO if_wd_context_node,
          elem_expenseset                    TYPE REF TO if_wd_context_element,
          stru_expenseset                    TYPE if_exp_main=>element_expenseset .
    *   navigate from <CONTEXT> to <EXPENSESET> via lead selection
        node_expenseset = wd_context->get_child_node( 'EXPENSESET' ).
    *   @TODO handle not set lead selection
        IF ( node_expenseset IS INITIAL ).
        ENDIF.
    *   get element via lead selection
        elem_expenseset = node_expenseset->get_element(  ).
    *   @TODO handle not set lead selection
        IF ( elem_expenseset IS INITIAL ).
        ENDIF.
      clear stru_expenseset.
    *   get all declared attributes
        elem_expenseset->set_static_attributes(
          exporting
            static_attributes = stru_expenseset ).
    *  data:
    *    node_expenseset1                    type ref to if_wd_context_node,
    *    elem_expenseset1                    type ref to if_wd_context_element,
    *    stru_expenseset1                    type if_exp_main=>element_expenseset1 .
    ** navigate from <CONTEXT> to <EXPENSESET1> via lead selection
    *  node_expenseset1 = wd_context->get_child_node( name = if_exp_main=>wdctx_expenseset1 ).
    ** get element via lead selection
    *  elem_expenseset1 = node_expenseset1->get_element(  ).
    ** alternative access  via index
    ** Elem_Expenseset1 = Node_Expenseset1->get_Element( Index = 1 ).
    ** @TODO handle non existant child
    ** if ( Elem_Expenseset1 is initial ).
    ** endif.
    *clear stru_expenseset1.
    ** get all declared attributes
    *  elem_expenseset1->get_static_attributes(
    *    importing
    *      static_attributes = stru_expenseset1   ).
    endmethod.
    here both table and drill down report are binded to same node
    can any one send me the code to clear only drill down report contents
    thanks & Regards
    Madhu

    Hi madhu,
    Try the following code to create new entries in the table on action of the create button
    DATA:
          node_expenseset                     TYPE REF TO if_wd_context_node,
          elem_expenseset                    TYPE REF TO if_wd_context_element,
          stru_expenseset                    TYPE if_exp_main=>element_expenseset .
      navigate from <CONTEXT> to <EXPENSESET> via lead selection
        node_expenseset = wd_context->get_child_node( 'EXPENSESET' ).
      @TODO handle not set lead selection
        IF ( node_expenseset IS INITIAL ).
        ENDIF.
      create new element
        elem_expenseset = node_expenseset->create_element(  ).
    *Bind the element to the node 
      node_expenseset->bind_element(
                   new_item = elem_expenseset
                   set_initial_elements = abap_false
    *set the created element as lead selected
      node_expenseset->set_lead_selection( element = elem_expenseset ).
    Edited by: krishna chandra on Nov 29, 2010 1:30 PM

  • CRM Fiori Apps - My Leads, My Opportunity - some fields not editable

    Hi,
    In CRM MyLeads and My Opportunities, display part is working fine. We are able to get the list of Opportunities and Leads. But when I try to Edit a Lead or an Opportunity, I am not able to type in anything to the "Name " field and in Leads even when I select a date it doesn't get displayed in the date field. And the "Name" field is marked mandatory as well.
    We have the below note to be applied only for SPS04 right? We have CRM EHP2 SP06. Is the problem becasue we havent applied this note??
    Back-end server (SPS04)
    1997580
    Employee responsible set as blank
    Thanks
    Vishnupriya

    Hi Vishnupriya,
    It seems that mandatory notes are missing. It is better you to apply the SP02 and notes.
    UIX02CRM SP02:
    2077150 - Corrections for Fiori App: My Leads
    2076439 - Corrections for Fiori App: My Opportunities
    2075836 - Corrections for Fiori App: My Tasks
    2073429 - Corrections for Fiori App: My Appointments
    2069769 - Corrections for Fiori App: My Appointments
    GBX02CRM SP02:
    2081930 - CRM Fiori: Unable to delete a participant in My Opportunities or My Leads app
    Regards, Masa
    SAP Customer Experience Group - CEG

  • Incoming Payment Check No. field not editable directly

    SBO 2007A, PL 42
    Banking >> Incoming Payments >> Payment Means
    When I am entering an incoming check from a customer, on the Payment Means window, I can't click in the Check No. field and enter data, but if I tab over it to it from the amount field, I can.
    Is this by design or a bug? What's the point of it?

    Hi Cindy
    It works fine on mine .Is that you are having problem when you enter incoming payment at first time or when you are trying to edit .
    It is working fine on mine .I can put check number .
    What patch level you are in ? which SBO version
    Thank you
    Bishal

  • Po tax field not editable..

    Hi, SAP Gurus,
    field  PO OINV.CURCOURCE  is locked... how to unlock that particular Screen Field...
    i appreciate your help..
    Thanks and Regards,
    kaviprashu

    Hi,
    Thanks Gordon, i am facing this problem in PO, in PO after selecting particular Vendor from Choose From List (F4 Help), field  CurSource is disabled.., and its default CurSource value is INR. 
    i think that if the vendor is not foreign, Field CurSource is disabled by SAP with that country's default Currency , here INR.
    Thanks and Regards,
    kaviprashu..

  • Fields not editable - Catch 22

    *Never mind - issue solved....
    Edited by: Cote Adams on Feb 27, 2009 8:15 PM

    Hi,
    Sounds interesting, but i need some clarification .
    All this happens in PAI in 'user commad module '.
    This is actuall  code .
          if gv_user_from is not initial and
             gv_user_to   is not initial.
    *check if FROM exist
            read table i_lrf_wkqu with key bname = gv_user_from.
            if sy-subrc = 0.
              message e105(5a) with gv_user_from.
            else.
              gv_tabix_from = sy-tabix.
            endif.
    Edited by: Krsto Gjergja on Jun 1, 2010 1:00 PM
    Edited by: Krsto Gjergja on Jun 1, 2010 1:05 PM

  • Release Date in Get Info always 6/5/1905 and not editable?

    In Get Info, in the new iTunes, the Release Date is not editable.  However, when downloading books and importing into iTunes, the Release date is always 6/5/1905.  Now I don't think either music or books or anything likely to be downloaded was released in 1905, so, why is the field not editable?
    Thank you,
    Laura

    Actually I never noticed a field called "Release Date" in Get Info of previous versions, only Year.  And there is no Release Date field shown in any of my music Get Info.  If I try to access Get Info for albums, it asks me if I want to "edit information for multiple items."  If I click on Edit Items, there is still no Release Date field - just Year.
    However, not one of the Release Dates are correct in any of the books, i.e. those imported into iTunes both before and after the latest "upgrade."   AND the Release Date column is blank for them all.  So what is it for, anyway?
    It is a pity that, if it isn't editable, it should be able to be removed or added depending on the need.
    Just found out another weirdness.  In the Audiobook List Genre is no longer there.  It is in the Playlists, thank heaven, but not in the master list where it really should be.  It IS in Music, but not in books.  How weird.  I hope that is an oversight and will be fixed.
    Thank you for your response.

  • Batch number field in Handling Unit detail (VT01N) is not editable

    Hi, Does anyone know how to turn the batch number field (screen field HUMV4-CHARG in program SAPLV51G screen 6410) editable?
    Right now, it is not allow us to specify the batch for delivery line item if there are multiple batches for the same line item when the item is packed into a handling unit.
    The batch number is in the delivery table but it will not come into the shipment table when the delivery is added to the shipment, nor the field is editable for user input.
    Please help!
    Thank you,
    Minami

    HI,
    If you are doing online check for userexits/customer exits....
    For userexits u can check in the subroutines node in se80(Program->SAPMV50A)....Please check the same.
    for customer exits ->SMOD->F4 help->Specify the package as 'VL' and see the ehnacements and then the funtion exits.
    Regards,
    Nagaraj

  • Custom field added by AET  is not editable

    Hi All,
    I have created 2 fields in for ERPADMINI BOL node. but these fields are not editable. The attribute properties are coming as Read only at runtime.
    How to make these fields editable ?
    I have searched in forums but couldn't find any solution, please help.
    Thanks
    Krishna

    Hi Bhushan,
    The code was there already for some of the fields.. same way i added for my field, but no luck ..
    Below is the code. Last field 'ZZPRDCT_SPECIFI' is my field.
    IF iv_object_id EQ 'ITEM'.
         CLEAR ls_supply.
         ls_supply-field = 'ZZDEAL_CODE'.
         ls_supply-check = 'N'.
         APPEND ls_supply TO ct_supply.
         CLEAR ls_supply.
         ls_supply-field = 'ZZRANDOM_LENGTH'.
         ls_supply-check = 'N'.
         APPEND ls_supply TO ct_supply.
         CLEAR ls_supply.
         ls_supply-field = 'ZZERROR_CODE'.
         ls_supply-check = 'N'.
         APPEND ls_supply TO ct_supply.
    CLEAR ls_supply.
         ls_supply-field = 'ZZDSCAL'.
         ls_supply-check = 'N'.
         APPEND ls_supply TO ct_supply.
    *-> José Sabino - 15.01.2013 - End
    *-> exrodrg - 06.05.2014 - Begin
        CLEAR ls_supply.
         ls_supply-field = 'ZZPRDCT_SPECIFI'.
         ls_supply-check = 'N'.
         APPEND ls_supply TO ct_supply.
    ENDIF.

  • Username field in BP not editable

    Hello,
    In my SAP CRM 5.0 field user name in tcode BP on business partner in role employee "bup003" is not editable.
    This is not editable for BPs with numbering EM.... .
    For others it is editable.
    Numbering EM is set in HRALX configuration in table T77S0.
    What could be the reason?
    My config in T77S0 looks like this: (pbphr, 0prol, 0subg were changed today, and it still does not work )
    HRALX     HRAC     X
    HRALX     MERID     X
    HRALX     MSGRE     0
    HRALX     OADBP     
    HRALX     OADRE     
    HRALX     OBPON     ON
    HRALX     OBWIG     X
    HRALX     ONUMB     3
    HRALX     OPROL     BUP004
    HRALX     OSUBG     OR
    HRALX     PALEO     
    HRALX     PALEP     
    HRALX     PBPHR     ON
    HRALX     PBPON     ON
    HRALX     PCATS     
    HRALX     PINAC     
    HRALX     PLEVE     3
    HRALX     PNUMB     3
    HRALX     PPROL     BUP003
    HRALX     PQUAL     
    HRALX     PRTON     
    HRALX     PSUBG     EM
    HRALX     PSYNO     
    HRALX     PSYNP     
    HRALX     USRAC     X

    According to SAP note 934372 point 6 this behavior is standard in CRM 5.0 for Employees transferred from HR in order to prevent inconsistencies in data.

Maybe you are looking for

  • Photoshop Elements 10 will not open.  I get Error message that says "Runtime Error!" and closes.  What do I do?

    Help.  Photoshop Elements 10 will not open.  I get Error message that says "Runtime Error!" and closes. What do I do?  What does it mean?  I bought Elements 10 at a retail store.  It did work for a while.

  • How to use java classes of DC1 in DC2

    When I was trying to use a java-class from another DC, I stumbled into an error I didn't expect: java.lang.NoClassDefFoundError: com/company/application/utils This is what I did to get this far: 1. Created an empty Web Dynpro DC (DC1), to be used as

  • Debug and release desktop app as mobile

    I built an app in Flash Pro where I could easily export an AIR app for desktop and an Android app. I have now moved it to Flash Builder and am not sure how to accomplish this. It is currently a Desktop app that bilds a release fine. Now, how to get a

  • Indian Bengali Language in SAP ECC 6.0

    Hi All, I have a requirement to use Bengali Language for log in into SAP system and also display report output and smartform output having both English and Bengali text. I have followed SAP Notes 42305, 742662 and 812821for importing Bengali language

  • Searching for a Special Soundc

    Hello, sry for my bad english i'm german I have a pc with a cheap soundcard, which has a optical sound input. At this soundcard i use the creative T7900 7. sound system. Now i want to connect my XBox360 to the soundcard via optical sound input. But m