Make * mandatory in MB1B

Hello
In MB1B , while Transfer posting material the system is asking the enter valuation Class/Batch. There is option of enter * in this field.
But i want to make the * filed mandatory for all users then how to do this? I have check the parameter ID CHA  and it is not worked
Plz guide me how to make * mandatory?
Regards
sapman man

Hi,
Try doing this for the movement type,
for eg. in movement type 311 you can make the following fields mandatory
UMBAR     Valuation Type Trfr Pstg
UMCHA     Batch Trfr Pstg
This will give a better control and also not much of a config required.
Regards
Merwyn

Similar Messages

  • Issue to make mandatory field(SELD/BBD and Date of manufactor)in migo for particular Material type and material Number starting with'1' series.

    Hi friend,
    i have issue regarding mandatory  self life field (SELD/BBD and Date of manufactor)in migo for Batch Tab for particular Material start with '1' Series and material type.
    i want to make mandatory above field during GR from migo..any one let me know exit or badi for that to full fill this goal..
    Regard's,
    shaikh Khalid.

    Hi Shaikh
    First of all Thread is not closed seconldy as a good practice if you have resolved your issue kindly document it here so that it may help someone in future
    Nabheet

  • Business area and profit centre field to make mandatory in all transactions

    Dear Team,
    My client wants to make the above mentioned fields mandatory while entering any business transactions. viz. MM,FI / SD transactions. He wants to capture the details Business area wise as well as Profit Centre wise.
    Please let me know whether
    1.  I need to make "Business Area" as well as "Profit Center" field mandatory in "ALL THE FIELD STATUS GROUPS"of particular field status varient. If not which particular field dtatus groups to use. &
    2.Whether "Profit Center" or "Cost Center" to make mandatory and to which GL.
    Please help.
    Waiting for your reply.
    Thanks and Regards
    Sagar

    Hi
    A good way to make this Check compulsory in case Document Splitting is active in your system.
    Follow the path
    IMG>Financial Accounting (New)>General Ledger Accounting (New)>Business Transactions>Document Splitting>Define Document Splitting Chracteristics for General Ledger Accounting.
    Here you can make splitting active for Both business Area and profit center.
    If any where in the posting system does not find either of Business Area or Profit Center, it would give an error
    Thanks & regards
    Sanil K Bhandari

  • How to make Mandatory field as Non-empty

    Hi All
    I need to make a mandatory field as NON EMPTY.
    How can i do that.
    Please help me on this.
    Thanks
    Sathish

    What have you tried so far?

  • To make mandatory fields

    Dear All,
                     Im the new one to Solman.  In solution manager we want to make some fields as mandatory is it possible?..
    i have tried with config it is giving error message but the transaction get saved.
    my request is without entering the vaues in the following fields system should not allow to save the Ticket.
    is it possible via user exit?.. if possible give the user exit name and your valuable guidance
    the fields are
    1.Description
    2.Sold to Party
    3.Reported By
    4.Supported By
    5.Message Processor
    6.Category
    7.Subject
    Regards
    Anand

    Hi,
    For which traction you want to make the field mandatory?
    regards

  • Shipping point in STO PO and RTV PO want to make mandatory

    Hello,
    For Stock Transport purchase order of UB document type and Returns purchase order i what to make shipping mandatory.
    I have tried in field setting, however there is no such option to set.
    if you know any way to set the shipping mandatory please let me know
    Thank you
    Bhima

    SPRO-Materials Management-Purchasing-Purchase Order-Define Screen Layout at Document Level
    Here in UBF make it required entry.
    Sachin

  • How to make mandatory field in f-02 to optional field

    hi.   SAP Gurus
    In t-code f-02 Company code and currency these two fields header data are required fields...Is it possible to make them optional fields in SPRO....If possible then please let me what is the path and T-code????

    Hi,
    Company Code and Currency are mandatory fields for entering any FI posting. If Company Code is left blank in which company code should post the transaction. Similarly, without indicating the currency how will the system know in which currency the transaction is to be posted.
    One option is through authorizations, we can restrict to which Company codes an end user can post the transactions.
    Thanks
    Murali.

  • How to make mandatory field in custom form

    Hi,
    we have oracle ebs R12.1.3 and oracle DB 11.2.0.3.
    In a new developed custom form, we want to make a field mandatory. It should be displayed as yellow at the time of running the form.
    Can anyone guide me.
    regards
    Sanjay

    Problem as been resolved by setting the properties of field in the following way.
    required = yes
    visual attrubute group= data_required
    Thanks & regards
    Sanjay

  • Make mandatory fields(means check  space or not) in me51n

    hi,
      i have requirement to make field mandatory under tab 'taxt' in  me51n ...means can't be blank...when i enter or save without input that field,error will come......

    hi..
    DATA:T_TABLE TYPE TABLE OF TLINE,
         W_TABLE TYPE TLINE.
    IF SY-TCODE = 'ME52N'.
    CALL FUNCTION 'READ_TEXT'
      EXPORTING
       CLIENT                        = SY-MANDT
        ID                            = 'B01'
        LANGUAGE                      = 'EN'
        NAME                          = '001000865300010'
        OBJECT                        = 'EBAN'
    *   ARCHIVE_HANDLE                = 0
    *   LOCAL_CAT                     = ' '
    * IMPORTING
    *   HEADER                        =
      TABLES
        LINES                         = T_TABLE
    * EXCEPTIONS
    *   ID                            = 1
    *   LANGUAGE                      = 2
    *   NAME                          = 3
    *   NOT_FOUND                     = 4
    *   OBJECT                        = 5
    *   REFERENCE_CHECK               = 6
    *   WRONG_ACCESS_TO_ARCHIVE       = 7
    *   OTHERS                        = 8
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    IF T_TABLE IS INITIAL.
    MESSAGE 'ERROR' TYPE 'E'.
    ENDIF.
    ENDIF.
    DATA:T_TABLE TYPE TABLE OF TLINE,
         W_TABLE TYPE TLINE.
    IF SY-TCODE = 'ME52N'.
    CALL FUNCTION 'READ_TEXT'
      EXPORTING
       CLIENT                        = SY-MANDT
        ID                            = 'B01'
        LANGUAGE                      = 'EN'
        NAME                          = '001000865300010'
        OBJECT                        = 'EBAN'
    *   ARCHIVE_HANDLE                = 0
    *   LOCAL_CAT                     = ' '
    * IMPORTING
    *   HEADER                        =
      TABLES
        LINES                         = T_TABLE
    * EXCEPTIONS
    *   ID                            = 1
    *   LANGUAGE                      = 2
    *   NAME                          = 3
    *   NOT_FOUND                     = 4
    *   OBJECT                        = 5
    *   REFERENCE_CHECK               = 6
    *   WRONG_ACCESS_TO_ARCHIVE       = 7
    *   OTHERS                        = 8
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    IF T_TABLE IS INITIAL.
    MESSAGE 'ERROR' TYPE 'E'.
    ENDIF.
    ENDIF.
    ------------------------not working

  • Batch characteristics make mandatory

    Dear All,
    I have a characteristic for some material where at the time of GRN system is not asking that characteristic as mandatory.
    Eventhough i have marked it as mandatory(country of origin is the characteristic). How to make it possible???

    Hi,
       Maintain the "Entry Required" indicator against the characteristic in CT04 as shown below:
       Check the scenario and revert back.
    Regards,
    AKPT

  • SAP PM-to make mandatory field in iw65

    Dear All,
    We want to make a activity field as a mandatory in IW65.
    Can anybody tell me the spro setting for the same.
    Thanks
    Vishal

    Hi,
    If you adjust the variant via customizing path:
    > Plant Maintenance and Customer Service > Maintenance and Service Processing > Maintenance and Service Notifications > Notification Processing > List Editing > Define List Variants > Set List Editing for Notification Activities
    You can adjust the standard default variant SAP_TCODE_IW65, this prompts for a transport request after saving changes.
    -Paul

  • SU01 User Grp Under Logon Tab - How to make Mandatory

    Hi Guys,
    I need to make the user group field mandatory in SU01, the one under the LOGON Tab (field name: CLASS).Can anyone who is knowledgeable about this let me know the process   ....Thanks very much in Advance.
    Anil.

    Hi Anil,
    Please use the search, this has been answered a few times.  The last time was in the last 2 weeks.

  • In  IMO1 person responsible filed how to make mandatory

    Hello Gurus,
    As per my bussiness process we have integration with IM, PS & FI. In tcode IM01 we have filed person reponsible IMTP-VERNR.
    I want to make this field mandatory, but in confic i am not able to find any filed selection for this field.
    Can anyone suggest me the right way to do this, any inputs in this regards will be highly appreciable.
    Regards,
    Tushar

    Hi,
    Run the Txn SHD0, in transcation code field put IM01 and below that in Transcation variant filed put ZIM01. Now click create button on exterme top left. We will see the screen IM01 give the reqired data an press enter and name the screen variant as ZIM01_1 press enter.
    Now fill the data and press enter, you will get another screen variant in that  indicate the person responsible as required. Name the screen variant as ZIM01_2 and click on EXIT and SAVE.
    Now save the CHNAGE TRANSCATION VARIANT screen and press enter twice. system generate the transport request.
    Again the run the transcation shd0 click on the standard variants TAB and click on the activate button.
    Regards,
    Nag.

  • Reg.Storage location make mandatory

    Dear Expert
    During the Purchase requisition creation the PR is saved without storage location, we want to make it error, how to make it. Pls help me.
    Storage location is must to us. how to configure it.
    thanks in advance
    Rajakumar.K

    Dear Experts
    how to make the storage location as mandatory, don't have to go to screen layout ->basic data, because plant has set to mandatory
    without tick in basic data mandatory field,like that we we to make it. Please help me.
    Thanks in advance
    Rajakumar.K

  • How to make mandatory(usr01) field for level 1 wbs elements only from CJ20N

    Dear All,
    I have made mandatory for "PRPS-USR01" field from CJ20N transaction
    by using field exit. But mandatory field (usr01) is working for all wbs elements. I want to make this usr01 field mandatory for  LEVEL 1(prps-stufe), WBS ELEMENTS(prps-posid) only. Not for level 2 and level 3 wbs elements. Please let me know how to fix it.
    urgent.
    Regards,
    Karthik.

    You could envisage the use of validation rules in PS.
    Transaction OPSI or SPRO
    Create a validation with a message ID (Z)
    Create a step
    - prerequisite : PRPS-STUFE = '001'
    - Check : PRPS-USR01 <> ' '
    affect a message number
    Regards.

Maybe you are looking for

  • Session id in BSP Url

    Hi I am creating a new iView of type BSP. On executing/previewing the iView the url is generated similar to: http://<hostname>:<port>//sap(bD1lbiZjPTEwMCZkPW1pbiZpPTEmcz1TSUQlM2FBTk9OJTNhZHYxZDIxX0QyMV8yMSUzYU5pOXBPcGVTbE9HTVk0ZWdfcU1jUnVkYU04MU5WUUd

  • Acrobat XI install question

    I bought an upgrade to Acrobat XI, but at installation it wants to see the Acrobat X version. My computer had crashed due to a virus, so X is no longer on the computer. How can I activate XI?

  • Where to view the log

    Hi all, I have log some message via the logger.logT(Severity.ERROR,"error message"), where can I locate the log file to check the error log? What is the log filename ? Can I change the log file name and location? or config my own log file ? Is web dy

  • Need help with this book problem...Pig game...can ANYONE help!??

    I need help with the following book problem...could someone write this code for me?? Thanks!! First design and implement a class called PairOfDice, composed of two six-sided Die objects. Using the PairOfDice class, design and implement a class to pla

  • I can't remember my security question answer I have access to email and password pleas help me

    Need help to rest security question  I don't have rescu email option but I Havel access to email and my apple password