Making screen field mandatory

hi can any one help in making the field email as a mandatory in su01 t-code and kindly help with process where to go and what are the steps do i take to make the field mandatory

Go to SHD0,
give the transaction as SU01 and give the name of transaction variant for example 'USR1'. click create. Since your requirement is only for email give some dummy name and click on create. In the next screen give some dummy name and enter and continue till you reach the screen with this title "Screen values 0900 Program SAPLSZA5" . In this screen for the field 'Email' check the box under 'required' column. now click exit&save. give some short text in the next screen and save it under appropriate package, Transport requests.
Note : you can default your transaction variant as the standard variant. (SHD0 - standard variants tab-> Activate/Deactivate as standard variant)
Now go to se93 and click on create , give transaction code as for example 'SU01N' (this will be your new transaction for creating user with email as mandatory field) and choose start object as 'Transaction with variant'
In the resultant screen, give the transaction code as SU01 and transaction variant as 'USR1' (the one we created earlier), check on all gui support box's accordingly, and save it under appropriate package and Transport request.
From here on you can use SU01N as the transaction for creating users with email as a mandatory field.

Similar Messages

  • MAKING A FIELD MANDATORY IN SELECTION SCREEN

    HOW TO MAKE THE SELECTION SCREEN FIELDS MANDATORY USING LOOP AT SCREEN STATEMENT.I TRIED USING IT WITH AT SELECTION SCREEN EVENT.BUT IT WAS NOT WORKING.SO CAN ANY OF U PROVIDE SAMPLE CODE FOR THIS.
    THANKS.

    Hi,
    You can do it simple:
    AT SELECTION-SCREEN ON s_matnr.
    IF s_matnr IS INITIAL.
        MESSAGE e055(00).
    Make an entry in all required fields
    ENDIF.
    (s_matnr: is a field on the selection screen)
    Good luck.
    Gilad Hubara.

  • Making a Screen field mandatory

    Hi Experts,
    How ot make a screen field mandatory in Module pool Program. I have created a screen containing five fields and in that need to make 3 fields as mandatory.
    Please let me know and thanks in advance.
    Sunil Kumar

    In the Screen painter , Double click your field to display the properties.
    In the Attributes,  Go to 'Program' tab and in the 'Input' dropdown select the value as 'Required'

  • LDB selection screen field mandatory

    hi,
    In LDB selection screen i want to make other period field as mandatory.
    how to do it? if anyone knows please help me.
    thanks in advance.
    Suchithra.

    Hi,
    You can use following code to (AT SELECTION-SCREEN OUTPUT) in the LDB to make selection screen parameter mandatory.
    AT SELECTION-SCREEN OUTPUT.
    loop at screen.
      if screen-name = 'PNPBEGDA'.    "Give here the screen field name that you want make as manadatory
                                                        " to get the screen field name, press 'F1' on that field and get technical  
                                                        "information
        screen-required = 1.
        MODIFY SCREEN.
      endif.
    endloop.
    Hope this helps,
    Shrinivas

  • Making a field mandatory in purchase order wrt account assignment

    Hi,
       I want to make a field mandatory in purchase order wrt a patricular account assignment category.Can any one of u help me?

    Hi
    Using a BAdi  you can acheive this.
    Create a New Field selction key with Order Acknowledgement as mandatory field
    The Business Add-In (BAdI) ME_PROCESS_PO_CUST enables you to extend the business logic of the Enjoy purchase order on an individual basis.
    Typical applications for this BAdI include:
    Processing of own objects
    Processing of additional data on standard objects
    Implementation of additional checks and derivations
    Change of data in standard fields
    Change in field selection
    Use one of the the methods
    Field selection At item level method FIELDSELECTION_ITEM_REFKEYS
    Special rules at item level method FIELDSELECTION_ITEM
    This method enables you to change the display properties of fields at item level by supplementing or swapping the field selection reference key. You can thus restrict the processing options for certain groups of users, for example.
    The following parameters are available:
    IM_ITEM
    This import parameter contains the item data of the outline agreement.
    The interface reference is of the category IF_PURCHASE_OUT_ITEM.
    CH_KEY0 to CH_KEY6
    These change parameters contain the field selection reference keys.
    Please go through the BAdi Document tation for more details
    Please take hepl of ABAP er in implementing the BAdi
    Thanks & Regards
    Kishore

  • Making Screen field visible for BDC upload

    Hi All
    I have an existing BDC program to add Vendor data to LFB1 table using transaction FK01
    Now I want to add Personnel No. PERNR value in LFB1-PERNR
    On the Account Information (SAPMFK02 Screen 0210) screen field Personnel number is not visible so I am not able to run the BDC program it says LFB1-PERNR field not available on screen.
    Please let me know how can i make that field visible on the screen

    Hi Akshay,
    U can make it visible thru SPRO transaction.
    Financial accounting --> accounts receivable and acounts payable --> Vendor master --> Master data --> Define screen layout per company code.
    Choose the specific company code and make the necessary changes,.
    thank you.
    reward points if u find the discussion useful

  • Making "Partner" field mandatory during IW32

    Hi,
    Can u pls suggest me as to how to make the "Partner" field mandatory during the change of Maintenance order (ie IW32) for a particular order type. I tried Field selection for Order Header Data(PM) but the Field name "partner" is not appearing there. Kindly suggest me the way out.

    hi arun
    as far as i know it is not possible to make partner field mandatory after release.as i said you can make it mandatory during creation itself.
    iam not sure but another option you just try it out.create a status profile of 2 status assign one status as intial and hide the partner function and another status make partner function has mandatory.presently i am not in SAP so just try it out.
    regards
    thyagarajan

  • Making segment field mandatory in Profit Center Master Data

    Hi,
    We are using SAP version ECC 6. While creating a profit center using KE51, we would like to make the 'Segment' field mandatory. Can anyone tell me how can this be done? Thanks.
    Regards,
    Sangeeta

    Hi,
    There seems to be no standard setting which makes this mandatory.  You may need to take the help of an ABAPer to create a field exit.
    Cheers.

  • Making segment field mandatory in Profit Center master

    Hi,
    We are using SAP version ECC 6. While creating a profit center using KE51, we would like to make the 'Segment' field mandatory. Can anyone tell me how can this be done? Thanks.
    Regards,
    Sangeeta

    Hi,
    I tried using SHD0 for tcode KE51, but I got the following error message:
    Variants are possible only for dialog transactions.Message no. MS417
    DiagnosisYou cannot create variants for variant or parameter transactions.
    Procedure
    Variant transaction:   Adjust the variant
    Parameter transaction: Adjust the parameter(s)
    Kindly advise.
    Regards,
    Sangeeta

  • Making a field mandatory based on values in a drop down

    Hi,
    I am new to Javascripting on the Adobe Designer and we have a requirement to make a text field mandatory based on one of the values selected in a drop down list on the same form.
    When I say mandatory I mean we need to prevent the form from being Saved if this text field is not filled - specifically when a value (say "Promotion") is selected on a drop down.
    Please help me with the events under which the script needs to be placed and the scripting commands.
    Thank you!
    Neera

    Hi,
    You can put PPR event on EMAIL field. Catch that event in PFR and put your logic there like:
    if EMAIL is not null then make FORMAT field mandatory (for that u can catch that in PR)
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Making a field mandatory in additional data tab in sales area data in XD01/XD02

    Hi,
    Making fields in additional data tab in sales area data in XD01/XD02 as mandatory is not achievable through configuration. Also, user exit SAPMF02D was not helpful in achieving this. Kindly help me on this.

    Is this a new field you are creating or an existing field you want to mark as mandatory? My impression from your original post was that it was the second. If so then you don't need to create an implementation of CUSTOMER_ADD_DATA as there must already be one, instead you should be looking for the implementation that manages data for the screen you are interested in. This might be why you don't see your BADI get activated  when you go to  "area data -> extras -> additional data" as it isn't the right implementation.
    If you just want the field to be mandatory when the user goes into the additional data tab I would code this in the screen of the customer exit. If you want this field to be mandatory whether or not they enter other additional data then you should try the method of the badi Nabheet suggested but not in your own implementation.

  • Making selection field mandatory in invoice overview

    Hi All,
    I am trying to make selection field  (Ship from Location ) mandatory in invoice overview through customizing mode.
    however system is showing mandatorysymbol against field but not throwing any error message when user execute the invoice overview screen without ship from location.
    kindly suggest / help
    Best Regards
    Gaurav

    Hi,
    You can do it simple:
    AT SELECTION-SCREEN ON s_matnr.
    IF s_matnr IS INITIAL.
        MESSAGE e055(00).
    Make an entry in all required fields
    ENDIF.
    (s_matnr: is a field on the selection screen)
    Good luck.
    Gilad Hubara.

  • Selection screen field-mandatory

    Hai Experts,
    I have two fields bukrs and vkorg in two different blocks of a selection screen..
    my requirement is this:
    when bukrs is blank, the field vkorg should be mandatory.
    when bukrs is given value, vkorg should not be mandatory.
    how to do this.
    Following is the code wat i have written. but it is not satisfying the requirement.
    LOOP AT SCREEN.
        IF s_bukrs IS INITIAL.
          IF s_vkorg IS INITIAL.
            screen-group1 = 'MO1'.
            screen-required = '1'.
            MODIFY SCREEN.
            EXIT.
          ENDIF.
        ENDIF.
        IF s_bukrs IS NOT INITIAL.
          IF s_vkorg IS INITIAL.
            screen-group1 = 'MO1'.
            screen-required = '0'.
            MODIFY SCREEN.
            EXIT.
          ENDIF.
        ENDIF.
      ENDLOOP.
    Regards,
    Neela.

    you have to do like this and for achieving the requirement you have to press enter in the selection screen or any user interaction to trigger at selection-screen event.
    data : flag.
    at selection-screen output.
    if flag = 'X'.
    LOOP AT SCREEN.
    IF s_bukrs IS INITIAL.
    IF s_vkorg IS INITIAL.
    screen-group1 = 'MO1'.
    screen-required = '1'.
    MODIFY SCREEN.
    EXIT.
    ENDIF.
    ENDIF.
    IF s_bukrs IS NOT INITIAL.
    IF s_vkorg IS INITIAL.
    screen-group1 = 'MO1'.
    screen-required = '0'.
    MODIFY SCREEN.
    EXIT.
    ENDIF.
    ENDIF.
    ENDLOOP.
    clear flag.
    endif.
    at selection-screen.
    flag = 'X'.
    start-of-selection.
    regards
    shiba dutta

  • Making a field mandatory in MIRO transaction

    Hi all,
    I have an issue like this
    In the MIRO Transaction , for credit memo , I need to make the field INV.REF. as a mandatory field.
    Kindly suggest me on this .
    thanks,
    Sumit

    Hi,
    1.- in transaction OLMRLIST enter:
    Transaction = MIR7
    screen variant = ZWHATEVER
    Program = SAPLFDCB
    screen = 20
    2.- click on button create (here you´ll go to transaction MIRO)
    3.- Click on button "save" and a popup will appear
    4.- Click on button "continue"
    5.- Click on "Back" and here you will see the variant details
    6.- Look for row of field "Inv.Ref." and check the checbox of column "Required"
    7.- Save and activate
    8.- Later on you can modify your variant too
    Best regards.
    Edited by: Pablo Casamayor on Apr 15, 2009 12:02 PM

  • Making of fields mandatory in Material Master

    Dear Gurus
    I am working on ECC 5.0
    I wanted to make mandatory fields for  material master in some of the views ..
    How to do that activity , can anyone give the clear cut idea about this how to do
    Thanx in advance
    Rgds
    Surya

    Hi,
    1. First go to OMS2 > Here for material type, get the "Field reference Key"
    2. Then go to OMS9 > Here in search help of Field sel. group, search for relevant field and select it.
    3. Now click on "Position" button and enter the Field reference Key got in Step1 and select it by pressing enter button. Now select "Reqd Entry" Radio button
    Also use OMSR to find the Field Selection key assigned to the Group
    You have to find the Field name of the material master field by pressing F1 and then F9 and get the field name then go for field selection

Maybe you are looking for

  • Why does embedding Adobe fonts in EPUB cause all text to display as oblique?

    I have been having this problem for a while now to various degrees, and I stopped using InDesign to build and export EPUB files for a long time because of it. Lately I have decided to try reintroducing InDesign into my EPUB workflow. However, I have

  • Laptop keeps shutting down without warning because it thinks the battery is low, but it isn't.

    My laptop is about 9 months old and recently it started to just shut down as if the battery were low. It is not low. It just did it now and the battery was at 80%. If I try to restart it it shows low battery and won't start. However, if I remove the

  • Customer Account line items are Missing Fbl5N

    Hi experts... FI Guys could not able to find customer account open line items in FBL5n after generating Accounting document automatically and we have checked VKOA screen, Assignments are fine but in that accounting document the customer itself is mis

  • Wiki Some Attachments are Broken

    For sometime in the past few weeks, something has gone with our Wiki Attachments.  Some links are working without issue, and some are getting a 404 error.  The links with 404 are being redirected to the same URL, however there is a /sandbox/ before t

  • Creating WBS element using bapi BAPI_PS_INITIALIZATION

    Hi All, I have created Project definition successfully  using function module "BAPI_PROJECT_MAINTAIN" . But while trying to create Wbs-Element for the project definition using same function module  "BAPI_PROJECT_MAINTAIN"   we are getting the followi