ERP System Integration with Mobile App

NOVASOLUTIONS.TECHNOLOGY is engaged in the development, support and maintenance of iOS, Android, PWA mobile applications. We have extensive experience and expertise in publishing mobile applications in popular markets like Google Play, App Store, Amazon, AppGallery and others.
Development and support of all types of mobile applications:
Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1 servicesAll 1735 services
ERP System Integration with Mobile App
Complex
~1-2 weeks
FAQ
Our competencies:
Development stages
Latest works
  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    761
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    649
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1071
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    947
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    884
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    466

ERP System Integration with Mobile Applications

ERP integration—one of most technically complex tasks in enterprise mobile. ERP systems (SAP, Microsoft Dynamics, Oracle ERP, 1C) designed without mobile in mind: heavy data models, synchronous transactions, SOAP/XML API instead of REST, rigid business logic. Connecting mobile directly—almost always fails.

Why Direct API Doesn't Work

SAP ERP on ABAP returns RFC calls or SOAP BAPI. Single material data request may trigger 5-7 internal RPCs, take 3-8 seconds, return 200 KB XML with unneeded fields.

Microsoft Dynamics 365 has OData API—formally "modern", but response with expand-nesting bloats to megabytes. On mobile with 4G, parsing in main thread = ANR on Android, UI freeze on iOS.

Oracle ERP Cloud—REST API exists but versions aggressively. Minor version can have breaking changes, existing integration breaks after Oracle update.

Middleware: Integration Layer

Mandatory architecture element—integration middleware between ERP and mobile. Functions:

  • Transform: XML/SOAP → JSON, heavy objects → mobile DTO
  • Cache: reference data (warehouses, items, counterparties) update rarely—cached with TTL 15-60 min removes ERP load
  • Orchestrate: one mobile action (post invoice) → multiple ERP calls
  • Buffer: offline user creates document → middleware accepts and later sends to ERP synchronously

Middleware on Node.js, Go, .NET, or Java Spring. Apache Camel for routing between multiple ERPs. MuleSoft/Dell Boomi for enterprise-scale customers.

Authentication and Authorization

ERPs have own permission system, often role-based: warehouse staff see only their warehouse, manager—only their clients, accountant—financial documents. Mobile must respect these rights.

Options:

  1. Technical ERP user in middleware—simple, loses user context (all actions from one account, no audit)
  2. SSO via corporate IdP (Azure AD, Okta, Keycloak): user logs via SAML/OAuth 2.0, IdP issues token, middleware maps to ERP user. Audit preserved, ERP rights apply correctly.

On mobile: MSAL SDK for Azure AD, AppAuth for standard OAuth 2.0. Store refresh token in Keychain/Android Keystore—not SharedPreferences.

Offline and Conflicts in Enterprise Context

Warehouse without internet. Worker scans barcodes, creates shipment—all local. Connection returns, document goes to ERP. But balance may have changed (another worker shipped same item via web).

ERPs usually solve via optimistic locking (version check on write), reserve quantities. Middleware must handle ERP error response and return to mobile UI: "Balance changed. Current: 15 units. You tried: 20 units."

Reference Data Sync

Nomenclature in ERP—thousands of items, worker needs hundreds tied to their warehouse. Mobile downloads differential update (delta sync): GET /items?updated_since=2025-01-01T00:00:00Z. ERPs don't always support delta—middleware computes delta on its side via own reference replica.

Room (Android) + CoreData (iOS) store local reference copy. Background sync every N minutes updates. User works with local copy—fast, without waiting.

Performance and Monitoring

ERP calls slow. Middleware logs every call: duration, endpoint, result. Prometheus + Grafana or Datadog show response percentiles: if p95 > 5 sec on method—cache mandatory.

Timeout strategy: mobile waits max 10 sec, then error with retry button. Middleware doesn't kill ERP call—completes and caches result.

Timeline

ERP API audit and middleware design: 1-2 weeks. Basic integration (read, create documents) with offline buffer: 1-2 months. Full integration with SSO, delta-sync, conflict resolution, monitoring: 2-4 months. Cost calculated individually.