Financial Services > Investment & Wealth Management
Fund Administration & Compliance
Back-office operations for mutual funds including NAV calculation, unit allotment, investor servicing, regulatory reporting, and SEBI compliance — the infrastructure behind India's ₹53L Cr mutual fund industry
₹53L Cr
Industry AUM
44
Fund Houses
~67%
CAMS Share
2,000+
Daily NAVs
Understanding Fund Administration & Compliance— A Developer's Domain Guide
Fund Administration covers all back-office operations that keep mutual funds running — from calculating NAV daily to processing investor transactions (purchases, redemptions, switches), maintaining unit registers, generating SEBI-mandated reports, and ensuring compliance with AMFI regulations. In India, CAMS and KFintech dominate as Registrar & Transfer Agents (RTAs), processing millions of MF transactions daily for all fund houses. Fund houses (AMCs) like HDFC AMC, SBI MF, and Nippon rely on RTAs for investor servicing while focusing on fund management.
Why Fund Administration & Compliance Domain Knowledge Matters for Engineers
- 1India's MF AUM crossed ₹53 Lakh Crore — massive scale technology challenge
- 2CAMS and KFintech are duopoly RTAs — processing crores of transactions daily
- 3SEBI continuously updates regulations — ongoing compliance engineering
- 4SIP book at ₹24,000 Cr/month means daily mass processing of debit + allotment
- 5NFO (New Fund Offer) processing, IDCW (dividend) processing — complex batch operations
- 6MF Central (SEBI mandate) created unified investor view — consolidation tech challenge
How Fund Administration & Compliance Organisations Actually Operate
Systems & Architecture — An Overview
Enterprise Fund Administration & Compliance platforms are composed of a set of core systems, data platforms, and external integrations. For a detailed, interactive breakdown of the core systems and the step-by-step business flows, see the Core Systems and Business Flows sections below.
The remainder of this section presents a high-level architecture diagram to visualise how channels, API gateway, backend services, data layers and external partners fit together. Use the detailed sections below for concrete system names, API examples, and the full end-to-end walkthroughs.
Technology Architecture — How Fund Administration & Compliance Platforms Are Built
Modern Fund Administration & Complianceplatforms follow a layered microservices architecture. The diagram below shows how a typical enterprise system in this domain is structured — from the client layer through the API gateway, backend services, data stores, and external integrations. This is the kind of architecture you'll encounter on real projects, whether you're building greenfield systems or modernising legacy platforms.
End-to-End Workflows
Detailed, step-by-step business flow walkthroughs are available in the Business Flows section below. Use those interactive flow breakouts for exact API calls, system responsibilities, and failure handling patterns.
Industry Players & Real Applications
🇮🇳 Indian Companies
CAMS (Computer Age Management Services)
Registrar & Transfer Agent (RTA)
Java, Oracle, Custom
India's largest MF RTA — listed on NSE (₹10,000 Cr+ market cap)
KFintech (KFin Technologies)
Registrar & Transfer Agent (RTA)
Java, Oracle, Custom
Second largest RTA — also serves capital markets, insurance
HDFC AMC
Asset Management Company
Custom + CAMS
India's largest private AMC by AUM
SBI Mutual Fund
Asset Management Company
Custom + KFintech
India's largest AMC overall by AUM
Nippon India MF
Asset Management Company
Custom platform
Listed AMC, strong retail distribution
BSE StAR MF
Transaction Platform
Custom Exchange Tech
BSE's MF transaction routing platform
🌍 Global Companies
SS&C Technologies
USA/GlobalFund Administrator
Proprietary + DIMENSION
World's largest fund administrator — $3T+ AUA
BNY Mellon | Pershing
USA/GlobalCustodian + Fund Admin
Proprietary + Eagle platform
Global custody and fund servicing giant
State Street Corporation
USA/GlobalCustodian + Fund Admin
Custom + AllData
Custodian for $30T+ assets globally
JP Morgan Fund Services
GlobalFund Administrator
Proprietary
Institutional fund administration
Broadridge Financial
USA/GlobalTechnology + Operations
Custom SaaS
Fund processing, proxy voting, distribution tech
🛠️ Enterprise Platform Vendors
AMFI (MF Central)
Unified investor portal
SEBI-mandated consolidated MF account view
NSDL / CDSL
Demat accounts, MF units
Depositories — hold MF units in demat form
NPCI (NACH)
Auto-debit mandate
SIP auto-debit infrastructure
Finacle / FinnAxia
Banking + Fund Accounting
Core banking integrated with fund admin
Core Systems
These are the foundational systems that power Fund Administration & Compliance operations. Understanding these systems — what they do, how they integrate, and their APIs — is essential for anyone working in this domain.
Business Flows
Key Business Flows Every Developer Should Know.Business flows are where domain knowledge directly impacts code quality. Each flow represents a real business process that your code must correctly implement — including all the edge cases, failure modes, and regulatory requirements that aren't obvious from the happy path.
The detailed step-by-step breakdown of each flow — including the exact API calls, data entities, system handoffs, and failure handling — is covered below. Study these carefully. The difference between a developer who “knows the code” and one who “knows the domain” is exactly this: the domain-knowledgeable developer reads a flow and immediately spots the missing error handling, the missing audit log, the missing regulatory check.
Technology Stack
Real Industry Technology Stack — What Fund Administration & Compliance Teams Actually Use. Every technology choice in Fund Administration & Complianceis driven by specific requirements — reliability, compliance, performance, or integration capabilities. Here's what you'll encounter on real projects and, more importantly, why these technologies were chosen.
The pattern across Fund Administration & Compliance is consistent: battle-tested backend frameworks for business logic, relational databases for transactional correctness, message brokers for event-driven workflows, and cloud platforms for infrastructure. Modern Fund Administration & Complianceplatforms increasingly adopt containerisation (Docker, Kubernetes), CI/CD pipelines, and observability tools — the same DevOps practices you'd find at any modern tech company, just with stricter compliance requirements.
⚙️ backend
Java / Spring Batch
Batch NAV calculation, SIP processing, large-scale transaction processing
Oracle / PL-SQL
Core fund accounting, unit registry, transaction processing at CAMS/KFintech
Python
Compliance analytics, data reconciliation, reporting automation
COBOL (legacy)
Some legacy fund accounting systems at older RTAs and fund houses
🖥️ frontend
React / Angular
Fund house dashboards, compliance reporting portals
Excel + VBA (operational)
Fund manager tools, NAV override workflows
🗄️ database
Oracle Database
Core transaction and unit registry at major RTAs
PostgreSQL
Modern greenfield components, reporting databases
Apache Hadoop / Spark
Large-scale analytics, historical transaction processing
Apache Kafka
Real-time transaction events, NAV distribution
💡 integrations
AMFI Portal
NAV submission, scheme data, compliance disclosures
NSE/BSE Market Data
Closing prices for portfolio valuation
NPCI NACH
SIP auto-debit mandate processing
NSDL / CDSL
Demat unit credit/debit for demat MF folios
RBI / SEBI APIs
Regulatory data submission and compliance
Interview Questions
Q1.How is NAV calculated for a mutual fund and what are the key components?
NAV = (Total Assets - Total Liabilities) / Number of Units Outstanding. Total Assets = Market Value of Portfolio (securities at closing price) + Cash & Equivalents + Accrued Income (dividends declared but not received, interest accrued). Total Liabilities = Accrued Expenses (TER accrual, management fees, audit fees, custodian charges). TER is deducted daily = Annual TER / 365. Example: Portfolio = ₹100 Cr, Cash = ₹2 Cr, Accrued Income = ₹50L, Expenses = ₹10L, Units Outstanding = 1 Cr → NAV = (100 + 2 + 0.5 - 0.1) Cr / 1 Cr = ₹102.40. For debt funds, bonds are marked using prevailing yield curves (AMFI's valuation matrix), not market price.
Q2.What is the cut-off time rule for mutual fund transactions and why does it matter?
SEBI specifies cut-off times to determine which NAV applies. Equity/hybrid funds: Purchase before 3 PM → same-day NAV (if funds realized). Redemption before 3 PM → same-day NAV. Liquid/overnight funds: Different rules — 1:30 PM cut-off for same-day NAV. Key principle: Fund must have realized funds (money in AMC account) for the cut-off to apply. For investments via NACH (SIP), the NAV is of the day funds are received in the AMC pool account. System impact: All transactions must be time-stamped precisely, cut-off logic must handle time zones, holidays, and debit confirmation timing correctly.
Q3.How does an RTA handle SIP bulk processing on the 5th of a month?
Challenge: Millions of SIPs debit on the same date. Process: 1) Night before: Generate NACH file with all SIP mandates due — submitted to NPCI via sponsoring bank. 2) 5th morning: NACH debit processed — banks debit investor accounts, funds aggregated in SIP collection account. 3) Payment confirmation: NPCI sends success/failure file — CAMS reconciles. 4) Transaction creation: For each successful debit, create purchase transaction with cut-off time stamp. 5) Failed debits: Marked, investor notified, SIP pause counter incremented (3 consecutive failures → SIP cancelled). 6) Bulk NAV application: After NAV published, batch process applies NAV to all transactions. 7) Unit allotment: Batch unit credit to all folios. System must be horizontally scalable — CAMS processes 30M+ SIP transactions monthly.
Q4.What is the difference between CAMS and KFintech's role vs an AMC?
AMC (Asset Management Company): Manages the fund — investment decisions, research, portfolio construction. Examples: HDFC AMC, SBI MF, Nippon MF. RTA (Registrar & Transfer Agent): CAMS/KFintech — handles all investor servicing. They maintain: Unit registry (who owns what units), Process all transactions (purchase, redemption, switch), KYC validation, SIP mandate management, SOA/CAS generation, Dividend (IDCW) processing, Compliance reporting to AMFI/SEBI. Business model: AMC pays RTA service fee (bps on AUM). CAMS serves ~67% market, KFintech ~33%. Conflict check: An AMC cannot have its own RTA (independence requirement). MF Central (SEBI mandate) now provides single consolidated view across RTAs.
Q5.Explain the SEBI compliance requirements for mutual funds that require technology support.
Key SEBI requirements: 1) Daily NAV disclosure — all NAVs uploaded to AMFI by 9 PM, 2) Monthly portfolio disclosure — holdings by 10th of following month, 3) Half-yearly scheme portfolio — full portfolio twice a year, 4) CAS (Consolidated Account Statement) — monthly statement to investors transacting in that month, 5) FATCA/CRS — foreign investors' account info to Income Tax dept, 6) Load structure disclosure — entry/exit loads on scheme pages, 7) Expense ratio cap — SEBI limits TER (e.g., equity: 2.25% max for small AMCs), 8) Insider trading — monitoring of employees dealing in schemes they manage, 9) Stress testing — monthly liquidity analysis for open-end debt schemes, 10) SCORES portal — investor grievance redressal within 21 days. Technology required: Compliance workflow systems, automated report generation, regulatory API integrations, grievance management system.
Glossary & Key Terms
NAV
Net Asset Value — price per unit = (Total Assets - Liabilities) / Units Outstanding
RTA
Registrar & Transfer Agent — CAMS/KFintech — processes MF investor transactions
AMC
Asset Management Company — manages the fund portfolio (HDFC AMC, SBI MF)
Folio
Unique investor account number within an AMC — holds all schemes of that AMC
TER
Total Expense Ratio — annual fee charged by the fund, deducted from NAV daily
IDCW
Income Distribution cum Capital Withdrawal — dividend option in mutual funds (renamed from Dividend)
CAS
Consolidated Account Statement — monthly statement showing all MF holdings across fund houses
AMFI
Association of Mutual Funds in India — industry body for MF regulation compliance
SWP
Systematic Withdrawal Plan — periodic redemption of fixed amount from a fund
STP
Systematic Transfer Plan — regular switch between two schemes (liquid to equity)
Cut-off Time
SEBI-mandated deadline to determine which day's NAV applies to a transaction
NFO
New Fund Offer — launch period for a new mutual fund scheme