OTV Mandatory Fields - Bank Data

Hi there,
We would like to set Bank data as a mandatory field, when posting an invoice to a One Time Vendor, but cannot see how to make this mandatory.  We can see where the Name and City are coded to be mandatory in FFCPDI (CPD_DATEN_PRUEFEN), but are not sure if this is where we should put the bank fields.
Does anyone have any suggestions, or another way to do this?
All replies welcome
Kind regards
Jackie

Hello,
When you create the vendor account group for customer.
Click on the Genral Data in this tab you make the bank details mandetory.
It will solve your problem
Regards
Ravi

Similar Messages

  • How can avoid mandatory fields in data transfer

    hai
    please respond me
    how can avoid mandatory fields in data transfer like bdc

    hi,
    u have to pass values for mandatory fields in bdc method, u have to prepare u r bdc data such a way that all the mandatory fields are filled, other wise it will give error

  • Invoice posting from SRM system -ECC mandatory fields data need to be fille

    Dear Experts,
    I am creating an invoice from external system(SAP SRM) and generates an IDOC in SRM and same is sent to ECC. In ECC for creating invoice we have two mandatory fields house bank(hbkid) and section code(secco). These fileds data is not coming from SRM IDOC so i need to pass these fileds data before posting the IDOC.
    I am using EXIT_SAPLMRMH_015 for passing these fields data. I tried to debug the exit but it is not stopping.
    I written the below code for this but still data is not filling . I request you to give me your suggestions on this.
    DATA: S_RBKPV TYPE MRM_RBKPV OCCURS 0 WITH HEADER LINE.
    DATA: W_SCACD LIKE LFA1-SCACD.
    S_RBKPV = E_RBKPV.
    IF E_RBKPV-LIFNR IS NOT INITIAL.
    SELECT SINGLE SCACD FROM LFA1 INTO E_RBKPV-SECCO WHERE LIFNR = E_RBKPV-LIFNR.
    SELECT SINGLE VBANK FROM ZMM_HOUSEBANK INTO E_RBKPV-HBKID WHERE BUKRS = E_RBKPV-BUKRS
    AND GSBER = E_RBKPV-GSBER.
    IF SY-SUBRC EQ 0.
    E_CHANGE = 'X'.
    ENDIF.
    ENDIF.
    Regards,
    Ravi

    Identified the EXIT and working on EXit.
    Thanks
    Ravi

  • We want only Division field Mandatory in Basic Data 1 View  (T Code MM01)

    Hi,
    In Logistics u2013 General-> Material Master-> Field Selection-> Maintain Field Selection for Data Screens, for Field sel. group 90, we selected the Reqd Entry Option Button to make Division field in Basic Data 1 as mandatory.
    Due to this fields like Sales unit, Unit of Measure Grp, DChain-spec. status etc. became Mandatory for T Code MM01
    We want only Division field Mandatory.
    Is there any way to create our own Field sel. Group where in we could assign the Fields we want to make mandatory?
    Please guide.
    Regards,

    Hi ,
    Goto the Traansction code OMS9 and enter the FIELD SELECTION GROUP as 20 which is the field group for Division
    now goto the details and in change mode you can find the FIELD like HIDE, OPTIONAL,  DISPLAY , REQUIRED ENTRY
    Chcek the radio button of Required field entry and save it
    Now once you enter the MM01 , there you will find Division as Mandatory field
    regards,
    santosh

  • How to reflect a new field in Bank data while making payment through F-53?

    Hello Experts,
    How can i reflect a new field (payment reference) in bank data while making payment through F-53?
    I have tried to do it by Field status group(OBC4) but the same is replicating in vendor invoice but not in vendor payment.
    I tried it at both level,fsg anf posting key,But no use.
    Is there any other process to make available and required field in BANK DATA of vendor payment?
    Please suggest .
    Regards,
    Sumeya offrin

    Hello Sumeya,
    Please consider note 145864 which explains what you have to do to
    make this field visible in your selection criteria:
    "In Transaction FB00 (Financial Accounting Editing Options -> Open items
    activate the flag 'Payment reference as selection criterion'.
    This is valid for incoming payment; please test if the same procedure
    is valid for outgoing payment as well.
    I  check the  issue, and unfortunately these function seems to not be supported for vendor open items.
    When you try to select the 'Payment Reference' in Additional selections
    the following messages is arised:
    'No account specified, items selected via document no. or reference'
    That means,when you do not specify an account in F-53 you can only
    via Reference and/or document. This is not a bug but system design.
    For additional reference you can check the note 451105.
    The note made clear that the specification of an account is required for vendors during the selection via payment
    reference.
    Kind Regards,
    Fernando Evangelista

  • How to Make Field "Creation Date" Mandatory (in EP Selection Screen)

    Dear experts,
    I am on SRM 7.0.
    In Shopping Cart, i'd like to set Field "Creation Date" as Mandatory Field in EP Selection Screen / Criteria Maintenance.
    Is there BADI or SPRO need to be maintained?
    Thanks & regards,
    Jack
    Edited by: Jack4ever on Aug 9, 2011 7:42 AM
    Edited by: Jack4ever on Aug 9, 2011 7:43 AM

    Hi Jack,
    Not sure if it possible in standard with any customizing but it might be able to achieve this through webdynpro enhancements.
    Regards,
    Prasanna

  • Check duplicate data entry in multi record block,which is a mandatory field

    Dear all,
    I have a situation where i have to check duplicate data entry(on a particular field,which is a mandatory field,i.e. it cannot be skipped by user without entering value) while data key-in in a Multi Record block.
    As for reference I have used a logic,such as
    1>In a When-Validate-Record trigger of that block I am assigning the value of that current item in Table type variable(collection type)
    as this trigger fire every time as soon as i leave that record,so its assigning the value of that current time.And this process continues
    then
    2>In a When-Validate-Item trigger of that corresponding item(i.e. the trigger is at item level) has been written,where it compares the value of that current item and the value stored in Table type variable(collection type) of When-Validate-Record trigger.If the current item value is matched with any value stored in Table type variable I am showing a message of ('Duplicate Record') following by raise_form_trigger failure
    This code is working fine for checking duplicate value of that multi record field
    The problem is that,if user enter the value in that field,and then goes to next field,enter value to that field and then press 'Enter Query 'icon,the bolth Validate trigger fires.As result first when-validate record fires,which stores that value,and then when-validate-item fires,as a result it shows duplicate record message
    Please give me a meaningful logic or code for solving this problem
    Any other logic to solve this problem is also welcome

    @Ammad Ahmed
    first of all thanks .your logic worked,but still i have some little bit of problem,
    now the requirement is a master detail form where both master and detail is multirecord ,where detail cannot have duplicate record,
    such as..........
    MASTER:--
    A code
    A1
    A2
    DETAIL:--
    D code
    d1
    d2 <-valid as for master A1 , detail d1 ,d2 are not duplicate
    d2 <--invalid as as for master A1 , detail d2 ,d2 are duplicate
    validation rule:  A Code –D Code combination is unique. The system will stop users from entering duplicate D Code for a A Code. Appropriate error message will be displayed.*
    actually i am facing a typical problem,the same logic i have been applied in detail section ,its working fine when i am inserting new records.problem starts when i query,after query in ' a ' field say 2 records (i.e. which has been earlier saved) has been pasted,now if i insert a new record with the value exactly same with the already present value in the screen(i.e. value populated after query) its not showing duplicate.................could u tell me the reason?and help me out...............its urgent plzzzzzzzzz
    Edited by: sushovan on Nov 22, 2010 4:34 AM
    Edited by: sushovan on Nov 22, 2010 4:36 AM
    Edited by: sushovan on Nov 22, 2010 8:58 AM

  • How to remove mandatory field for Last Name in Personal Data Editing Screen

    Hello All,
    CUrrently we are using BP_ ERP5ESS1.31 SP5 & SAP_ESS  603 SP5.
    All my ESS Services are Displaying fine and working from Portal.I am having the requirement like I need to make Last Name as Non-Mandatory field in Personal Data. While Editing the PD Screen, there  i will find the * mark for Last Name filed, i checked through the Global Personalization Make as Mandatory is Not Personalized its showing, i think its defualt prpoerty,so i am unable make any changes from Portal w.r.t Global Personalization.
    I checked in SPRO-- Personal Admin> Custmomizing User Interfaces>Change Screen Modifications, there i find the respective Module pool for those Infotypes and country Specific..
    I cheked forModulePool MP000200--> P0002 and Variable Key-40(For India)  P0002 - NACHIN -- LastName only OF Radio Button is Selected all other Rado buttons are not selected.
    I Checked in V_T588MFPROPS view there for 0002 Infotype P0002 -- NACHN Mandatory check box is Checked all other check boxes are Unchecked.
    How to make that Last Name field as Non-Mandatory in Personal Data Edit Screen, where i need to make the changes.'
    Please list out the Steps..Where i need to do the configuration. And i assigned all the required ESS roles on the backend.
    Thanks in Advance
    Adapag

    Hi,
    I don't think supressing through Global Personalization will change the business logic. Within the Business Logic it checks for the mandatory field.
    After the changes I guess you need to make the changes accordingly.
    The below link might be of some help.
    http://wiki.sdn.sap.com/wiki/pages/viewpage.action?spaceKey=profile&title=ESSPersonalInformationUIenhancementwithoutmodification&decorator=printable
    Please correct if I am wrong.
    Cheers-
    Pramod

  • BDC not inserting data in mandatory fields of MM01

    Suddenly My BDC for sales maintenance View is not working as it is not inserting data in Mandatory fields.?can any one tell me the reason

    Hi Satyanarayan,
    1. Check ur code in debug to see if your internal table contains value in mandatory fields
    2. Try executing BDC program online to figure out the problem....
    3. Check ur code to see whether u r assigning values to this fields...
    Let me know if these things are ok in ur code...
    Enjoy SAP.

  • MM Manage mandatory field in material master data

    Hi,
    i need to manage some fields in MM01 and MM02 in order to have these fields mandatory if other fields have particular value. For example, if material type is ZFER and Prod.hierarc (in Basic Data 1) is AL001, only in this case i want that field Comm./imp. code ,in view Foreign Trade import, is mandatory.
    I'm looking for an user-exit. I find EXIT_SAPLMGMU_001 but with this solution i have a problem. The mandatory of field is active only during saving, on the contrary i would like that this mandatory will be similar to the standard.
    Thanks for help,
    Michele Garofalo

    Hi,
    I would like to make a field mandatory in Master Data.....how can i make a field mandatory field?
    please provide me solution for this one
    Cheers...

  • Useful life is asking mandatory field in asset master data

    while asset master creation useful life is asking mandatory field in dep.key : ZSLU. actually i have to give "ZERO" in useful life field. i have set screen layout in AO21 also.again asking mandatory field. I got the one point, I think this is the problem,
    Note: Base method 0011 (Ordinary: percentage from useful life) already assigned in dep. Key ZSLU. If we assigned in dep. key ZSLU, we should give positive values for useful life in asset master data.
    I changed base method 0002 instead of 0011, it was accepted, If i change base method(0011),
    i want base method instead of 0011?
    which base method i have to give? please give suggestion?
    Thanks
    indu

    Hi ,
    i have changed optional field also. it's asking mandatory, i have tested base method 0002 instead of 0011. if i give 0002 or other base method, it is accepting.
    Note: if we mention base method 0011, we must give passitive values in useful life.
    what i have to do? please tell me?

  • Mandatory Field for Master Data Creation

    Dear Experts,
    How can I make "Street 2" Field as a Mandatory Field when I create Customer Master data (XD01) ?
    Thanks in advance for your kind support.
    Best Regards.
    Ripon

    Hi
    KIndly go to the belwo path and choose  Create customer centrally  and make the street field mandatory
    SPROFinancial accounting-Accounts receivable and accounts payable -Customer accounts-Mastr data---Define screen layout  per activity (customers)
    By doing above system will show mandatory for all account group when creating customer master thjrough XD01
    If you want to do mandatory for account groupo the n go to t code OBD2
    Regards
    Damu

  • FI01 - city field mandatory in bank creation

    Hi
    I want city field to be mandatory while bank creation (FI01).
    Is it possible?
    Thanks
    Ofer

    Hi,
    Check with an ABAPer to see if there is any screen exit to make it mandatory.
    Or the other easy way is to create a screen variant using SHD0.
    Regards,
    Sridevi

  • WLK1 Table mandatory field data for DATBI & DATAB missing

    Hi ABAPers,
    I have an issue in production i.e in table WLK1 few records have created which have data missing from mandatory field DATBI & DATAB . Can anyone tell me the reason for that and how to delete those records.
    Thanks,
    Soumya .

    Here in our case we are creating materials and availing certain time period i.e. DATAB and DATBI  for selling those in different stores. So if those goes missing will certainly cause problem.
    So, just by a creating Z code for selcting those records then deleating them and after that listing them again to database will solve the problem or not?
    Thanks.

  • Sales Order "Required Delivery Date" Mandatory Field

    Hi all,
    We want to create sales orders with blank required delivery date field. We will fill this field in future time cause of our processes. But it is a mandatory field when creating order.
    Can we implement this as above not a mandatory field and will it have negative effects to the system ?
    Thanks,

    Check with your SD/LE functional specialist on whether this can be configured.  Alternatively, you might insert a specific future date and update when the delivery date is known...Generally, however, one expects that someone wanting to buy something from us has a delivery date in mind...whether we agree to that date or can promise to deliver on that date is a different matter....

Maybe you are looking for