Storage Bin in MM-set as mandatory field

Hi experts,
pls help me on how to set the storage bin field as Mandatory in MM creation.
MARD-LGPBE
is this possible to set by plant level or material type?
need your expertise.
thanks,
Maia

Hi,
1. Get the field name  of storage bin which you want to make mandatory
2.Go to T.Code: OMSR and enter that field name and get Field Selection Group(Selection Group)
3.Go to T.code: OMS9 and select your material type and go to "overviews" .In the next screen, you can see your Field Selection Group, click that and you can make that field required mandatory & save.
Hope helpful to you and then reward.
Regards,
Biju K

Similar Messages

  • How to set an mandatory field to non-mandatory.

    Hi,
    In my form, I will need to set a field to mandatory in certian condition and then set it to not mandatory under different condition.
    I know how to set it to mandatory: field.mandatory = "error"
    Can someone let me know how to reset the field to not mandatory.
    Thanks,
    Laura

    You can try:
         field.mandatory = "disabled";
    Thanks
    Srini

  • MB26 (Setting a Mandatory Field)

    Hi,
    In MB26, is there anyway that we can set the Reservation Field as a mandatory field?  I tried Screen/Transaction Variants but there is none for the first screen (selection screen). Any advice?
    Thanks,
    Kumar

    Hi,
    Yes the variant can be made default. The process is:
    1) Go to se93
    2) give the t.code & click display
    3) Click change & give the variant name in Start with variant field name.
    4) Transport the request and use it , It works with the new variant.
    I know it is help ful now. Award points(10).
    Regards

  • Set Shipping Point as mandatory field in STO

    Dear Expert,
    I am trying to set shipping tab -> shipping point as mandatory field in STO, I went to SPRO->MM->Purchasing ->PO->Define screen layout at Document Level but were unable to find the field selection group that has the field.  
    Does anyone knows whether the shipping point can be set as mandatory field?
    Thank you in advance for any assistance.
    Take care,
    Andrea

    and also
    Spro>Logistics Execution>Shipping>Basic Shipping Functions>Shipping Point and Goods Receiving Point Determination>Set Up Storage-Location-Dependent Shipping Point Determination>Define Rule for Determination of Shipping Point
    Spro>Logistics Execution>Shipping>Basic Shipping Functions>Shipping Point and Goods Receiving Point Determination>Set Up Storage-Location-Dependent Shipping Point Determination>Assign Shipping Points According to Storage Location
    Spro>Logistics Execution>Shipping>Basic Shipping Functions>Shipping Point and Goods Receiving Point Determination>Set Up Storage-Location-Dependent Shipping Point Determination>Assign Shipping Points
    So, that the Shipping point will determined Automatically..

  • Problem in Matix Mandatory Field

    Hi,
    I am setting a mandatory field in matrix. All the columns are working well but for the column which holds the numeric value is accepting the value in the text eventhough i check it.
    The code follows which i used
    Try
                            Dim k As Integer
                            Dim oEdit4 As SAPbouiCOM.EditText
                            If oMatrix.RowCount() = 0 Then
                                BubbleEvent = False
                                SBO_Application.SetStatusBarMessage("LLS should not be left blank")
                            Else
                                For k = 1 To oMatrix.RowCount()
                                    'oMatrix = oForm.Items.Item("mat1").Specific
                                    oEdit4 = oMatrix.Columns.Item("txttollm").Cells.Item(k).Specific
                                    If oEdit4.String = "" And oEdit4.String = "0.000" Then
                                        BubbleEvent = False
                                        oEdit4.Active = True
                                        SBO_Application.SetStatusBarMessage("LLS should not be left blank")
                                    End If
                                Next k
                            End If
                        Catch ex As Exception
                        End Try
    In matrix for this field i set as numeric(19,6) so it displays "0.000" in matrix this is the problem so its accepting the same value. Plz give me a solution.
    Madhavi

    If oEdit4.String = "" And oEdit4.String = "0.000" Then
    shouldn't it be 'Or' condition? just check it that way.
    Binita

  • Mandatory fields for plant address in SPRO

    How do we set the mandatory fields when entering plant address in SPRO, i.e. in path : Enterprise Struct->Definition->Logistics general->Define plant?

    This is based on country customizing.
    IMG > Sap Netweaver > general setting > define countries > define country specific checks

  • Creation of Mass Storage bin

    Hi,
    We need to created storage bin for warehouse. we were planning to use LSMW. We cannot use auto creation of stroage bin LS10 since the numbers are not in a proper sequence.
    However we need to add value to the field 'Sort fld pick' for every storage bin which will be used latter for sorting the storage bin in pick list.
    This field is not available when u create storage bin. This field is only avaialble when u are change mode after creating the storage bin.
    Also we cannot use the customization for define sort sequence for stock removal.
    Can anybody help me how to fix the issue.
    thanks in advance
    Regards

    Hi,
    Storage Bins creations and Sort fld stck plcm/Sort fld picking are all  master data maintenance, to maintains these you need to create LSMW or BDC. There is now option on customization etc.
    let me know if you have any more questions.
    Regards,
    Madhu

  • Mandatory field (profit center) only for F-02

    Hello Friends...
    May I set a mandatory field (profit center) for all accounts (3) and (4) only when I run the transaction F-02??
    Thanks in advanced,
    GLippmann

    Hi,
    You want Profit Center required field in F-02 and for specific series of GL account only.
    This is possible through Validation. (OB28)
    Regards,
    Shayam

  • Mandatory field - Disribution rule

    Hi Experts,
    My client needs the requirement that while journal entry screen distribution rule field have set as mandatory field.
    how its possible ?
    Using Query its possible, but i want some other work around ?
    Regards,
    Sanju M S

    Hi
    Use this in SP_Transaction Notfication: if they not selected the DR it will not allow to post in system.
    set ANSI_NULLS ON
    set QUOTED_IDENTIFIER ON
    go
    ALTER proc [dbo].[SBO_SP_TransactionNotification]
    @object_type nvarchar(25),
    @transaction_type nchar(1),
    @num_of_cols_in_key int,
    @list_of_key_cols_tab_del nvarchar(255),
    @list_of_cols_val_tab_del nvarchar(255)
    AS
    begin
    declare @error  int                    
    declare @error_message nvarchar (200)           
    select @error = 0
    select @error_message = N'Ok'
    IF (@transaction_type = 'A' or @transaction_type = 'U') AND @object_type = '30'
    BEGIN
    if Exists (SELECT T0.[TransId] FROM OJDT T0  INNER JOIN JDT1 T1 ON
    T0.TransId = T1.TransId where T1.ProfitCode is null and T0.[TransId] = @list_of_cols_val_tab_del)
         begin
              SET @error = 10
              SET @error_message = N'Profit Centre is Null'
         end
    END
    select @error, @error_message
    end
    Wish u happy new year
    Giri

  • Storage bin field in MB21

    Dear all,
    Is it possible to have field "storage bin" at the reservation screen?
    I am making the proper customising from mov. types and i make it mandatory, but it does not be seen in the reservation screen.
    I would like it to be display in the reservation screen and come directly from the material master.
    Thanx in advance for your help.
    Regards

    ok, but then why you can maintain it as required field at the movement type? Because either it reflects to the MIGO screen.
    Regards

  • Setting a form field as mandatory

    Hi,
                I want to set a field as mandatory field in one of my transaction document under the tab folder.

    Hi Raghav,
    In Item Event Pval.BeforeAction True in item pressed write this code
    If pVal.FormMode = 2 And pVal.ItemUID = "1" Then
                            If MandatoryFields(FormUID, BubbleEvent) = False Then
                                BubbleEvent = False
                                Exit Sub
                            End If
    end if
    Private Function MandatoryFields(ByRef FormUID As String, ByRef bubbleevent As Boolean) As Boolean
            objForm = objMain.objUtilities.GetForm(FormUID)
            If objForm.Items.Item("ItemUID").Specific.String = Nothing  or  "" Then
                objMain.objApplication.SetStatusBarMessage("------ is Missing", SAPbouiCOM.BoMessageTime.bmt_Short, True)
                Return False
    end if
    end function
    Rgds
    Micheal

  • Mandatory field set up for Profitable segment entry

    Dear All,
    Is there any way to set up Customer as mandatory field in profitable segment while manually posting  to GL for which Profitable segment is required.
    Thanks,
    Ram

    Hi Ram,
    You could try to use Enhancement COPA000 for this requirement.

  • PS: Setting Project Profile as a mandatory field for Project Definition

    Hi,
    I would like to know how to set Project Profile as a mandatory field for Project Definition (CJ20N or CJ01).  I tried to look for controls at OPUK config but the Project Profile is not available for definition - either mandatory, optional, suppressed, etc.  Would appreciate if you can share your expertise on this.
    Thanks!
    Regards,
    Vivian

    Hi,
    I would like to know how to include some additonal fields in OPUK/OPUJ.  We have defined some .INCLUDE component / fields to SAP standard table PRPS/PROJ.  We want those fields to also appear in OPUK/OPUJ so that we could also defined their characteristics - whether input, mandatory, suppressed, etc.
    Thanks!
    Regards,
    Vivian

  • 'Storage bin field in material master

    Can we increase character length of 'Storage Bin' field in material master so that bin details can be accomodated ?

    No you cant!
    Takehelp of some other field.(text field)
    Edited by: uttkarsh agrawal on Jan 30, 2009 3:11 PM

  • Set mandatory fields for MSC2N, MSC3N

    Hi,
    I have done the configurations in Edit Field Selection Control in Batch Management. I've set the mandatory selection for all msc*. But seems it only works for MSC1N, not the others.
    Can someone tell me why and how correct it.
    Thank you.

    Go to SHD0
    Enter your required tcode e.g. msc3n
    Enter screen varient name
    mark fields as mandatory u want.
    I recomend to creat another tcode if u change settings as I said.

Maybe you are looking for

  • Creating text variable, urgent plz

    Hi friends,            I would like to create a text variable on fiscalyear/period. the requirement is when user enters 001.2007   it has to display jan2007                            002.2007   it has to display feb2007 so on.    but when I am tryin

  • How do I locate RAW files to export from a managed library?

    I have a decade's worth of managed Aperture libraries. The majority of the Masters are jpeg files but at least 30% of the originals are raw files. I am wanting to change to a referenced library structure which is accessible from other applications. C

  • Google Advanced Search only displays 10 Results per page in Firefox 3.6.10

    In Google Advanced Search, choose any value for Results per page greater than 10 and do a search. When using Firefox 3.6.10, only 10 results are displayed on each page of results. 10 results per page is the Google default, and the Results per page se

  • Problem with Print Preview  Urgent!

    Hello BW Experts, 1.I am trying to use the Print functionality for web printing.In the print preveiew i see all the text in black and white.It is completely different from the page that is displayed in the browser. --I tried using the same print styl

  • It's a No-Go! How to import photos from iphoto (using iMac) to iPod??

    I have been trying and trying to send my photos through to my iPod from my iMac (both of which are only a few days old...), and it doesn't accept them. Music and videos are fine, but the photo problem won't resolve itself. I have followed the online