book demo
Overview
Overview
deepset AI Platform
deepset Studio
Haystack
Haystack Enterprise
Solutions
Technical solutions
Retrieval Augmented Generation (RAG)
AI Agents
Enterprise Search
Text-to-SQL
Intelligent Document Processing (IDP)
industry solutions
Financial Services
Media and Publishing
Legal
Manufacturing
Government and Defense
Technology
Health and Life Sciences
Retail and Consumer Goods
Resources
Resource Center
Blog
Documentation
Webinars
Reports & Guides
Success Stories
News
featured
Blog: Building AI Agents with LLMs
No items found.
Company
About Us
Partners
Careers
Contact Us
Book Demo
book demo
AI for Insurance Sales
Faster Speed to Quote | Higher Conversion | Less Errors | Faster Onboarding
SAP S/4HANA AI Copilot ROI Calculator
# of SAP Users:
Onboarding Weeks Saved/User:
Cost/User/Week ($):
Tickets per Month:
Deflection Rate (%):
Cost per Ticket ($):
SME Hours Saved/Ticket:
Tickets needing SME per Month:
SME Hourly Rate ($):
Missteps Avoided/Year:
Avg. Cost per Misstep ($):
Consultant Days Saved:
Consultant Day Rate ($):
Platform Cost (Low) ($):
Platform Cost (High) ($):
Calculate ROI
Results:
function calculateROI() { const users = +document.getElementById('users').value; const weeks = +document.getElementById('weeks').value; const costWeek = +document.getElementById('costWeek').value; const tickets = +document.getElementById('tickets').value; const deflect = +document.getElementById('deflect').value / 100; const ticketCost = +document.getElementById('ticketCost').value; const smeHours = +document.getElementById('smeHours').value; const smeTickets = +document.getElementById('smeTickets').value; const smeRate = +document.getElementById('smeRate').value; const missteps = +document.getElementById('missteps').value; const misstepCost = +document.getElementById('misstepCost').value; const consultDays = +document.getElementById('consultDays').value; const consultRate = +document.getElementById('consultRate').value; const platformLow = +document.getElementById('platformLow').value; const platformHigh = +document.getElementById('platformHigh').value; const onboarding = users * weeks * costWeek; const support = tickets * 12 * deflect * ticketCost; const sme = smeTickets * 12 * smeHours * smeRate; const rework = missteps * misstepCost; const consulting = consultDays * consultRate; const total = onboarding + support + sme + rework + consulting; const roiLow = ((total - platformLow) / platformLow) * 100; const roiHigh = ((total - platformHigh) / platformHigh) * 100; const paybackLow = (platformLow / (total / 12)).toFixed(1); const paybackHigh = (platformHigh / (total / 12)).toFixed(1); document.getElementById('output').innerHTML = `
Total Annualized Benefit:
$${total.toLocaleString()}
ROI (Low Cost):
${roiLow.toFixed(1)}%
ROI (High Cost):
${roiHigh.toFixed(1)}%
Payback (Low Cost):
${paybackLow} months
Payback (High Cost):
${paybackHigh} months
`; }