How to Set field non mandatory in PA40

Is there a way to make non-mandatory field RP50G-EINDA in PA40?
Many Thanks
Alfonso

Hi
Go to t588m table make that field as required field
Warm Regards

Similar Messages

  • How to set field as Mandatory

    Hi,
    I want to set a field as mandatory. It we didn't give any data in a field and save it should not accept the null value how to set it.
    Regards,
    Madhavi

    Hi David,
    I wrote that code but the error comes where  oSBO and  bmt_Short comes. What should i do for that.
    And i gave a code for combo Mandatory
    Dim oForm2 As SAPbouiCOM.Form
                            Dim oCombo As SAPbouiCOM.ComboBox
                            oForm2 = SBO_Application.Forms.Item(pVal.FormUID)
                            oCombo = oForm2.Items.Item("cbocate").Specific
                            If oCombo.Selected.Value = "" Or oCombo.Selected.Value = Nothing Then
                                BubbleEvent = False
                                oCombo.Active = True
                                SBO_Application.SetStatusBarMessage("Category Code should not be left blank")
                            End If
    Its working but an error come 'Object Reference Not added to the Instance of an Object'
    But the same code is working for EditText without any error

  • To make the "req.delivery date" field non-mandatory in VA01 Transaction

    Hi All,
    I want to make "req. delivery date"(RV45A-KETDAT) field non mandatory in VA01 transaction.
    I have already checked on screen 4440 .This field is not mentioned as required field.
    Please help me to find where can i make this field non-mandatory.
    Thanks and Regards,
    Dipali.

    Hi,
    this is a required field, as far as the standard SAP code goes: everytime this field is touched the following function is executed in programme FV45EF0V_VBEP-EDATU_EINGEBEN:
        call function 'PERIOD_AND_DATE_CONVERT_INPUT'
          exporting
            external_date     = rv45a-etdat
            external_period   = rv45a-prgbz
          importing
            internal_date     = vbep-edatu
            internal_period   = vbep-prgrs
            ev_date_in_past   = lv_date_in_past
            ev_period_in_past = lv_period_in_past
          exceptions
            no_data           = 1
            period_invalid    = 2
            date_invalid      = 3.
        case sy-subrc.
          when 1.
            set cursor field 'RV45A-PRGBZ' line sy-stepl.
    * Bitte Datum eingeben
            message e394.
    The only way to avoid this is create an implicit enhancement at the beginning of this form, copy the exisitng code in there, delete the message after WHEN 1. and put RETURN at the end of the enhancement. But this would be HIGHLY UNRECOMMENDED, because I am positive you cause a lot of misery later on in the process: this field is mandatory for a reason!
    Roy

  • How to set field alignment in a table in jdev 11.1.2.3?

    hi,
    How to set field alignment in a table in jdev 11.1.2.3?
    eg: to diplay a number field in a table as right aligned.
    I have tried to set field(amount) VO UI Hint Format Type:Number; Format: 0000.00
    and jspx as flowing, but it doesnot work.
    Thanks.
    bao
    <af:column sortProperty="#{bindings.VO1.hints.Amount.name}"
    sortable="true"
    headerText="#{bindings.VO1.hints.Amount.label}"
    id="c44" width="60"
    align="center">
    <af:inputText value="#{row.bindings.Amount.inputValue}"
    label="#{bindings.VO1.hints.Amount.label}"
    required="#{bindings.VO1.hints.Amount.mandatory}"
    columns="#{bindings.VO1.hints.Amount.displayWidth}"
    maximumLength="#{bindings.VO1.hints.Amount.precision}"
    shortDesc="#{bindings.VO1.hints.Amount.tooltip}"
    id="it58"
    secret="false"
    inlineStyle="text-decoration:overline;">
    <f:validator binding="#{row.bindings.Amount.validator}"/>
    </af:inputText>
    </af:column>

    Works for me:
            <af:column sortProperty="#{bindings.EmployeesView1.hints.Salary.name}" sortable="false"
                       headerText="#{bindings.EmployeesView1.hints.Salary.label}" id="c7" align="right">
              <af:inputText value="#{row.bindings.Salary.inputValue}" label="#{bindings.EmployeesView1.hints.Salary.label}"
                            required="#{bindings.EmployeesView1.hints.Salary.mandatory}"
                            columns="#{bindings.EmployeesView1.hints.Salary.displayWidth}"
                            maximumLength="#{bindings.EmployeesView1.hints.Salary.precision}"
                            shortDesc="#{bindings.EmployeesView1.hints.Salary.tooltip}" id="it6">
                <f:validator binding="#{row.bindings.Salary.validator}"/>
              </af:inputText>
            </af:column>JDeveloper 11.1.2.3
    Salary is shown right-aligned.
    What happens if you get rid of your inlineStyle on the af:inputText

  • Make project profile field non mandatory in CJ20n Transaction

    Hi All,
    I want to make project profile field non mandatory in my CJ20n transaction. I tried through OPUA, OPUK, OPUC but of no use. The field over there is just an input field. I need to make it non mandatory either through configuration or through code. Please suggest.
    Regards,
    Jayant

    Hi,
    this is a required field, as far as the standard SAP code goes: everytime this field is touched the following function is executed in programme FV45EF0V_VBEP-EDATU_EINGEBEN:
        call function 'PERIOD_AND_DATE_CONVERT_INPUT'
          exporting
            external_date     = rv45a-etdat
            external_period   = rv45a-prgbz
          importing
            internal_date     = vbep-edatu
            internal_period   = vbep-prgrs
            ev_date_in_past   = lv_date_in_past
            ev_period_in_past = lv_period_in_past
          exceptions
            no_data           = 1
            period_invalid    = 2
            date_invalid      = 3.
        case sy-subrc.
          when 1.
            set cursor field 'RV45A-PRGBZ' line sy-stepl.
    * Bitte Datum eingeben
            message e394.
    The only way to avoid this is create an implicit enhancement at the beginning of this form, copy the exisitng code in there, delete the message after WHEN 1. and put RETURN at the end of the enhancement. But this would be HIGHLY UNRECOMMENDED, because I am positive you cause a lot of misery later on in the process: this field is mandatory for a reason!
    Roy

  • How to set field type choice using csom (c#)

    I have a field type: Choice (menu to choose from) which is not multichoice. How do I set a value?
    I have found code for multiple choice but it doesn't seem to work for single choice.

    Hi,
    The following code snippet for your reference:
    newListItem["ChoiceFieldName"] = "ChoiceValue";
    newListItem.Update();
    clientContext.Load(newListItem);
    clientContext.ExecuteQuery();
    If you are assigning a Value which is not in the Choice Column, You need to create a choice value then assign it to the item.
    More information is here:
    http://sharepoint.stackexchange.com/questions/124999/how-to-set-field-type-choice-using-csom-c
    Best Regards
    Dennis Guo
    TechNet Community Support

  • How to set field to blank if the data is # or unassigned

    hi experts,
    how to set field to blank if the data is # or unassigned?
    thx

    Hi
    add the following macro to your workbook (template workbook):
    Sub SAPBexonrefresh(qstring As String, resultArea As Range)
        For Each c In resultArea
            If LCase(c.Value) = "not assigned" Then c.Value = ""
           Next
    End Sub

  • How to set field value in workflow SPD2013?

    Hi All,
    how to set field value in workflow SPD2013? Actually using Infopath, i need to update a field value through workflow.(Little differnt from SPD2010). How to do this?

    As Amit says, some elaboration here would be good.  You can use InfoPath as a form for either a list or a library and then set it to trigger a workflow upon item creation.  The workflow will consist a number of actions, one of which is the Update
    Field Item.
    More information on the available steps can be seen here.
    http://msdn.microsoft.com/en-us/library/office/jj164026.aspx
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • How to set Batch as mandatory field in Subcontracting PR component input

    Hello,SDN members
    Happy New Year!
    My scenario is about subcontracting purchasing:
    1. Move stock to vendor through movement 541
    2. Create a purchase requisition includes items with item category "L",
        and then input component,that is a quantity of material moved to vendor above
    3. Convert PR to PO
    4. Process GR according to PO
    Beause the batch field is optional in component  input screen above step2,the user always forget to input it.
    So I want to set Batch field as mandatory in component input screen.
    I have not idea about it,Could anyone give suggestion?

    this batch number field for the component in the PO is optional for various reasons. the batch that you send to your subcontractor may not even be produced at the time when you create the PO. In this case the user could not enter anything.
    The PO is created by buyers, but the component is send to the vendor by the shipping department, the buyer usually does not care about the batch.
    The batch field becomes mandatory when you ship the material to the vendor using ME2O, or even in the transaction MB1B
    and the batch field is again mandatory when you receive the finished good and have to issue the component.
    The batch field in the PO component can only be made mandatory from a good developer in a user exit

  • Unable to make field non-mandatory using SM30/T588M

    Hello Gurus -
    My client would like the field LAND1 (country key) to be optional in infotype 21 (Family Members/Dependants).  Standard delivery appears to be that this field is mandatory if any of the address fields are populated.  We have tried to make this non-mandatory by setting it as Optional or Hiding it in T588M.  No matter how we set this field up, it still behaves as mandatory if any address field is populated.  We are certain we are at the correct Mod Pool/Variable Key combination as we have successfully changed other field requirements for this infotype.
    Does anyone have any input as to why we are encountering this problem and/or suggestions as to how to get around it?
    Thanks!
    Zaj

    Hi,
    Follow IMG path -> Personnel Management -> Personnel Administration -> Customizing User Interfaces-> Change Screen Modifications
    Try using the below screen for modification for IT 0021:
    Module Pool          MP002100
    Standard screen      2001
    Alternative screen   2001
    Feature         P0021
    In feature see that you maintain for which MOLGA Country Grouping and subtyes you want to use.
    I hope this will help you.
    Thanks,
    Padmaja.

  • Making the "incoterms" field non-mandatory

    For the time being, "incoterms" field in XD01 (Create customer) for the domestic customers is mandatory. On the other hand, I want to make it non-mandatory. How can I do it?
    Thanx in advance.

    In OBD2 u  can do this
    Select the account grp and enter.
    Double click sale data
    Double click Billing
    make incoterms optional
    Message was edited by:
            sam masker

  • How to set field "third party" in the Web Adi, General Ledger - Journals?

    Hello,
    We are trying to find how to set the field "Third Party" in the template WebAdi, and validate data and also can display in the form of general ledger journals.
    thanks for the collaboration.

    hi,
    just make the input feild as mandatory in properties and use the following code.
    data:
    lo_view_controller type ref to if_wd_view_controller,
    lo_dyn type ref to cl_wd_dynamic_tool.
    Create Object
    create object lo_dyn.
    data lt_messages type lo_dyn->t_check_result_message_tab.
    Get view controller reference
    lo_view_controller = wd_this->wd_get_api( ).
    Call Method to verify the element has the value or not
    call method cl_wd_dynamic_tool=>check_mandatory_attr_on_view
    exporting
    view_controller = lo_view_controller
    display_messages = ABAP_TRUE
    importing
    messages = lt_messages .
    endmethod.
    Regards,
    Kranthi

  • How to set receiving batch mandatory in MIGO-mov type 303

    Hi gurus,
    We want to set receiving batch mandatory in MIGO-mov type 303.
    We already made this field (UMCHA) as Required in OMJJ under Field selection-Enjoy and Field selection (from 201)/Batch search procedure, but when do transaction, the field still not even appear. Can you help to know how to do that?
    Many thanks in advance

    Hello HongNguyen ,
    Please try the following customzing path in your system if you haven't already:
    - Transaction SPRO
       - IMG
         - Materials Management
          -  Inventory Management and Physical Inventory
            - Settings for Enjoy Transactios
               - Settings for Goods Movements (MIGO)
                  -   Field Selection per Mvt Type
    Please check your settings for Movement Type 303 and see if they are set to "Mandatory".
    I hope this information has been helpful.
    Best Regards,
    Frank

  • Making Password Field Non-Mandatory in OIM

    Hi,
    I would like to make Password and Confirm Password Fields in OIM Create User Form as Non-Mandatory (removing the asterick and also modifying the background Java code).Is it possible?.
    Thanks.

    HI,
    You can also edit the FormMetaData.xml and make the password optional.
    Here is the link to how you can do it.
    http://download.oracle.com/docs/cd/E10391_01/doc.910/e10362/fieldconf.htm#sthref112
    Manasa

  • How doset the Field as mandatory at UI Level

    Hi all,
    How do set the field as mandatory at UI Level.
    Thanks in advance
    C.Karukkuvel

    Hi Pedja,
    Thanks.Working fine.
    Regards
    C.Karukkuvel

Maybe you are looking for

  • DTP can Not extract data of date field from PSA to Target DSO

    Hi everyone. I enhanced several fields in datasource "2LIS_12_VCITM". that is date field "BLDAT" and another date type fields. The data of date type fields are extracted very well from datasource to PSA. But only field "BLDAT" among them are NOT extr

  • My Mac is running INCREDIBLY slow, Kernel-task and LR, PS, PSE, etc. are not functioning well.

    Hi!  Been trying to follow a thread about the Kernel-task and slow Mac performance.  I did download EtreCheck and ran the report.  I am a photographer using LR 4 and Chrome is my main browser.  Both Chrome and LR (or PSE, or PS or Xee (a photo viewin

  • Macbook pro can't find the audio device

    Lately I have been having trouble with the audio. The sound doesn't work on the Macbook, and it can't seem to find any devices! I tried plugging in headphones, but nothing helped. In the time leading up to this fault, the sound in the mini jack was v

  • Error During MIRO - Enter a G/L account

    Hi, While we are doing MIRO against a Service PO, system showing an error message - Enter a G/L account. In PO, We have given the Condition for ZOT1 - Other Charges (QTY.), where this error is showing at the time of MIRO. What should be the error?? R

  • How to publish my website using iWeb ? Other than FTP !

    Hello Guys ,                        I want to build my own website and I have iWeb software which I got preinstalled when I purchased my MBP. As Mobile me is out of service could anyone give an alternative way to publish my website. I have seen some