Make field in MIRO display only

Hello Friends,
When entering in invoice in MIRO in the detail tab there is field called INVOICING PARTY I need to make this field display only.  Can someone please lead me to the right direction on how I can make this field display only so no one can insert any info in this field.  Please give me the t-code or the menu path where I can make this change.  Thank you in advance for helping me out in this matter.
Regards,
Monika

HI,
Follow this path:
IMG> MM>Invoice verification>LIV> MAintain item list variant.
On the initial screen put te data:
Transaction: miro
Screen variant:0001_000_0150
Program:SAPLFDCB
Screen number:150.
Press Edit with processing
Miro screen will apprar. Put some Invoice date.
Go to Details TAb. Put cursor in Inv Party field. & Enter.
New screen will open up.
In that screen, Maintain "Inv. Party" to Output Only
Save your changes.
or
create transaction variant, with modified screen 0150 from program SAPLFDCB, where field Invoice party is display only. in tcode SHD0
reward accrdingly
Message was edited by:
        Umakant Bhangale

Similar Messages

  • Need to make Batch Number (CHARG) display only on MSC1N

    Hi, we have a requirement to make batch number field (DFBATCH-CHARG) display only based on user authorization. I have tried implemented BADI BATCH_MASTER and tried to change the screen field property in method SINGLE_FIELD_CONTROL but batch number (CHARG) is not part of the loop for this method.
    Does anybody know BADI or Screen exit for MSC1N that can make the batch number display only?
    Thanks,

    Hi
    Although it's for older releases, see Note 562690 - BAdI BATCH_MASTER: Field selection control, perhaps it helps you
    Regards
    Eduardo
    PD: Other thing, see that it refers to T148F and T148G. Try to add the field CHARG in customizing menu. Ask your MM consultant about implications.
    Edited by: E_Hinojosa on Jul 13, 2011 9:48 AM

  • Want to make one cell/row display only

    Hi experts,
    Please tell me how can i made only one cell or row non editable or display only in a standart tcode say cor6n.
    Thanks & Regards
    Nitin Kapoor

    Dear Muhammad Ashfaq,
    Actually as per my client requirement, they want the auto GR during confirmation. So during the confirmation through COR6N, in goods movement screen, system is purposing the 101 movement for FERT material and 261 for the BOM components. now By saving this confirmation goods receiving (101) done side by side. Now client want that in the goods movement screen when system is purposing the 101 movement for FERT material, the cell containing the quantity of FERT material should not be editable so that user cannot change  the qty. either by mistake or knowingly of fert (finidh) material.
    Hope this will clear my requirement.
    Thanks & Regards
    Nitin

  • Can you make some columns Read/Display Only in DataSheet view?

    I noticed on another posting what appears to be a datasheet view with 3 of the columns in a display mode. Can someone confirm if this is possible?
    Here is the original posting.
    http://social.msdn.microsoft.com/Forums/en-US/sharepointcustomizationprevious/thread/4fa70a67-06e6-44e0-a2fe-94b1707a400a/
    Stunpals - Disclaimer: This posting is provided "AS IS" with no warranties.

    Hi Stunpals,
    This always happens on the column type Multiple Lines of Text .
    And certain columns, such as Created By and Modified, are always read-only. Values for these columns are entered automatically.
    When you open the list in datasheet, click on one the column, if it’s read only, you will see read only in right bottom corner.
    For more information, see
    http://devblog.bardoloi.com/2012/08/sharepoint-2010-datasheet-view-selected.html
    Best Regards.
    Kelly Chen
    TechNet Community Support

  • How to disable the tax calculation field in MIRO screen only for CreditMemo

    Dear Expert
    user want to create credit memo by MIRO transaction .But in table RBKP there no field to trace document ,that is invoice or credit memo document .i want to validate during credit memo, tax & with holding tax cannot calculate .I tried a lot badi but no badi or user exit is controlling at the time selection transaction & validating before save MIRO .
    please help me.
    Regards
    Girish.

    Daer Anup,
    Check the below link where you can capture the current transaction in MIRO.
    http://forums.sdn.sap.com/thread.jspa?threadID=1416227&tstart=0
    CONSTANTS: c_vorgang(23) TYPE c VALUE '(SAPLMR1M)RM08M-VORGANG'.
      FIELD-SYMBOLS: <fs_vorgang> TYPE ANY.
      ASSIGN (c_vorgang) TO <fs_vorgang>.
    CASE <fs_vorgang>.
      WHEN '1'.
      WHEN '3'.
      WHEN OTHERS.
    ENDCASE.
    Based on the value of field symbol you can differentiate.
    Thanks to Pablo who has given this solution in the above mentioned thread.
    The BADI you can use is INVOICE_UPDATE and method AT SAVE .
    Regards,
    Deepak.

  • Industry sector field for display only.

    Dear All,
    Does anybody know the setting to make Industry sector for display only, so that the enduser cannot change industry sector while creating material.
    I know to hide industry sector from DEFAULTS menu, but i need to freeze that field for display only.
    Regards
    Rang

    Hello Ranganath,
    You can use transaction exit. for more information check this thread.
    Industry sector (MBRSH) field in display mode.
    Hope this helps.
    Regards
    Arif Mansuri

  • PL/SQL not reading data in display only field

    I'm using apex 4.0.
    I've found on several occasions where a process did not work because a display only field is not relaying it's information. The item itself displays the information, but if I add another text field and set the new item equal to the original in the "bad" PLSQL code, nothing will display (new text field will display other fields' info). If I switch the errant display only field to a text field, everything will start working properly and continue doing so when I switch it back to display only. Even stranger is the same PLSQL code makes use of other display only items and that portion continues to work.
    Is this a weird bug? Is there something I'm missing that I can do differently (besides leaving it as a text field)?

    I just figured it out. For some reason, "save session state" was set to no. Hopefully this will save someone else much heartache.

  • 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

  • Setting certain fiels to display only in Life and work events

    Hello gurus,
        we are implementing life and work events and are requesting you to give some suggestions, if possible. We have a globl version of the life and work events and in the similar lines, there are life and work events for other countries like singapore, India, Now, the requirement is that certain fields in these countries should be disabled for input. For example, I do not want the date of birth to be editable. Where and how do I go about making changes like these on the life and work events for certain fields to become "display only"?
    Could anybody please suggest?
    thank you,
    Maria Kutty

    Maria I tried what you asked for...but It came as a surprise to me that UI personalization for applications under "L&W Events" with "Ctrl+Right Click" Technique is not possible !!
    Thus according to my understanding... In order to make few fields readonly under "L&W Events" you have to go for NWDI level changes....
    Now as per your specific question "That you want same application to appear differently based on whether it is accessed from L&W Events OR it is accessed from ESS Overview section"... you can follow any of below approach :
    Approach 1:
    1. Modify your application (make fields read only) in NWDI...as per your L&W Events requirement.
    2. Now you can use this modified application as base...to make further changes with "Ctrl+Right click" technique...as then they will be applicable when user access this application from ESS Overview section...
    Approach 2:
    Create 2 separate applications useing NWDI....one for L&W Events...and another one for ESS Overview section....
    For application to be used in L&W Events you make changes using NWDI...
    And for application to be used in ESS Overview section...you can make changes using "Ctrl+Right Click" approach....
    Maria, i have not tried on what I am suggesting you....So please try it at your end and let us know.....if this works.....
    I would be glad if some Expert can comment on this approach further........
    Moreover a very strange part which I found is.....changes made to an application using "Ctrl+Right Click" approach are not visible/applicable when application is accessed from "L&W Events"....
    Which means if you have to make any UI changes under "L&W Events" applications you have to go for NWDI level changes.......

  • Make field editable

    Hello experts.
    I had a trouble with sap crm webclient. I added  standard field (nationality_text) into view. just added, no more. But this field is non-editable, and greyed. How to make this field editable? this field is from but000 table.

    HI Ayrat,
    You can enhance the component and field and generate P method.
    Based on the mode you can change the property of the field and make it editable and display only as per the requirement.
    Sample Code :
    DATA : lv_website TYPE string.
      CASE iv_property.
        WHEN if_bsp_wd_model_setter_getter~fp_fieldtype.
          IF iv_display_mode = abap_false.
            rv_value = cl_bsp_dlc_view_descriptor=>field_type_input.
          ELSE.
            rv_value = cl_bsp_dlc_view_descriptor=>field_type_event_link.
          ENDIF.
        WHEN if_bsp_wd_model_setter_getter=>fp_onclick.
          rv_value = 'clickobject'.
      ENDCASE.
    Please check the impact before enhancing th standard field.
    Regards,
    Akshay Ruia

  • Display Only Screen design

    Hi,
    I have created a screen layout wherein all fields are marked for display only. I assigned this screen layout in a functional authorization for buyers. When I checked, there are still fields left editable such as:
    1. Purch Org
    2. Company Code
    3. Conditions
    4. Line Item number
    5. All fields in account assignment tab of line item
    I want all fields to be display only. How will I do it?

    Hi Jackie,
    If you need all the fields to be in display mode assigned to the buyer. Remove the Authorization of ME21N from the user using the T Code SU01.
    Regards,
    Bijoy Kumar

  • How to make 'Overall Limit' field as display only in ME22/ME22N

    Hi,
    I want to make the 'Overall Limit' field as display only in transation ME22/ME22N (only for Service Items).
    I can make the field display only for ALL Service Items by going to:
    SPRO u2013 IMG - Material Management - External Services Management - Define Screen Layout
    and making the 'Overall Limit' display only for PT1 (Blanket Items). But this also stops any entry into this field even for creation of Purchase Orders! When I try the same thing for ME22 (Change Purchase Order) it does not work.

    Hi
    You can make it greyed out like this:
    Go to materials management -> external service management -> define screen layout -> copy field selection key ME22 -> enter new key as ME22N -> choose category of field selection to 2 -> click on value limit -> make overall limit as display.
    Then for Tcode ME22N, this field will be greyed out.
    Thanks

  • How to make "Data Entry Profile" field input unable or display only in CAT2

    hi ,
    I have requiremnet where I need to make "Data Entry Profile" field in the CAT2 transaction as Display only .That is for each user it should come as default one .
    The reason behind this is , user should not change this Profile and maintain an incorrect timesheet entries.
    Is there any User exit where i can do this ? 
    Let me know as this is very urgent requirement.
    Points will be definately rewarded.
    Thanks .

    Hemant,
    Got SHD0 transaction and create screen variant for that transaction there you can disable that field.
    Create Transaction variant for that transaction and assign previously created screen variant to this transaction varient. actiavte.
    Reward if it helps,
    Satish

  • ME22N - Make fields display only.

    Hi gurus,
    I have the following requirement I don`t know how to solve so well...
    We´ve created a new purchase order type and we need a little special behaviour for it.
    At creation (ME21N) all fields must be ready for input, in the same way that the other PO types.
    However, in modification (ME22N) we need some fields unavaible for input, just display.
    This fields are: Payment Terms (At header level) and Delivery Date (At Position level).
    I've trying some user-exits, but I havent found the way to implement this behaviour.
    Because of that, I`ve trying to let the fields available for input in ME22N and check values at save, showing a message in case of changes. Could anybody recommend me which user-exit use for this verifications?
    Once again, a lot of thanks!

    Hi Ole,
    Did you tried screen variants.Please check this lik want to make few fields as display only in ME21N Check this and tell if need more hlep in this.
    Regards,
    Madhu.

  • How make display only the amount field in table control(infotype 0008)

    Dear Freinds,
    have to make display only the amount field (Q0008-bet01) on table control in infotype 0008 , could you tell me how to make it display only.
    i have tried the below coding it is not working in PBO & PAI of the user exit
    ZXPADU01 and ZXPADU02. For the table control is there any othe method??
           loop at screen.
               screen-name  = 'WA_P0008-BET01'.
              screen-input = 0.
              screen-output = 1.
              modify screen.
          endloop.
    i have tried like this as well
           loop at screen.
               screen-name  = 'Q0008-BET01'.
              screen-input = 0.
              screen-output = 1.
              modify screen.
          endloop.
    in the both the above methods it is not working. Could any one plese suggest me how to make display only the amount field in infotype 0008.
    regards
    syamla

    Dear Freinds,
    have to make display only the amount field (Q0008-bet01) on table control in infotype 0008 , could you tell me how to make it display only.
    i have tried the below coding it is not working in PBO & PAI of the user exit
    ZXPADU01 and ZXPADU02. For the table control is there any othe method??
           loop at screen.
               screen-name  = 'WA_P0008-BET01'.
              screen-input = 0.
              screen-output = 1.
              modify screen.
          endloop.
    i have tried like this as well
           loop at screen.
               screen-name  = 'Q0008-BET01'.
              screen-input = 0.
              screen-output = 1.
              modify screen.
          endloop.
    in the both the above methods it is not working. Could any one plese suggest me how to make display only the amount field in infotype 0008.
    regards
    syamla

Maybe you are looking for

  • FCE HD Output to Sony Trintron Monitor Problems

    I am trying to output my Program Canvas to my Sony monitor, via a Hollywood Dazzle Firewire converter. When the Dazzle is trying to output to monitor, I get a very pixelated image and distorted audio. All the settings under view appear to be correct,

  • Update Java Application

    Hello I have a problem with updating a Java Application.Yesterday i have made a modification to a class from my application but today when i am running the application it still runs the old version.The JAR file doesn't update.What can i do? Thank you

  • Changing width of a custom container dynamically

    Hi, I have an ABAP report that has 2 custom containers on a screen: CC1 on the left, showing a tree and another one (CC2) consuming the rest of the screen. Depending on what node the user selects in the tree (left CC), I would like to dynamically adj

  • How to open Word with Lion?

    After getting Lion, I can't open my documents on 2004 Microsoft Word.  If I bought iwork would it open my documents?  What about Pages?

  • Java versions for OIM install

    Hi, Last time when I installed OIM, everything worked fine, but I was unable to open the workflow manager applet. I think maybe I used the wrong JRE/JDK. Please read below the environment I am using and suggest which Jave version should be used. OS: