Make "Reference Document" field as mandatory in Confirmation

Hi Experts,
I have a requirement in confirmation to make "Reference Document" field as mandatory. I have done the config and able to see  ' * ' (mandatory) in the reference document field in confirmation. However, system is not validating for entry in that field, I am able to save or post the confirmation w/o the entry in the reference document field.
Version: SRM 7.0 SP05 with EP
SPRO -> SRM Server -> Cross Appl... -> Extension and Field Control (Personalization) -> Configure Field Control -> Configure Control for Fields on Header Level --> Metadata for Fields on Document Headers
Structure Field Name : REF_DOC_NO
Bus. Object Type      :  BUS2203
Bus. Object Subtype : CF
Transaction Type      : CONF
Field Visible               : X
Field Enabled             : X
Field Required           : X
Please advice.
BR,
Siva

Schuffelen,
Your suggestion is exactly correct.  I have to use DOC_CHECK badi for this.
Reply from SAP on this below,
The flag in the property will not generate an error message. This flag only renders the red asterisk on the screen. The actual error has to be generated on your code
After you have done the customizing to get the field to be shown as mandatory, you have to write a code in your BADI (like DOC_CHECK) to check the value for this field and generate the error message if the field is empty
Thanks for your help!!!!!!
BR
Siva

Similar Messages

  • Mandatory entry of reference document field during confirmation

    Hi,
    I have a requirement to make an entry during confirmation in the field "Reference document field" as mandatory, currently only a warning message is thrown when the document is checked during confirmation and can be posted without an entry. How can i make this as a mandatory entry field. Also the standard field length is 16 characters, is it advisable to change this to 20 to suit one of the business needs, what are the parameters that need to be checked to make this change.
    Please suggest.
    Regards
    GGL

    Hi,
    You can change that particular message to error ...
    Goto SPRO -> SRM Server -> Cross Appl...  -> Message control -> influence message control -> select BuS2203 click on message control on the left side .. Click on new entry and then enter message class BBp_cf and id as 060 and enter type as "Error" .
    I would not suggest to change the field length .
    Thanks
    Padhi

  • How to make the description field as mandatory in IW31 T.code

    Hi All,
    My requirement is make the Description field as mandatory in T.code: IW31
    That field is CAUFVD-KTEXT.
    How to make this field as mandatory,
    I tried with BADI: IWO1_SCREEN_MODIFY
    And some customer exists also (ZXWOCU04, ZXWOCU09) but unfortunately I couldnu2019t reach my functionality
    Can any please help me to reach out my functionality?
    Thanks and Regards,
    Rambabu.

    Dear Friend,
    go to spro - plant maintenance and customer service - maintenance and service processing - maintenance and service orders - define field selection for order header data(pm) -Field Selection for Order Header Data and Reference Object
    here keep CAUFVD-KTEXT is mandatory for your order types.
    Regards,
    pardhu

  • How to make the text fields as mandatory (in 'notes and attachment' tab)?

    Hi,
    We have defined some Fixed Values for texts under IMG>SRM>SRM Server>Cross Application Basic Settings>Text Schema>Define Fixed Values for Texts, for a certain transaction type of RFx responses for a text schema.
    Because of this, the bidder can choose one of these fixed values for texts. This is perfectly working fine.
    Now the question is, we want to make the texts fields as mandatory. i.e. The bidder should not be able to submit the responses if certain texts are blank.
    Is there be any BadI for this?
    GH

    You can use BBP_DOC_CHECK_Badi for this field validation using a filter value RFx/Bid (I ont remember exact word).
    Regards,
    Jagadish.

  • 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 make amount field as mandatory in portal

    Hi experts,
          We are working on EHP5 , Ecc 6.0. I am working on claims and reimbursements module . We have already done the configurations and in the portal i need to make an amount field as mandatory . I have gone to content administration - Portal Content - Content provided by SAP- End user content - Employee self Service - I views- Benefits and payments - India- Claim Advance request . Here i have selected an iview then Right click on that we can see the properties. there i have made the field as mandatory . It is getting applicable. But when i close the particular screen and click on that iview the same screen comes across with the field not getting mandatory . Wat are the other steps which i need to make this field as mandatory and gets applicalble to all claim types. So please reply .
    . So please respond experts.
    Thank you
    Lokesh

    Hello Lokesh,
    For all specific claim types while configuring customized header fields in view V_T77WWW_CLHLDC
    & configuring customized multiple line fields in view V_T77WWW_CLMLDC there is an option in the form of checkbox to make those fields mandatory.
    The mandatory checkbox can be seen inside the box generic properties.
    I trust this clarifies.
    Regards,
    Pankaj

  • How to make input field as mandatory field in sub screen

    Hi All,
           I need to display the input selection parameters in tab strip sub screen. The input screen is not giving an error while processing with blank values, but I made the input field as required in sub screen input filed settings. Can some one please help me how to make the input field as mandatory field in sub screen.
    Thanks in advance.
    Regards,
    Kannan

    Hi Kannan,
        Try this out.
    1. Goto screen painter
    2. Enter the program name and screen number ( screen # 1000 -  in case if its  a custom report prg)
    3. Double click on the field which u`ve got to make mandatory.You`ll get Screen painter attributes window.
    4. U`ll find three tabs here - Dict, Program, Display
    5. Go to Program tab, and change the first attribute - Input field`s input value as "Required".
    6. Save and activate it.
    7. Now execute ur program and this should make ur field as mandatory on the screen.
    This works with input fields, but I`m not sure about the input field in tab strip control.
    Hope this helps
    Regards,
    Farhana

  • Material Document field to be added  in the Quality Notification F3 type

    Hello Experts,
    i have to add Material Document field in the Quality Notification (F3 type --Material rel. defect ) through
    T-code QM01.
    Please help me out.
    thanks

    Hi
    IMG-->QM>Quality notifications->Notification Creation->Define Screen Templates--> Define Initial Screens--> select F3 here and enter QM03_CREATE_QMEL_WITH_WINDOW in the column Name of the function module and enter 0100 in the  initial screen column., save it.
    If you wish to make material document field mandatory, then go to
    IMG-->QM>Quality notifications->Notification Creation->Define Screen Templates--> Field Selection: Initial Screens--> select the radio button as REQ for the field RQM01-MBLNR that is for material doc.
    Similarly for in the above menu you can make mandatory for reference object screen also
    IMG-->QM>Quality notifications->Notification Creation->Define Screen Templates--> Field Selection: Reference Object Screens--> select the radio button as REQ for the field RQM01-MBLNR that is for material doc.
    Now, once you finish this , go and try QM01 you will find the POP for Material document entry coming immediately if you pres the Notification button for F3 Notification type.
    Best Regards
    SAM

  • Reference Document Number In MIRO

    Hi,
    I want to make Reference Document Number mandatory in MIRO.
    Pls. guide.
    Regards,

    Hi PK,
    You can make it mandetory for document type RE,use following path,
    SPRO- Financial Accounr\ting (New ) -- Document  - Define DT for entry view - double click on DT - See last tab Required During Doc Entry and tick on reference number.
    It will make compulsory field for MIRO.
    Thanks ans regards
    Gitesh

  • Profit center field is mandatory

    Dear friends,
    How can I make profit center field is mandatory in Cost center master?

    Hi,
    if profit-center acounting is active I guess profit-center is a required entry in cost center master. If not use enhancement COOMKS02 to check if profit center is maintained during creation/changing of cost centers.
    Best regards, Christian
    Edited by: Christian Ortner on Jun 27, 2010 3:17 PM

  • Help reqd for coding to assign the  field as mandatory.

    HI all,
    I got the user exit and also assigned the component as "EXIT_SAPLMRIM_002"..im now here to create a code under the include program of "ZM08U09"....for to make the amount field as mandatory(obligatory)..with some pop-up message...
    how to do that....
    Do u people have any experience on this...pls post ur comments on urgent basis.
    thanks & regards
    sankar.

    Hi Sriram.P
    thanks for ur prompt reply
    ...but actually,my problem is...i dont know the exact table for miro (invfp-wrbtr showing in the screen)....i've already prepared some coding but the table i've mentioned is not the correct one...
    Do u know the table for Incoming invoices records (MIRO)
    thanks & regards
    sankar.

  • How can i make reference field mandatory in MIRO?

    Hi Experts,
    How can i make reference field mandatory in MIRO screen.
    Reference field is not available in field status group.
    I have checkedthe reference number in RE document types in OBA7 .
    But still without entering anything in reference field in MIRO,the document is getting save.
    Any other solution??
    Regards,
    Sumeya offrin

    Hi
    Strange....what you did should work.
    Was an accounting document created for this MIRO? Was it RE type?
    Ofer

  • How to make external reference field as mandatory in customised ZDCR

    Hi guys,
    I am working in CHARM implementation and we have defined customised transaction type for change request(ZDCR), now my client wants the external reference field as mandatory, and we are using CRMD_ORDER for creating a customised change request. Now my point is the external refernce field should be mandatory only to ZDCR transaction type and it should not effect to another transaction types who are using through CRMD_ORDER transaction code.
    Kindly give ur inputs it is very urgent as the Go-live it very near.
    Thanks&Regards
    Sitaramaraju.P

    Hi!
    Try to modify the Dynpro of TC: CRMD_ORDER:
    Start Transaction SE80.
    Display program SAPLCRM_SERVICE_UI
    Go to 'Screens' and select screen 7153
    Go to the element list of screen 7153
    Then select 'Special attr. '.
    Activate the change mode.
    Mark field Name: CRMT_7010_SERVICE_UI-PO_NUMBER_SOLD / Typ: I/O as required entry field.
    Activate your changes and start Transaction CRMD_ORDER
    Due to this modification you will need a SSCR Key for this object (see http://service.sap.com/sscr).
    Hope this will help!
    Best regards / Gerhard

  • Can you suggest how I can make only "salesperson" field mandatory?????

    Hi gurus,
    I want to make the field "Salesperson" in the Communication tab in the PO header mandatory.
    When I set the field selection accordingly(field "salesperson" as required entry), other fields such as your reference, our reference, telephone number becomes mandatory.
    can you suggest how I can make only "salesperson" field mandatory without making related fields mandatory?????
    Regards
    Sara

    Hi,
    Go to spro->MM->purchasing->PO->Define screen out at document -> select NBF ->Reference data, header->set field Reference, salesperson etc. as mandatory.
    reward full point if resolve,
    Regards,
    Chetan.

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

Maybe you are looking for