To disable one field of standard sap screen.

Hi,
I want to disable one field of standard SAP screen for example
tran code : MD61
Field : Version.
Can Anybody suggest me with simple coding.
thanks
naresh

Naresh,
I guess this can be done using Transaction Variant SHD0.
Just try to check the links related to transaction variant.
1.go to SHD0
2.give the transaction as MD61     
3.Transacation variant as zmd61
4.now press create button
4.Here you will get to see the initial screen on MD61
5.Press enter
6.You will get to see the field attributes in a screen called 'Confirm Screen entries"
7.There you can make a field as required/invisible/ouputonly.
Do check other links available in SDN for more info.
K.Kiran.

Similar Messages

  • How to populate fields in standard SAP Screen

    Hi,
    There is one client requirement in <i>Create: Customer</i> transaction. (<b>T Code: XD01</b>)
    Go to transaction XD01. You get pop-up screen (Customer Create initial screen).  Enter the details required like account group, company code, etc.
    Now you get Create Customer General data screen. In this screen there will be tab like address, control data, Contact person etc. Initially control will be in Address tab.
    In address tab Language will be defiantly displayed (egs: English). (Screen details as in 1* below.) If you don’t find on screen scroll down the tab.
    Enter all the details and then you go to tab contact person. There you will enter one person as contact person and then you click on Home address Push button (which is below the tab strip.)
    On clicking home address push button one pop-up screen will be displayed.(Screen:  Contact Person: Home Address Create )
    In this screen there is also a language field (Blank now, mean no value..) (Sceen details as in 2* below.)
    Customer wants that this field is to be populated with the data of tab Address tab.
    How to do this. Could you please reply to this query ASAP. If I need to ask SD Consultant for any requirement please tell me what to ask. To them.
    Screen details: (got by technical help.)
    1*:
    Table Name        ADDR1_DATA
    Field Name        LANGU
    Data Element      SPRAS
    DE Supplement     0
    Parameter ID      SPR
    Screen Field      ADDR1_DATA-LANGU
    Program Name      SAPMF02D
    Screen Number     7000
    2*
    Program Name      SAPLSZA7
    Screen Number     0501
    Program Name      SAPLSZA7
    Status            ADDR0500
    Table Name        ADDR2_DATA
    Field Name        LANGU_P
    Data Element      SPRAS
    DE Supplement     0
    Parameter ID      SPR
    Thanks in advance. Please reply ASAP. Please let me know idf you need any further details.
    Regards,
    Vidyaprasanna.

    Hi Prasanna,
    You need to modify the code.
    you can do it in two ways.
    1  -  in the PAI of 1st screen you can use SET PARAMETER  for parameter SPR.
    Then in the next screen popup, it will automatically show the langu value.
    2  - in the pai of the popup screen, you can use GET PARAMETER statement to get the value of parameter SPR and then set this value to the screen field.
    In both the cases you need to modify the standard program.
    Hope this helps.
    Sajan.

  • How to add new customise field in standard SAP ME28 Report?

    Hi Anybody,
             How to add new customise field inside Standard SAP Screen report ME28?.
    Anybody, Please tell me how to do?.
    Thanks,
    Regards,
    S.Muthu.

    Hi Subramaniyam,
    You can find enhancement in me28 by following steps and then apply your logic in include of this enhancement.
    cmod>Give a project name>in enhancement column give the package name ME >f4>in package write ME-->ENTER>It will show you all enhancements available in me28> find which ever suits your requirement>save > click on components> from there you can make changes in include program.to add that particular field.

  • How to populate a field in a standard SAP screen through FMs and Workflows

    Hello Everyone,
    I have a requirement in which I have to populate a field in an standard SAP Screen.The logic for finding the value of the this field will be done in a new FM and this value has to be passed to this field on the standard SAP screen through workflow.I am new to workflows and need some quick help.Kindly let me know the basic steps I need to follow to realise this requirement.
    Thanks,
    VP

    Hi,
    You can create the task in the workflow which contains the method in which you set the value of the field in standard screen using set parameters id and the aprameter name attach to the field

  • Adding field in standard SAP transaction output results.

    Hi,
    I have to add a new field in standard SAP transaction output results.
    Can any one tell me what are the ways (brief explanation) that I can do this?
    If using exists - then what kind of exists I have to use? And how to find out the possibility with user exists?
    Thanks for your time.
    Thanks.
    Chris.

    Hi,
        There are so many ways to find out the user exits.
    Hi,
    To see SAP Exits -> Use Tcode SMOD
    To See create a project for Customer Exits -> Use Tcode CMOD
    There are projects to which Exits are assigned. Selects the relevant projects.
    What is User Exit:
    http://www.sap-img.com/abap/what-is-user-exits.htm
    How to find then:
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    All Exits List:
    http://www.easymarketplace.de/userexit.php
    Do a search on SAP Exits, Customer Exits, enhancements, etc
    Step 1 :- Execute transaction
    step 2 :- Click on Status Menu
    step 3 :- Double click on the program (screen) __?????___
    Step 4 :- Search source code for the 'Customer-Function' string using the find button. Remember to select 'In main program'.
    Step 5 :- A list of search results should be displayed indicating where all function exits can be found.
    You can now double click on each of them to go to its position in the source code. This also
    allows for the insertion of breakpoints so that you can test if the exits are called in the
    appropriate place.
    Step 6 :-Once you have found the Function Exit within the source code (Find Function Exit) you need to
    access the actual function module it executes. This is done using the following steps:
    Step 6.1 :-
    Step 1
    Locate desired 'Call Customer-function' statement within source code.
    Step 2
    If code is not within main program (module pool) e.g. SAP* then you will need to find this
    out by selecting 'Main Program' from the 'GOTO' menu. The Main program for transaction
    Step 3
    The actual function module name can now be calculated based on the information retrieved,
    it is defined by the following format:
    EXIT_<Program name>_<Exit number>
    eg :- 'EXIT_SAPLMR1M_004'.
    Step 7.1:-
    Once you have found the Exit function module
    Step 1
    Execute transaction CMOD
    Step 2
    Select 'SAP Enhancements' from the 'Utilities' menu.
    Step 3
    Select 'All selections' from the 'Edit' menu.
    Step 4
    Now populate the Component name field with the exit function module and press
    the execute button.
    Step 5
    A list of all Exits(Enhancements) containing that function module should now be displayed.
    Step 5
    You can now double click on the desired exit to display a detailed description of its uses and a list of all
    components contained in it.
    Implementing Function Exit
    This is required in-order to activate Function exit:
    Step 1
    The first step is to enter source code into function module in the usual way i.e. via SE37.
    There will already be an include declaration within the code with the following
    format: Include zx*.
    Double click on this to create it, source code can then be entered within here.
    Although it is good practice to create another include with this to store your
    code, this allows separation of difference enhancements allowing them to be easlity
    removed without de-activating the enhancement.
    Step 2
    Execute transaction CMOD and create new Enhancement. Enter name and press the create
    Button.
    Step 3
    The following screen should be displayed, enter short text then click on the 'Enhancement
    Step 4
    Now enter the Exit name (enhancement) which contains the desired Function Exit.
    Step 5
    Return to initial screen of CMOD and press the activate icon. The exit is now ready for use.
    Please Mark The Helfull Answers & close the thread.
    regards
    dj
    reward for all useful answers.

  • How to enter values in the fields of standard SAP Infotype e.g. IT0024

    Hi,
    How to enter values in the fields of standard SAP Infotype?
    e.g. I want to enter values in infotype IT0024(Qualifications) in the field AUSPR(Profincy):-
    1-Level 1
    2-Level 2
    3-Level 3
    4-Level 4
    5-Level 5
    Thanks,
    Ameet

    Hi Divya,
    I checked with the screen and report which is mentioned by you. But I want to modify/make changes that should appear in the screen when you view details for a particualar employee in Qualifications(IT0024).
    Please refer the screen 2000 of module pool MP002400 in SE80. In that screen I want to make change as listbox with key.
    Can it be achieved in the same way as mentioned by you before by making standard SAP report as Z and then modify using layout editor?
    Please help me out. I think I am almost there.
    Thanks,
    Ameet

  • Input data to the standard SAP screen .

    How to input data to the standard SAP screen . ?
    i am using BADI HRHAP00_ENHANCE_FREE to add some functionality to the screen of transaction PHAP_CREATE.
    =================================
    i am calling this FM 'F4IF_INT_TABLE_VALUE_REQUEST'
    in the BADI and i have to update the fields in the screen of the main program which is calling this BADI (HRHAP00_ENHANCE_FREE).
    This BADI is called at the button click .
    ZOBJECT_TABLE is a Z- table with values out which we have to select the value.
    and the value should be filled in the screen field as we select the record from the help.
    ====================================
    the screen is SAPLHRHAP_UI_DOCUMENT -
    SCREEN  3100
    The elements doesnt even have parameter ids .
    please suggest me how can it be done
    thanks in advance .
    Naval Bhatt

    Hi,
    I have solved the problem and my work is done properly.

  • How to pass variable value to field of standard sap transaction.

    Hi Experts,
       i want to pass the value of variable to field of standard sap transaction. but that field is not having the parameter ID. so please tell me how i pass the value to field.
    thanks in advance.

    You might like to provide a few more details of which field and transaction you are trying to interact with... typical solutions involve user exits / BAdIs / Enhancements, or transaction variants, or building a BDC to part fill the screens of the Tcode you are calling.
    Jonathan

  • Changing the text of Text field in standard SAP transaction.

    Hi expert,
    I have a requirement in which i have to change the text of Text field in standard SAP transaction.
    Is it possible? If so, how?
    Any pointers will be highly appreciated.

    Hi,
    I think you want to change the field label of the text field.
    For ex in tcode MM01, you can change the field label of Material text field.
    The description of the field label comes from the data element it is associated with. To change the text of the field label, you have to change the field label of the data element.
    But it will effect all the fields associated with this data element.
    To change the field label of the data element go to tcode CMOD. Then click on GOTO->TEXT ELEMENTS->KEYWORDS->CHANGE.
    Then enter the data element which is to be changed. In the next screen, change the field label and save it.
    Regards,
    Vinod

  • Create ZField on Standard SAP Screen [Frame]

    Hi...
    Required to add a new zfield to standard SAP screen of infty 0006.
    After Street...i have to add house no field...
    That too have to add exactly side of that street field...
    Is it possible to add using pm01?? if yes, how?
    Any other ways....???
    Regards,
    Veeranji Reddy P.

    By anyway can I do this?

  • How to change the GUI title of a standard SAP screen

    Hi Gurus
    Could u pls help me on this
    I want to chnage the GUI title of a standard SAP screen without modifying the standard code.
    Thanks in advance
    Regards
    Swatantra

    Hi Vijay,
    Without a Modification, this will not be possible. If you're very particular about having your title, then is there any reason for avoiding modifications of SAP objects ?
    Regards,
    Anand Mandalika.

  • Searching field name in sap screen

    Hi, is there any easy way to search for a field name in sap screens, like control+F in ms applications. i am searching for "calc formula" in qs21 screen. how to find the same field in qs21 screen.

    Hi,
    we are not clear what you are looking for.
    QS21 is a transaction to create Master inspection characteristic.and in the initial screen there will not be any field like Cal c formula.
    If that charateristic has to be created as Calculate characteristic,then we need to check teh radio button in control indicators inside Qs21.then the we need to assign the formula.
    Please explain what exactly you want.

  • BDT add fields to standard SAP tabel on BP screen

    With this email I would like to report a problem I have with the BDT to show extra fields on a table control in the businesspartner masterdata. I hope you can help me and tell me what I am doing wrong or why I cannot show these new fields.
    The SAP Module is FS-CS (Commissions). On the businesspartner there is a tab screen with contractdetails. We want to add two new Z-fields to the table control and we have added these fields to an append structure in the CACS_CTRTBU table. I have put the extra fields to a new fieldgroup and put the fieldgroups on a new view added the view on a new section, defined a new screen and finally added the screen to a new screen sequence. The original screen has now been replaced with the new screen with the extra fields.
    In the screenpainter I defined a new screen for the new view by copying the original function group of the original screen together with all functionmodules. I added the new fields of the newly defined fieldgroup to this screen.
    I registered the new functionmodules for the events ISSTA, ISDAT and ISDST in customizing for the new defined application.
    Within the programme there is a structure used called CACS_S_BUPA1. I have added the 2 new field also to this structure.
    If I look in my sourcecode in the PBO then I see that the internal table has stored the values of the new fields together with the values of the original fields.
    Still if the screen comes up, the values for the new field are not shown and the old(orignal fields) are shown. The new headers and colomns in the table control for the new fields are visible.
    Do you have any idea what the problem might be ?
    Kind regards,
    Peter Jonker

    Thanks for your reply, the tip of the fieldgroup has helped me and my colleague who also had a BDT problem, his problem was that changes on fieldgroup level were not saved. Once he changed to the range 6xx with his fieldgroup the problem was solved.
    My problem has been solved too, although I am not sure if it had anything to do with changing the range of the fieldgroups, it probably did.
    I had done the whole designing from scratch again, but this time using fieldgroups in the range 6xx. Now it works fine.
    Strange thing is that in the SAP Help it says to use fieldgroups in the range 600- 799, while the 7xx range will give you problems. The 900 range, as you suggested, also gave problems. In our case the 6xx range was the right one to use

  • User exit for field addition on standard SAP Screen

    Hi,
    I want to add one customer specific field on notification at header level. I have found one enhancement i.e. user exit QQMA0001, which says that this is to be used for adding the extra field on the notification header. Now my question is that
    1. If I have to add the field, how user exit can help (I am aware that user exist consists of the function module, screen exit, programme and includes. Now do I need to use the screen exit for this or something else?)
    2. Other question is that before going to screen exit in the above step, do in need to add the field in structure VIQMEL and the respective table QMEL or when the table QMEL is updated then the field in structure VIQMEL will get auto updated.
    3. If the step 2 is only sufficient, then why is the need of step 1, I mean what is the point in considering the user exit i.e. we can simply update the QMEL data table and then this field will get autoavailable on the structure and after going to SE51, if we view the field added, then we can place it wherever we want on the screen of notification.
    Request for the reply.

    Thanks Pete,
    I am not a developer and a functional person and right now i am in very initial phase with no developer around.
    I got most of the points you mentioned here
    Creation of data elemnt
    Append the data table
    Create the new subscreen for the main programme and then assign this subscreen to the notification type in SPRO.
    If i am rightly followed then my questions are
    1. What is the role of user exit here?
    2. Why functional module is required here?
    3. SE51 transaction you mentioned is the screen painter, Is it possible to create sub screen there. If no then where the new sub screen will be created i.e. T code in ABAP.
    And the fianl question is that -
    I f i succeed in attaching the subscreen to the notification type and my sub screen is only for one field then is it possible for me to set it up as a header data and place it anywhere below the notification user status field because i dont want to display it as subscreen bu header level information.
    Thanks

  • Adding new fields from CI Include to Standard SAP Screen

    Hi All,
    I am enhancing Infotype 0487. I have added new fields to the CI include and created the screen fields in subscreen 0200 with reference to the data dictionary fields. When I test the subscreen alone, the new fields are displaying correctly and F4 help is active. But when I view the whole screen(2000) in PA30, the new field is inactive and I am not able to enter data. Also F4 help option is present for the field but when it is selected, a message 'No Values Found'  is displayed. Please suggest some solution.
    Thanks in advance
    Regards,
    Sivasankari
    Edited by: Julynila on Oct 7, 2010 10:41 AM

    Hi,
    This might be the standard transaction, so there is a possibility of adding the fields using the Screen variants using SPRO, get in touch with your functional consultant. there you can copy an existing screen and add the required fields and rename the screen to different number, and in the config this new screen can be added.
    Thanks,
    Srini.

Maybe you are looking for

  • Using Windows Media Player to transfer fi

    Hello all! This is my first post to the forum. I received a Nomad Jukebox Zen Xtra 60GB for Christmas and have encountered a few problems. I am using WMP for transfering files to the player and after during the transfer of the 5th album, the last fi'

  • Start IC WebClient with URL Parameters

    Hi, we are currently implementing IC WebClient 5.0. One of the customer needs is it, to start the IC WebClient with a service order ID, so that the order is displayed immediately without searching and confirming an account. Is it possible to start th

  • End of Support Life for CF MX 8

    With the release of ColdFusion MX 9 has an end of support life been announced for CF MX 8?

  • Options to insert a BigInteger in a file

    Good days, As the title says, this more than a doubt is a search of alternatives. I have a program that performs calculations whose result is a number of several dozens of thousands of digits saved in a variable of type BigInteger. At the moment of r

  • Write Record to File

    Hi all I am now doing a java program to query result from SQL Server and write the result to a file. My problem is that our SQL Server stores Chinese wordings with unicode, after the program query the result and it fails to write those Chinese wordin