🧑‍🤝‍🧑
Citizen Facing Forms
Council Wide Digital PlatformNo Code Service CreationGCloud Information
  • Introduction
  • LGaaP Services
  • This Guide
  • Platform Functionality
    • Platform Functionality
    • Integration Error Guidance
  • 💙Benefit/Welfare Forms
    • Introduction
    • eClaim
      • Local Council Tax Support
      • Universal Credit
      • Dynamic Evidence
      • Fast Track
      • Benefit App Integration
      • EDMS Integration
      • Reporting
      • Form Level Settings
      • Form Configuration (Files)
      • Value Add Functionality
        • Call Validate - ID Checking
        • Risk Based Verification
          • Settings
          • Configuration (Files)
    • Calculator
      • Settings
      • Calculator Configuration
    • eChanges
      • Intelligent Change Processing
      • Universal Credit
      • Dynamic Evidence
      • Fast Track
      • Benefit App Integration
      • EDMS Integration
      • Form Level Settings
      • Form Configuration (Files)
      • Value Add Functionality
        • Risk Based Verification
          • Settings
          • Configuration (Files)
    • HBAA - Full Case Review
      • Intelligent Change Processing
      • Universal Credit
      • Review Your Claim
      • Dynamic Evidence
      • Benefit App Integration
      • EDMS Integration
      • Form Level Settings
      • Form Configuration (Files)
    • Self Employed Earnings
      • Settings
      • Configuration (Files)
    • Free School Meal Holidays
      • Integrations
        • Ordnance Survey
        • OpenProcess
          • Dynamic Notifications
          • Issuing Vouchers
        • Loqate - Bank Check
        • DfE - ECS
        • Benefit Check
      • Checking integrations
      • BACS Extract
      • Data Extract
    • Additional Services
  • 💳Council Tax Forms
    • Council Tax Services
      • Introduction
      • Direct Debit
        • Real-time Checks
        • Back-office Automation
        • EDMS Automation
        • Settings
        • Direct Debit Email
      • Single Person Discount
        • Real-time Checks
        • Back-office Automation
        • EDMS Automation
        • Settings
      • Change of Address
        • Real-time Checks
        • Back-office Automation
        • EDMS Automation
        • Settings
        • Notification Configuration
      • Discounts / Exemptions
        • Real-time Checks
        • Back-office Automation
        • EDMS Automation
        • Settings
        • Configuration
      • Special Arrangements
        • Real-time Checks
        • Back-office Automation
        • EDMS Automation
        • Settings
      • Request a Refund
        • Real-time Checks
        • Back-office Automation
        • EDMS Automation
        • Settings
      • Local Council Tax Support
        • Real-time Checks
        • Back-office Automation
        • EDMS Automation
      • RPO Localisation
      • Additional Services
      • Landlord Voids & Lets Processing
        • Real-time Checks
        • Back-office Automation
        • File Format
        • EDMS Notification
  • 🚚Bin / Waste Forms
    • Introduction
    • Report a Missed Bin
      • Back Office Integration
      • Settings
      • Missed Bin Configuration
    • Request a Bin
      • Back-office integration
      • Settings
      • Request a Bin Configuration
    • Bulky Waste Collection
      • Back-office integration
      • Settings
      • Bulky Waste Configuration
        • Bulky Waste configuration - new April 2024
    • Request Assisted Collection
      • Back-office integration
      • Settings
      • Assisted Collection Config
    • Clinical Waste Collection
      • Back-office integration
      • Settings
      • Clinical Configuration
    • Garden Waste Subscriptions
      • Garden Waste Form
      • Back-office integration
      • Settings
    • Waste Localisation
    • Agent Payments
  • 🏭Business Rates Forms
    • Direct Debit
      • EDMS Integration
      • Settings
      • Configuration
    • Relief Application
      • EDMS Integration
      • Settings
    • Moves, Reliefs and Pay
      • EDMS Integration
      • Settings
    • Additional Services
  • 🏪Licensing Forms
    • Temporary Event Notice App
      • Back-office Integration
      • EDMS Integration
    • Taxi Driver - Licence Renewal
      • Back-office Integration
      • EDMS Integration
      • Settings
    • Taxi Driver - Vehicle Licence
      • Back-office Integration
      • EDMS Integration
  • 💚Social Care Forms
    • Social Care Financial Assessments
      • Settings
      • SCFA Calculator
      • EDMS Integration
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. Business Rates Forms
  2. Direct Debit

Configuration

PreviousSettingsNextRelief Application

Last updated 3 years ago

Was this helpful?

Within Form System Management it is possible to change the days available for direct debit payments using configuration files.

These are in the Files area when the form is selected from the drop down:

These enable you to control the different options available within these. It should be noted that the two options weekly / fortnightly can be modified to instead contain say - Annual/Half-yearly options.

To update the monthly file so the user can see the available dates simply click on the monthlypaymentcodes.xml and edit it to suit your payment dates. See the example below where:

  • Enabled is set to TRUE - so this is a valid frequency type for a citizen to select

  • Payment Frequency is M for monthly

  • Monthly codes includes - 1ST, 10TH, 28TH

<MonthlyPayment>
  <Enabled>TRUE</Enabled>
  <PaymentFrequencyCode>M</PaymentFrequencyCode>
  <MonthlyCodes>
    <Code resourcekey="1ST">DDEB(1)12</Code>
    <Code resourcekey="10TH">DDEB(10)12</Code>
    <Code resourcekey="28TH">DDEB(28)12</Code>
  </MonthlyCodes>
</MonthlyPayment>

The codes e.g. DDEB(1)12 are only relevant where integration is in place

It's simply a case of adding additional row for each additional payment date if there are more.

Adjusting a file to support a different payment frequency

If you don't want to support fortnightly but you do want to support annual simply update the file as shown:

<FortnightlyPayment>
  <Enabled>TRUE</Enabled>
  <PaymentFrequencyCode>W</PaymentFrequencyCode>
  <FortnightlyCodes>
    <Code resourcekey="Friday">DDEB F F</Code>
    <Code resourcekey="Monday">DDEB F M</Code>
  </FortnightlyCodes>
</FortnightlyPayment>

To this:

<FortnightlyPayment>
  <Enabled>TRUE</Enabled>
  <PaymentFrequencyCode>A</PaymentFrequencyCode>
  <FortnightlyCodes>
    <Code resourcekey="1st of April">ANNUAL</Code>
  </FortnightlyCodes>
</FortnightlyPayment>

🏭