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

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

  • 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

  • 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

  • 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

  • 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

  • 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.

  • Sap sd set profit center as mandatory field in va01

    Hi guru's
    here to set profit center field as mandatory in va01 i know the configuration in SD.
    but this profit center field in va01 by default triggering one dummy profit center automatically.
    i already set the configuration but not working bcoz of this dummy profit center.
    provide the solution as soon as possible.
    Best Regards
    Prasad.

    hi,
    U can use Incompletion Log else transaction variant for the same.
    Goto Tcode:SHDO -
    > Transaction Code=VA01->Transaction Variant=bus2032>click  with processing ikon on the top -> search for the field PRCTR (profit center)-> make it requred field
    hope this helps u
    regards,
    Arun prasad C R

  • Division field Set as mandatory but it is effecting to other fields in sale

    Hi all.
    I want to set division field as mandatory field at material master creation..
    I have made Division(MARA-SPART) as required option for MM01 in field selection.
    But the problem is, if I set Division as mandatory simultaneously Setup time,base quantity,shipping process time, in Sales:General view are set as mandatory automatically..
    How can i set only division as mandatory at Basic view in material creation..
    plz help me..
    thanks and regards
    ramesh reddy

    In OMSR change the  Field sel. group  for MARA-SPART to new no. say 210 , Use this Field sel. group (210)  in OMS9 to achieve your requirement.

  • IW31 how to set functional area as mandatory field?

    Hi,
    Can anyone guide me, is any way to set "functional area" as mandatory field (t-code iw31 Additional Data -> Functional area)? Thanks in advance.

    go to the config:
    SPRO:  PM & CS -> Maint. & Serv. Processing -> Maint. and Service Orders -> Define Field Selection  for Order Header Data (PM)
    ...Choose "Field Selection for order header data"
    ...toggle to change mode (use menu "field selection at the top left".  Then find your field (functional area CAUFVD-FUNC_AREA) and put the radio button to "required"
    This will make it mandatory for all order types.  If you want only specific order types, use the influencing fields to pick only certain order types.

Maybe you are looking for