+44 (0) 1603 937800 — Mon to Fri, 9am to 5pm UK time
A - A - A

Latest Industry News

Ruth Kirkpatrick    7th December, 2018

An excellent article in today's Pension Expert, about data quality and the impact poor data will have on the upcoming move to the Pensions Dashboard.

https://www.pensions-expert.com/Comment-Analysis/Will-poor-data-standards-stand-in-way-of-dashboard-success

Undertaking a data improvement project (particularly on deferred members, not just those about to retire), is an essential aspect of scheme management as schemes head for the world of the Dashboard.

function submitForm(formId) { const form = document.getElementById(formId); const formData = new FormData(form); fetch('/api/contact', { method: 'POST', body: formData }) .then(response => { if(response.ok) { form.classList.remove('fail'); form.classList.remove('ratelimit'); form.classList.add('success'); form.reset(); } else if(response.status == 429) { form.classList.remove('success'); form.classList.remove('fail'); form.classList.add('ratelimit'); } else { form.classList.remove('success'); form.classList.remove('ratelimit'); form.classList.add('fail'); } }) }