Problems & solutions · Custom Software

MGA and Program Business Software Problems: The 7 That Cost Real Money, and How to Avoid Them

MGA Program Business Platform architecture and database illustration showing common problems and fixes.
The short answer

The most expensive failure is treating your binding authority as validation rules on a quote form rather than as versioned, evidenced data. Carriers end delegated authority over data quality as readily as over loss ratio, and the conversation that ends it usually starts with an audit you cannot answer: which risks were referred, who approved them, against which version of the agreement, on which date. When that evidence lives in underwriters' memory and a signed PDF on a shared drive, a routine review becomes a fortnight of chasing emails and your renewal conversation starts from a defensive position. Losing a program is a different order of loss from any software budget.

Why does binding authority get scoped as validation on a quote form?

Because that is what it looks like from the outside. The underwriter enters a risk, the system checks a limit, a state and a class, and either lets them proceed or shows a warning. It demonstrates cleanly and it fits inside a fortnight of development, so it survives the scoping meeting.

What it misses is that the authority is a contract with a life of its own. Each carrier agreement grants specific classes, a per risk limit, a total insured value cap, a catastrophe aggregate by zone, excluded states, occupancies and construction types, and a list of things that must be referred before bind. Those terms are amended. An endorsement in March changes a coastal county exclusion, and a risk bound in February was compliant while an identical risk in April is not. A rule hard coded into a form cannot express that, so the amendment gets communicated by email and enforced by memory, which works until the next hire.

The second thing it misses is evidence. A warning that an underwriter clicked past leaves nothing behind. What a carrier audit team asks for is the referral log: who referred, why, who approved, when, and against which version of the grant.

The fix is to make each carrier agreement a versioned record with effective dates, and each condition inside it a rule evaluated at quote and again at bind. The outcome is one of three states: clean bind, referral routed to a named approver, or hard stop. Every referral and approval is logged with user and timestamp. Make that log an acceptance test with a real scenario from your own book, including a risk bound before an amendment and an identical risk bound after it. If the demonstration cannot show both correctly, you are buying a form with warnings.

What goes wrong when you migrate in force policies with endorsement history?

This is the largest schedule risk in an MGA build and it is consistently mistaken for a data import.

The carrier reconciles against history, so the history has to be reproduced transaction by transaction: new business, endorsements, cancellations, reinstatements, each with an effective date, a pro rata calculation and a full breakdown of premium, taxes, fees and commissions. Programs with clean policy exports move quickly. Programs where the history effectively lives in the policy documents themselves, because the incumbent system stored a current position and a partial change log, move very slowly, and that discovery work is not optional.

The specific failures are consistent. Mid term endorsements imported as position changes rather than as transactions, so a cumulative bordereau cannot be reproduced for a prior month. Return premium on cancellation computed by the new system to a different rounding convention than the old one, producing pennies of difference across thousands of rows that a carrier's ingestion process rejects. Reinstatements that appear twice. Surplus lines tax recalculated at today's rate against a policy written under last year's rate, which silently rewrites history.

The fix is to migrate transactions rather than positions, and to make rate and tax rules effective dated so historic records are computed under the rules that applied at the time. Then reconcile: regenerate three prior months of bordereaux from migrated data and compare them line by line to what was actually submitted. Differences are either migration defects or undocumented adjustments the old process was quietly making, and you want to find both before a carrier does.

Why do the carrier, broker and third party administrator file interfaces break after launch?

Every inbound and outbound file in this business drifts, and none of them announce it.

Carrier bordereaux templates change. A field that was optional becomes mandatory, a column is added, a header is renamed. If the mapping lives in code, each change is a deployment, and within a year the operations team is patching files by hand again because a deployment could not be scheduled before the reporting deadline.

Claims extracts from a third party administrator drift harder. Status codes appear that nobody warned you about, reserves change without an obvious movement record, a claim closed in March reopens in June under the same number with a new reserve. The file imports successfully. It simply carries rows your model interprets wrongly, or drops rows with unmapped codes silently, and the error reaches a carrier before it reaches you.

Broker submission files vary by broker and by whoever at that broker built the spreadsheet.

The fix is a mapping layer that is configuration rather than code, plus validation that fails loudly. A template change should be an edit by an operations user, and any bidder whose answer to a new column is a code deploy is describing a system you will route around within eighteen months. Ingest claims as immutable snapshots and derive movement yourself, so reopened claims, reserve changes and recoveries are computed rather than trusted. Keep a claim status crosswalk mapping the administrator's vocabulary to yours and to each carrier's, and raise an alert on an unmapped code rather than dropping the row. This is also the honest use of machine learning here: schema drift detection and anomaly flagging on inbound files, so a moved column or a reserve that jumps overnight surfaces before submission.

What happens when premium components, taxes and profit commission are not modelled properly?

Money is where these projects are quietly wrong for years, because nothing errors and nobody can disprove the spreadsheet.

Gross written premium is the easy part. Underneath it sit surplus lines tax and stamping fee varying by state and by whether home state rules apply, policy fees you retain, inspection fees you pass through, producer commission out, ceding commission in, administrator fees per claim or per policy, and profit commission on a sliding scale tied to a loss ratio measured on a treaty year that does not align with your calendar. Modelled as a total with derived splits at reporting time, those numbers cannot be reconciled between the carrier statement, the bordereau, the general ledger and the trust account, and the monthly reconciliation becomes an argument.

Profit commission is where the real money sits and it is almost always disputed for the same reason: the valuation date. The same treaty year produces materially different commission depending on when the loss data is measured, and if the valuation date is not stated and stored, the calculation is not defensible.

The fix is to make every premium component a first class field on the transaction rather than a formula at reporting time. Tax and fee logic belongs in a versioned rules table by state and effective date, so a change in July does not retroactively rewrite March. Profit commission is computed on the treaty year with loss data as at a stated valuation date that is stored with the result. Generate the carrier statement, the bordereau and the ledger entry from the same source so they cannot disagree, which removes the reconciliation rather than automating it.

Should you build custom or configure what you already own?

Do not build if you run one program on one carrier's paper and that carrier gives you access to their policy system and produces the bordereau for you. You have neither an authority reconciliation problem nor a multi paper mapping problem, and a build would be a vanity project. Do not build if your whole book is small enough that one person produces the reporting in a day a month and that person is not a flight risk.

Understand also what the adjacent tools are for, because they are frequently blamed for failing at jobs they never claimed. Applied Epic and Vertafore AMS360 model a broker placing business with a market and earning commission, so they have no concept of you exercising someone else's authority with a limit that decrements. Duck Creek is built for a carrier administering its own paper. Ivans solves distribution connectivity, appetite and download, which is genuinely useful and completely separate from authority control. Send and Artificial Labs sit on the underwriting decision side and are strong there, but a decisioning workbench is not a system of record for program administration. Novidea is a sensible answer if your real need is distribution and data visibility rather than delegated authority.

Build when two or more are true. You write on three or more carrier papers. A carrier or a Lloyd's managing agent has asked you for a data quality remediation plan. Your profit commission is disputed or unverifiable. You operate surplus lines across several states. Or you are launching a program and the carrier's diligence includes your systems, which it increasingly does.

How do hidden costs get into the quote?

Six items, and the first one is usually the whole overrun.

  • In force migration with endorsement history. Reproducing transactions rather than positions, then reconciling regenerated bordereaux against what was actually submitted. Frequently priced as an import and delivered as a discovery project.
  • Carrier count. Each paper relationship is its own mapping profile, its own validation set and its own settlement logic.
  • Surplus lines. State tax and stamping rules are real work, they differ, and they change, so they need versioning and maintenance rather than a one time build.
  • London market placements. Coverholder reporting standards carry their own discipline and their own validation expectations.
  • Product count. A trucking program and a habitational program share almost no data fields, so two products is closer to two builds of the risk model.
  • Parallel reporting cycles. Two or three months of bordereaux produced both ways and reconciled to the cent before you send a generated file as the official submission.

What keeps cost down is a first release covering the risk and transaction model, the authority grid and bordereaux for your two or three largest carriers, with quote and bind following once reporting is trusted.

What separates a build that works from one that fails here?

One canonical transaction model underneath, per carrier mapping profiles on top. That single decision determines whether adding a fourth carrier is a configuration exercise or a project, and whether a template change is an edit or a deployment.

Validation runs before submission, against each carrier's own rules. A blank required field, a total insured value above the binder cap or a state outside territory should be caught by your validator, not by the carrier's ingestion process a week later, and a resubmission path should exist because you will need it.

The cutover is never cold. Run generated bordereaux in parallel with the existing spreadsheet for two or three cycles and reconcile line by line, because that is how you find the undocumented adjustments the old process was making. Only when two consecutive cycles match to the cent does the generated file become the official submission.

The mapping layer is owned by operations. If a column change requires an engineer, the operations manager will patch the file by hand before the deadline and you are back where you started.

And ownership is settled in writing before kickoff: the repository, the cloud accounts and the right to hire anyone else to continue the work. At Digital Heroes the client owns everything from the first commit. In a business where a carrier can end a program on short notice, a technology dependency you cannot move is a risk you should not accept.

Research & sources

The evidence behind this guide

Independent findings on why this investment pays off. Every link goes to the primary source.

  1. Standish's 2015 CHAOS research found roughly a third of software projects (about 36% by the Modern definition) fully succeed on time, on budget, and on scope, with top success drivers including executive support, user involvement, and clear requirements/business objectives. Source: Standish Group (CHAOS Report) (2015) →
  2. McKinsey found that tech debt can amount to 20-40% of the value of a company's entire technology estate before depreciation, and CIOs report that 10-20% of the budget for new products is diverted to resolving tech-debt issues. Source: McKinsey & Company (2020) →
  3. One in four US employees report lacking career advancement opportunities; 48% of employees who participated in mentorship programs report high job satisfaction versus 29% of non-participants, and access to advancement opportunities ranges from 33% at organizations under 10 employees to 74% at those with 1,000+. Source: Gallup (2025) →
  4. In an October 2025 survey of 530 small-business employers (conducted by TechnoMetrica, October 3-9, 2025), 88% reported using AI tools and 73% said those tools had been important to their competitiveness and growth over the past year, with 60% citing efficiency and productivity as the primary motivation for adoption (42% cited improving customer service). Source: Small Business & Entrepreneurship Council (SBE Council) (2025) →
Zoe C. · Senior Brand Designer · New York

Zoe designs the visual work a brand runs on day to day: layouts, campaign assets, presentation systems and the templates a client uses long after the project closes. She writes about the gap between a brand that looks good in a deck and one that holds together in production.

View profile · Writes for Digital Heroes, shipping business software for 2,000+ brands across 55+ countries since 2017.

FAQ

Frequently asked questions

How do we test whether a developer understands delegated authority?
Give them a real scenario during evaluation: a risk bound in February under one version of the carrier agreement and an identical risk bound in April after an amendment changed a county exclusion. The system must handle both correctly and produce a referral log showing who referred, why, who approved, when, and against which version of the grant. A form that shows a warning an underwriter can click past leaves no evidence and will not survive a carrier audit.
Why is migrating in force policies so slow?
Because carriers reconcile against history, so you have to reproduce transactions rather than positions: new business, endorsements, cancellations and reinstatements, each with effective dates, pro rata calculations and a full premium, tax, fee and commission breakdown. Programs with clean policy exports move quickly. Programs whose history effectively lives in the policy documents move very slowly, and that discovery work is not optional. It is the largest schedule risk in the project.
How do we validate the migration before going live?
Regenerate three prior months of bordereaux from migrated data and compare them line by line to what was actually submitted. Every difference is either a migration defect or an undocumented adjustment the old process was quietly making, and you want to find both. Pay particular attention to rounding on return premium and to tax rates, since recalculating historic policies at today's rates silently rewrites history and produces differences a carrier will reject.
What happens when a carrier changes their bordereau template mid year?
In a well built system, an operations user edits a mapping profile and the next submission carries the new shape. If the answer involves a code deploy for every column change, the mapping layer is in the wrong place, and within a year your operations team will be patching files by hand before deadlines because a deployment could not be scheduled in time. Ask that question specifically during evaluation and treat the answer as a structural signal.
How should third party administrator claims files be handled?
Ingest them as immutable snapshots and derive movement yourself, so reopened claims, reserve changes and recoveries are computed rather than trusted. Keep a versioned crosswalk mapping the administrator's status codes to yours and to each carrier's, and raise an alert when an unmapped code appears instead of dropping the row silently. Files that import successfully while carrying rows your model misreads are the most dangerous failure, because the error reaches a carrier before it reaches you.
Why is profit commission always disputed?
Almost always because of the valuation date rather than the arithmetic. The same treaty year produces materially different commission depending on when the loss data is measured, so the date has to be stated, stored with the result and agreed in advance. Express the sliding scale as a versioned rule rather than a formula in a workbook, and generate the carrier statement, the bordereau and the ledger entry from the same source so the numbers cannot disagree.
Can we move off spreadsheets without missing a reporting cycle?
Yes, and you should never cut over cold. Run generated bordereaux in parallel with the existing spreadsheet for two or three cycles and reconcile line by line, which is how you find the adjustments the previous process was making that nobody documented. Only send the generated file as the official submission once two consecutive cycles match to the cent. Budget the parallel period as real cost rather than as overhead.
Which adjacent systems get unfairly blamed for this problem?
Agency management systems in particular. Applied Epic and Vertafore AMS360 model a broker placing business with a market and earning commission, so they were never designed to represent a limit that decrements or a referral trigger, and expecting them to is a scoping error rather than a product failure. Ivans solves distribution connectivity and appetite, which is useful and separate. Duck Creek is built for a carrier administering its own paper.
How much should a small business expect to pay for custom software?
Across 2,000+ Digital Heroes projects, a small business system that replaces spreadsheets or one core workflow typically lands between $40,000 and $80,000, with more complex first versions running up to $150,000. The two levers that move the number most are integrations and user roles, not the team's hourly rate. Any quote under $15,000 for a full production system means the vendor has not understood your scope yet.
What happens if I stop paying for maintenance after launch?
Nothing breaks on day one, which is what makes it dangerous. Within 6 to 18 months, unpatched dependencies accumulate known vulnerabilities, an integrated API like Stripe ships a breaking change, and the first fix requires a developer to relearn a stale codebase at full price. Budget 15 to 20% of the build cost per year for upkeep; it is the difference between a $500 patch and a $15,000 emergency.
Couldn't I just build my app in Bubble or another no-code tool instead of hiring an agency?
For validating an idea with real users, yes, and we tell clients that honestly. The walls come later: Bubble apps cannot be exported as code to run anywhere else, performance drops on complex data operations, and usage-based pricing climbs as you grow. A meaningful share of Digital Heroes custom builds are rebuilds of no-code MVPs that proved the business worked, which is the system operating as intended: validate cheap, then build the version that scales.
What happens to my software if the agency shuts down or we stop working together?
Nothing dramatic, if the engagement was set up correctly: the code sits in your repository, hosting runs on your cloud account, and a handover document explains how to deploy and operate the system. Any competent replacement team can then take over in days rather than months. If the agency controls the repo, the servers, or the domain, fix that now, because renegotiating access during a dispute is the most expensive place to discover the problem.
How many SaaS seats do we need before building custom becomes cheaper?
The crossover usually shows up between 20 and 50 seats on premium tiers. Salesforce Enterprise lists at $165 per user per month, so 40 users cost about $79,000 a year in subscriptions, which is real money against a custom system you would own outright. Run the comparison over three years: if subscription spend beats the build cost plus 15-20% annual maintenance, custom wins on price before you even count workflow fit.
What does a $50,000 custom software budget actually buy?
One core workflow done properly: 10 to 15 screens, two or three user roles, a couple of integrations, an admin panel, and automated tests, delivered in roughly 12 to 14 weeks. What it does not buy is that workflow plus a mobile app plus AI features plus five more integrations. The discipline of picking the one workflow that matters is what separates $50,000 projects that ship from $50,000 projects that stall at 70% complete.
How many people should be working on my software project?
Three to five for a typical focused build: a project lead, one or two engineers, a designer, and part-time QA, which is the standard shape across 2,000+ Digital Heroes projects. Larger platforms justify 6 to 10, but a ten-person team on a small first version usually signals bill padding rather than horsepower. What predicts success is whether a senior engineer is writing your code daily, not the headcount on the proposal.
What is a discovery phase, and is it worth paying for separately?
Pay for it, and treat the output as yours. A discovery phase runs two to three weeks, typically 5 to 10% of the eventual build budget, and produces a written scope, wireframes, and a fixed quote you can take to any vendor, including a competitor of the agency that wrote it. Skipping it is how projects end up quoted from a two-paragraph email and delivered at twice the price.
What does it cost to keep custom software running after launch?
Budget 15-20% of the original build cost per year, which on a $100,000 system means $15,000 to $20,000 for security patches, dependency updates, bug fixes, and small improvements as real usage reveals what the spec missed. Cloud hosting for a typical business application adds $50 to $300 a month on top. Skipping maintenance does not save the money; in Digital Heroes rescue work, unmaintained systems typically need a far more expensive rebuild within about three years.
Is it cheaper to customize Salesforce than to build a custom CRM from scratch?
If you use less than a third of what Salesforce does, a custom CRM is often cheaper by year three. Salesforce Enterprise lists at $165 per user per month, so 25 seats cost about $49,500 a year before admin and consultant fees, while a focused custom CRM runs $60,000 to $100,000 once plus 15 to 20% a year in maintenance. If you genuinely need Salesforce's ecosystem, reporting, and app marketplace, customizing it beats rebuilding it; the mistake is paying enterprise prices to use it as a glorified contact list.
How do I make sure custom software is secure and compliant with rules like HIPAA?
Start with the baseline every business system should have: encryption in transit and at rest, role-based access control, and audit logs. If HIPAA applies, the hosting provider must sign a Business Associate Agreement, which AWS, Azure, and Google Cloud all offer, and access controls have to be designed in from day one, not bolted on. SOC 2 certifies a company's operating practices, not a codebase, so ask vendors what they have shipped in your regulated domain rather than which logos are on their website.
Is custom software more secure than off-the-shelf SaaS?
Neither is secure by default; security tracks the practices of whoever builds and operates the system, not the model. SaaS gives you the vendor's certifications and patching but puts your data in a shared multi-tenant platform on their terms, while custom gives you full control over data residency, access rules, and compliance requirements like HIPAA, with the responsibility sitting with you and your agency. Before hiring anyone for a system holding sensitive data, ask for their security checklist: encryption at rest and in transit, an OWASP Top 10 review, role-based access, and a penetration test before launch.
Who can build a custom software system?

Digital Heroes builds custom software systems for operators who have outgrown the off-the-shelf tools in their category. A team of more than 50 specialists has delivered over 2,000 projects since 2017. Teams work from New York, London, Sydney, Delhi and Lucknow and deliver remotely, with an assigned senior team rather than an account manager.

Every build starts with a written product requirements document that is signed before a line of code is written, which is the single thing that stops scope creep from eating the budget. Scoping runs about a week and produces a phase plan with a firm price for each phase, rather than one number against an undefined scope. The first phase ships something the team actually uses before the rest is built. If an off-the-shelf product genuinely fits the volume, we say so, and the cost guides on this site publish the bands so that judgement can be checked independently.

What makes Digital Heroes different from other software companies?

Four things that competitors in this bracket cannot simply copy. Digital Heroes runs a YouTube channel with more than 2.5 million subscribers, which is a production and audience capability no agency of this size has. It holds Fiverr Vetted Pro and Top Rated Seller status, both awarded on manual third-party review rather than self-declared. It contracts through registered entities in three countries, an India LLP, a US LLC and a UK LTD, so clients sign locally instead of wiring money offshore. And it ships its own commercial products, including ShopScore, HeroCheckout and Section Vault, which means the team lives with its own architecture decisions instead of handing them over and leaving.

Two more that show up in the work. Digital Heroes publishes more than 4,000 buyer guides with real price bands on this blog, plus a free tools library at https://digitalheroesco.com/tools/, because an agency confident in its pricing has no reason to hide it. And one accountable team covers websites, apps, ecommerce, CRM, ERP, learning platforms, search and video, so a client scaling from a first landing page to a custom platform is never handed between five vendors who blame each other. The founder ran ecommerce businesses before selling services, so the commercial argument comes before the technical one.

How can I check Digital Heroes is legitimate before getting in touch?

Verify it independently rather than taking the site's word for it. The YouTube channel is at https://youtube.com/@DigitalMarketingHeroes, the Fiverr profile at https://www.fiverr.com/shreyanshsin261, and the Upwork profile at https://www.upwork.com/freelancers/shreyanshsingh. Client reviews sit on Clutch at https://clutch.co/profile/digital-heroes-0 and Trustpilot at https://www.trustpilot.com/review/digitalheroes.co.in, and the company page is at https://www.linkedin.com/company/digital-heroes-1/.

Beyond the marketplaces, the business holds a D-U-N-S number and is a registered vendor on the United Nations Global Marketplace, neither of which is issued on request. Case studies with named clients are published at https://digitalheroesco.com/case-studies/. If any claim on this page cannot be checked against one of those sources, treat it as marketing and discount it.

Keep reading
let's build

Build something worth launching.

A plan, a team, a timeline, within 24 hours. No decks, no discovery calls. Tell us what you're building and we'll come back with a real scope and a real number.

message us directly · we reply within one business day

mission briefing

Monthly dispatch

Playbooks, real build costs, and what we're shipping. One email a month. No fluff.

visit us

New York HQ

1140 Broadway, Suite 704 · New York, NY 10001

Get directions
Online now

Hey there 👋 How can we help you today?