Custom field mandatory

Dear friends,
In IDES, i have created the project and when iam releasing ,PRs will be creating, While creating PR Iam getting the following message.
" Custom field mandatory"
And PRs are not creating.
Pl.suggest.
Regards,
Canand

Check Field selection for Network in IMG:
PS->Structure->Op Structure->Network->User Interface settigns->Define Field Selection for Network
Select Network Details.
Now Check if Material Group, Purchasing group field is hidden or not. If it is hidden make it input.
Bye
SSanjay

Similar Messages

  • Need to Make end customer field mandatory in sales order form.

    I need to make end customer field mandatory when sales channel entered as some value...
    for this i have used when validate record on order form
    when i enter a value in sales channel as desired value the form is getting saved automatically and the field is getting mandatory
    but my requirement is to make field mandatory and then to save the order.
    let me know the sequence how it works if any one knows.

    Sanni,
    >
    when i enter a value in sales channel as desired value the form is <b>getting saved automatically</b> and (then) the <b>field is getting mandatory</b>
    but my requirement is to make field mandatory and then to save the order.
    >
    Which trigger are you using to do the "getting saved automatically'?
    Does this trigger fire before the trigger that is making the field mandatory?
    Regards,
    PS: Is this an Oracle EBS query? If yes, this is the wrong forum
    Edited by: Prabodh on Jun 14, 2012 4:48 PM

  • Solman 7.1 - CRM WebClient UI - custom field mandatory on status change

    Hi
    I've got a question and I'm not sure if it's possible.
    Basically i have created a custom field in CRM WebClient UI and I have added this field to my Z configuration. This works fine.
    Now, I'm wanting to make an error to appear if this field is blank (hasn't been filled in) when the status of the transaction type changes to a specific status.
    i.e. if "custom field" is BLANK when SMTM changes to Closed, then error appears
    I know the field can be made mandatory, but this particular custom field won't be filled out straight away. Therefore I want the check to occur when the document is closed. Can this be done via PPF Conditions? Or is ABAP/enhancement the only way?
    Thanks
    Shaun

    Hi,
    For customizing crm web ui, you must need AET or EEWB tools. Best Practices for SAP CRM Web UI Customization - CRM - SCN Wiki
    but try by using the standard sap note  1772650 - ST710:You can save a message even though mandatory fields are not filled in. which can set certain warning message for custom fields or not and the other relevant  1931783 - Incident can be saved without filling mandatory fields
    Please check.
    Thanks
    Jansi

  • Business Partner Custome Fields Mandatory

    Hi,
    I have added some custome felds to the manage business partner. I want some of the custome fields to be mandatory.
    Can anybody tell how to do it?
    Regards,
    Raveendra

    Hi
    Please paste what code you have made here in your reply.
    <b>Meanwhile, go through the following links -></b>
    Re: Vendor Master Extension in SRM
    Re: F4 for customer table fields
    Re: Add custom fields to Contract Transaction in SRM 4.0
    <u>Other realted Information -></u>
    It is possible to add custom fields / structure to the Business partner screen.
    It is required that you create a custom screen (sub-screen) and perform the assignments in the BDT. Go to area menu BUPT. You can see sub-menu Screen Layout. Check the customizing using transactions BUS2 to BUS5.
    You can add custom fields, custom screens and assign custom PBO and PAI function modules. You can have a look at how the existing screens are made and accordingly copy / configure your custom screen and fields. Enhancement through BUPT will work. Just ensure that the field group which you add for that there is a flag 'TABLE CONTROL' in transaction BUS2 which has to be set.
    Hope this will help.
    Regards
    - Atul

  • Making a custom field mandatory in co11n txn ?

    Hi Experts,
    I have added a field in co11n transaction ( say a) i want to
    make these field mandatory ( i.e i should not let the user to
    save the order without the value in my field ?
    can any tel me how to do this, which exit should i use ( i have
    list of all exit for co11n txn ) ?
    thanks,
    siva.

    If dont want to code in Exit again . Try Chain Endchain.
    This can be written in the screen you had developed in PAI module.
      CHAIN
      FIELD:AFRU-ZZCHARG MODULE FORM_VALID.
      CHAIN.
    and write your conditional code in FORM_VALID on save button click.
    MODULE FORM_VALID INPUT.
      CASE sy-ucomm.
       WHEN 'BU'.
           IF AFRU-ZZCHARG IS INITIAL.
                 SET CURSOR FIELD AFRU-ZZCHARG.
             MESSAGE e389(00) with 'Please enter the batch '.
           ENDIF.
       WHEN OTHERS.
    ENDCASE.
    Thanks Swapnil

  • Custom fields on SAP standard screen - how to make them mandatory

    Hi,
    I have added 2 new custom fields [say zz1 and zz2] in the SAP Document Management System whilst creating documents in program SAPLCV110.
    I want to have these fields set to mandatory only when the document type is say ZZZ.
    Can you please let me know where abouts I need to go to introduce the code.
    Regards,
    Satish

    Hi,
       Use the below code...
    In PAI of the screen:
    Chain.
           Field <zz1> module <module_zz1>.
           Field <zz2> module <module_zz2>.
    endchain.
    Module_zz1.
         if zz1 = 'XXXX'.
           perform....
         endif.
    endmodule_zz1.
    Edited by: Satya suresh Donepudi on Mar 12, 2009 3:04 AM

  • Added custom field to VA01 should be mandatory for a particular order type

    Hi experts,
    I have created a custom field in Additional Tab B (Screen 8459) in VA01 at the item level. Now that field should be mandatory for a particular order type. If a sales order is created with that order type then the user cannot save the sales order without putting any value to the custom field. Please can anyone suggest me how to do that?
    Regards,
    SURYA

    Hi
    Sap_wiz is right. It's the same that in this [post|Re: Enhancement in VA01 Additional data B tab].
    Regards
    Eduardo

  • How to define the customer field in SC as mandatory

    Hi all,
    Could someone help me to define the customer field as
    mandatory in the shopping cart?
    Thank you a lot.
    Best regards,
    Danijela

    Hi Danijela,
    you could implement the BBP_DOC_CHECK_BADI and check if the customer field is filled. If not, you can issue an error message (Type 'E') in the BAdI. This message will be visible in the browser. The user will only be able to order the shopping cart when this error message is gone.
    Best Regards,
    Olaf

  • How to make some fields mandatory for a custom screen we have added

    Hi All,
    Please let me know how can I make some fields mandatory through coding in PBO for only some fields of a screen.
    Say if I have 4 fields in my screen(module pool not selection screen) i want to make mandatory 2 fields based on some conditions how to do this? I tried using screen-group but this will make mandatory all the fields of that screen mandatory.
    I want only specific fields based on condition in run time.
    Regards
    Mahesh

    Hi Mahesh,
             Try this ..
      Assign the same group to those fields , say GRP
           in  PAI
             IF <CONDITION>
                Loop at screen.
                   if screen-group1 = 'GRP'.
                      screen-required = '1'.
                      modify screen.
                   endif.
                 endloop.
              ENDIF.

  • How to make a field Mandatory in a Table view?

    How to make a field Mandatory in a Table view?
    The requirement is, the user should not be able to append a new Row, unless and untill he enteres the data in the column SOLD-TO. Now how do i acheive making this field madatory. Normally in Edit form view, we can go in customizing and flag Mandatory, for table view we don't have this option.
    Please can anyone of you guide me in this approach?
    Jagadish.G

    Hi Jagadish,
    have a look in this thread, part of the code you can use in eh_insert method or logic to write enable/disable insert button.
    Re: Assignment Block Mandatory
    regards
    Ismail
    Edited by: Ismail Shaik on Oct 21, 2009 11:36 AM

  • How to make Sales Office field mandatory in VA01 initial screen?

    Hi,
    How to make Sales Office field mandatory in VA01 initial screen? I mean in the first screen where we enter the document type and the sales area?
    Regards,
    Ajit

    Dear Deepak,
    Thanks for the clarification.
    But, as far, I have understood the query - it is very simple and that is..
    Whenever one creates a Sales Order (T.Code: VA01), Parameter: Sales Office needs to be mandatory (for all Sales Order, irrespective of Customer Account).
    Until-unless, user won't enter the parameter: Sales Office, System will not lead to next page (now, here we need to enter Customer/ material etc...).
    I have answered the query, in this regards, only.
    Best Regards,
    Amit.
    Note: Pls. correct me, if I am wrong. Thanks for everyones guidance.

  • How to make tax classification field mandatory in sales order ?

    Hi,
    while creating sales order, " how to make tax classification field mandatory ".
    Please tell me the procedure.
    In tcode OVA2. what are the entries for fields,table.
    Regards,
    sapsduser

    Dear ,
    Could you please share why you want to make tax Classification field mandatory in sales order.
    Maintain Tax classification field for customer in Customer Master Data = (Sales Area Data - Billing document Tab page)
    Tax Classification field for Material in Material Master Data = Sales Org. 1 View.
    While creating sales order and enter customer and material system automatically fetch the tax classification related data into sales order.
    Tax is calculated based on the ship to party.
    Hope this will help you.....
    Regards,
    Manoranjan.

  • Fill the custom fields of backend PO from bid invitation

    Hi all,
    From bid invitation I am generating a purchase order. A PO is getting created in the backend. But when I save the PO in the backend it gives an error because a custom field (created in both backend PO and bid invitation) is mandatory for creating a PO is not filled.  I have to map the Z field created in bid invitation to the custom field in backend. But in the badi ‘BBP_CREATE_PO_BACK’ there is no information regarding the quotation or bid invitation. Is there any way to get the bid or bid invitation details like bid guid or bid invitation guid or any other field which related the PO to bid in the badi ‘BBP_CREATE_PO_BACK’?
    Regards,
    Asha

    Hi Sundeep,
    This problem looks to be a program error. SAP suggest few notes for the account assignment errors. However i could not found out any relation for this error w.r.t commodity code.
    The related OSS notes are as under :
    <b>Note 1000184 - Account assignment error when document transfer to back end</b>
    <b>Note 966323 - Service Item: Not able to create PO in ERP backend</b>
    The note 1000184 is more relavent in your case and other related notes are mentioned in that note which may resolve your issue.
    Hope this note will definitely come to your help.
    Please let us know the outcome for further help.
    Rgds,
    Teja

  • Making task list field mandatory in creation of maintenance plan?

    Dear All,
    I need your help in configuration of Making task list field mandatory in creation of maintenance plan. I checked with sceen variant config but that also not giving me any option to make the field mandatory.
    Is there any note or user exit for it?
    Regards,
    Kaushal Rai

    Dear,
    Pls check the exit IPRM0004:Maintenance plan / item: Customer check for time "SAVE".
    Regards
    Sunil

  • Custom field in Request for quotation

    Hi,
    I have added one custom fields in RFQ item overview with help of EKPO(append structure). Now I can able to create and change the custom field value.
    Now I wanted to make mandatory the custom field base on RFQ type.
    How to make it as mandatory using customization.
    Regards,
    Vadamalai A.

    Hi,
       As of my knowledge, you have to hard code the same in the user exit used if you want the field selection based on document type.
       Refer the thread: custom Field to be Mandatory
    Regards,
    AKPT

Maybe you are looking for

  • Source of supply - Selection

    Hi, There are two vendors A, B maintained for an Item. A is the fixed vendor. Info record exists for both vendors. I activated the user exit -EXIT_SAPLMEQR_001 to select vendor B as the source while creating a purchase requistion (only in certain cas

  • Multiple selection" in the field property in ACROBAT XI

    When the "multiple selection" in the field property is available in FormsCentral, I can't find it  in ACROBAT XI (Just bought it). If this field is not available in ACROBAT XI, how can I modifiy the form uploaded (already built) in FormsCentral to be

  • ALV: Color cells in subtotals. Is it possible?

    Hi, I have an ALV-report which initially shows subtotals only. The users want to see specific colors in specific cells of the subtotals if possible. Is it? Regards Thomas

  • An error has occurred which stopped the processing of the PDF. Trying to convert a .tif file

    I'm new to this conversion system.  I tried several times to convert a .tif file to a .pdf file.  I got the same message every time: "An error has occurred which stopped the processing of the PDF".  What am I doing wrong?

  • Premiere Elements 7 closes opening Transitions

    I think the following problem is starting to spread as PRE7-users upgrade to the latest Nvidia GeForce driver. So if you experience that Premiere Elements 7.0 stops working and is closed by Windows when you open Effects and Transitions with one of th