All podcasts / No Priors / Summary

SAP: Bringing the 'Operating System' of a Company into the AI Era with CTO Philipp Herzig

2026-04-23 - 46 min - source - Read full transcript
Sarah Guo (host)Philipp Herzig

Key insights

SAP's 50-year durability comes from solving a scaling problem, not a technology bet.
SAP was founded in 1972 when its founders, then at IBM, kept re-implementing the same finance system for each customer and realized the economics didn't scale. Standard software was the fix. Herzig argues the company has since ridden mainframe-to-client-server, to internet, to mobile, to AI by keeping the same discipline: chase customer outcomes and ROI, not the underlying technology fad.
enterprise-ai-adoption
AI is restructuring enterprise software on three layers at once: UI, business process, and data.
Herzig maps the shift to the on-prem-to-cloud transition, where teams first ported old software and only later relearned CI/CD and multi-tenancy. With AI, SAP sees the same delayed realization happening across generative UI (dynamic, question-driven interfaces replacing fixed click paths), business processes (agents blending rigid SOPs with unstructured judgment, moving from software-as-a-service toward service/outcome-as-a-software), and a harmonized semantic data layer, because 'AI is only as powerful as the data is.'
enterprise-ai-adoption
The hardest AI engineering problem at enterprise scale is not building the demo, it's scale itself.
A 10-document RAG chatbot or a single MCP server is trivial and impressive in a POC. SAP has to handle thousands of documents, localized answers that depend on an employee's country/payroll/tax jurisdiction, and roughly 20,000 APIs - at which point context windows blow out and orchestration (disambiguating an overloaded term like 'order' into maintenance, sales, or purchase order) becomes the real engineering challenge.
engineering-at-enterprise-scale
Coding agents work because output is verifiable; enterprise agents need 'evals' to substitute for that missing signal.
Agentic coding succeeded because a coding agent can check its own work against compilation and unit tests. Finance, HR, and supply-chain agents have no equivalent built-in check, so SAP has to define explicit boundary conditions (security, privacy, code quality) and build evals that assert the agent's output against a known-correct outcome - a mindset shift from writing code first to specifying intent and verification criteria first.
ai-agents-and-verifiability
'Agent mining' turns every human intervention into training data for better standard operating procedures.
When an agent needs a human's clarifying answer (a decision not captured anywhere in the system of record - Herzig calls this 'tribal knowledge'), SAP now records that decision trace. The captured pattern either flags a local deviation as an anomaly to correct, or gets promoted into a new default SOP, creating a data flywheel that produces new evals and a system that improves as agents run.
ai-agents-and-verifiability
LLMs are a poor fit for predictive/tabular forecasting, so SAP built a separate foundation model for it.
Sequence-to-sequence token generation is not suited to regression and classification tasks like demand forecasting or days-sales-outstanding prediction. Classical ML (XGBoost, AutoML) works but doesn't scale - a single pharma customer operating in 90 countries needed 180 separate models. SAP's two-year research effort produced RPT-1, a transformer-based model aimed at bringing LLM-style democratization (small context, high accuracy) to structured/tabular prediction.
predictive-vs-generative-ai
The gap between AI innovation and AI outcomes is widening, not narrowing, inside most enterprises.
Herzig frames this as an 'innovation race' (how fast new AI capability appears) racing ahead of an 'outcome race' (how fast customers actually capture value), and argues the gap - not the pace of model progress - is SAP's real target to close for its customers.
enterprise-ai-adoption
Fragmented, siloed data - not model capability - is the top blocker to enterprise AI adoption.
Herzig ranks the barriers in order: (1) data disaggregated across systems due to past purchasing decisions or M&A, which caps what AI can do regardless of model quality; (2) sheer landscape complexity/scale; (3) security, citing the LiteLLM credential-leak vulnerability as proof enterprises can't deploy open-source AI tooling without hardening it, or the CISO 'doesn't have a job anymore.'
enterprise-ai-adoption
SAP is shifting pricing from seat-based licenses toward consumptive and eventually outcome-based models, but customers are pulling it back to a hybrid.
Concur and Fieldglass already priced outside the seat model; the rest of SAP is moving step by step toward consumption-based pricing and, once verifiability improves, toward outcome-based pricing like Sierra's. Customers resist full consumption pricing because they want cost predictability and don't yet fully trust agent outputs, so SAP's current model is a hybrid blending seats and consumption.
ai-driven-business-model-shift
Herzig expects most enterprise agent-to-system interaction to stay tool-calling/API-based, not computer-use/browser automation.
He says he has no fully settled view, but leans toward structured tool calling and background agents as the dominant pattern because it's faster and more reliable than driving a UI, reserving computer-use approaches for cases with no API available or legacy systems, where UI automation still has to fill the gap.
ai-agents-and-verifiability
Knowledge-work roles get 'uplevelled' the way junior developers were by coding agents: from doing the task to supervising and reviewing it.
Herzig compares a finance shared-service employee today to a junior developer using Cloud Code: the work of collecting information and building PowerPoints gets automated, and the human moves up a level to supervising agent output, giving feedback, and doing more strategic thinking about what to build or decide next, rather than executing the task itself.
ai-driven-business-model-shift
SAP is researching quantum computing as a long-horizon bet on classic hard optimization problems, not as an AI play.
The motivation is explicitly business-backward: once quantum hardware matures, problems like traveling-salesman-style route planning and knapsack-style logistics optimization - currently only approximable at scale - could be solved better, cutting fuel costs and emissions. SAP frames its work as early-stage, hardware-agnostic algorithm research rather than a near-term product.
predictive-vs-generative-ai

Media referenced

Companies

Techniques and frameworks

Summary

Sarah Guo interviews Philipp Herzig, CTO of SAP, about how a 50-year-old enterprise software company is re-architecting itself for the AI era while trying to avoid the fate of prior technology transitions that unseated incumbents. Herzig's throughline is that SAP has survived mainframe, client-server, internet, mobile, and now AI shifts by staying obsessively focused on customer outcomes rather than the underlying technology, and that AI is forcing a rebuild on three layers simultaneously: the UI (moving to dynamic, "generative UI" that responds to a user's question instead of a fixed click path), the business process layer (agents blending rigid standard operating procedures with unstructured judgment), and the data layer (a harmonized semantic model across SAP's traditionally siloed tables of financial, HR, and supply-chain data).

A central theme is that scale, not raw AI capability, is SAP's real engineering problem. A retrieval chatbot over ten documents or a single MCP server is trivial to demo; doing the same thing reliably across thousands of documents, localized policy answers, and roughly 20,000 internal APIs turns into a hard orchestration and disambiguation problem. Herzig contrasts this with why agentic coding took off so fast: code has a built-in verification signal (it compiles, tests pass), while enterprise domains like finance don't. His answer is that SAP has to build explicit "evals" and boundary conditions up front, and to capture "tribal knowledge" - the decisions living in people's heads or Slack threads that never make it into the system of record - through what SAP now calls "agent mining," a descendant of process mining that turns every human clarification into training data and, eventually, updated standard operating procedures.

Herzig spends significant time on a contrarian point: large language models are the wrong tool for predictive, tabular problems like demand forecasting or cash-flow prediction, because next-token generation isn't suited to regression and classification. Classical machine learning (XGBoost, AutoML) works but doesn't scale - one pharmaceutical customer operating in 90 countries needed 180 separately trained models. SAP's response, after two years of research published at NeurIPS and elsewhere, is RPT-1 (Relational Pre-trained Transformers), an attempt to bring LLM-style democratization to structured data prediction.

On the business side, Herzig confirms AI is forcing a pricing model transition for SAP, from seat-based licensing toward consumption-based and eventually outcome-based pricing (citing Sierra as an example of the latter), but says customers are pulling the company toward a hybrid model because they want cost predictability and don't yet fully trust agent outputs. He frames enterprise AI adoption more broadly through an "innovation race versus outcome race" lens - the pace of new AI capability is outrunning customers' ability to actually capture value from it - and ranks fragmented/siloed data (often the legacy of purchasing decisions or M&A) as the top blocker, ahead of scale complexity and security concerns like the recent LiteLLM credential-leak vulnerability. He predicts most enterprise agents will interact with systems via structured tool-calling and APIs rather than browser-based computer use, and that knowledge workers will be "uplevelled" from doing tasks to supervising agents, similar to how junior developers moved from writing code to reviewing agent-generated code.

The conversation closes on a personal note: Herzig describes his day as reviewing team progress across the stack, prototyping with multiple command-line agent instances, and working closely with customers to stay grounded in real problems rather than pitching technology. He flags SAP's early-stage quantum computing research as a long-horizon, hardware-agnostic bet aimed squarely at classic hard optimization problems - route planning, logistics, traveling-salesman-style problems - motivated by concrete cost and emissions savings rather than any near-term AI application.

Notable Quotes

"It's actually not the AI so much, but it's actually teaching the AI to do the right thing at scale." - Philipp Herzig

"I always tell my developers all the time, our job at SAP is to make the technology disappear. We need to get the outcome in front of the customer." - Philipp Herzig

"Everybody who works today, maybe in the finance shared service center, it's for me the equivalent of a junior developer today with Cloud Code. Now they actually get one level higher - they're not so much tasked with writing a lot of the code, but they start supervising the code, give feedback." - Philipp Herzig

"There's this AI innovation race and then there's this AI outcome race, and the gap almost increases versus getting narrow." - Philipp Herzig

"The problem is large language models are not made for [prediction]. They're language models, so they do this phenomenally well [with text]. But if you still want to do these predictions, you have to go back to these classical machine learning approaches." - Philipp Herzig