Implementation Guide for Oracle Billing Insight > Customizing Payment >

Customizing the Payment Amount Format


You can customize the payment amount format for the following features:

  • Credit card registration fee
  • Minimum and maximum payment amounts
  • Two decimal pattern
  • Whether to allow payments greater or less than the amount due
  • Whether to enable the preNote feature

To configure the payment amount format

  1. Open the payment.xma.xml file, found in the EDX_HOME\xma\config\modules\payment directory.
  2. Modify the parameters in the paymentConfigurationBean section as needed:

    <bean id="paymentConfigurationBean" class ="com.edocs.common.payment.config.PaymentConfigurationBean" scope="singleton">
    <property name="creditCardRegisterFee">
    <value>1.0</value>
    </property>
    <property name="paymentAmountGreaterthanAmountDue">
    <value>Yes</value>
    </property>
    <property name="minimumPayAmount">
    <value>1.0</value>
    </property>
    <property name="maximumPayAmount">
    <value>99999999.99</value>
    </property>
    <property name="twoDecimalPattern">
    <value>(([0-9]*[G]*)+)[0-9]*[D]?[0-9]{0,2}</value>
    </property>
    <property name="paymentAmountLessthanAmountDue">
    <value>Yes</value>
    </property>
    <property name="enablePreNote">
    <value>Yes</value>
    </property>
    </bean>

Implementation Guide for Oracle Billing Insight Copyright © 2016, Oracle and/or its affiliates. All rights reserved. Legal Notices.