Overview
Infor develops enterprise resource planning (ERP) software and related applications, primarily delivered through a cloud-based model. Founded in 2002, Infor focuses on providing industry-specific solutions rather than generic ERP platforms. The company's strategy involves tailoring its core products, such as Infor CloudSuite Financials & Supply Chain, Infor LN, and Infor M3, to address the unique operational requirements of various sectors. This includes specialized functionality for manufacturing operations, supply chain management, healthcare organizations, and public sector entities.
Infor's offerings aim to support end-to-end business processes, from financial management and human capital management (HCM) to customer relationship management (CRM) and business intelligence. The CloudSuite portfolio is built on Amazon Web Services (AWS) infrastructure, which allows for scalability and global deployment. A key component of Infor's technology stack is Infor OS (Operating Service), which serves as a common platform for integration, extensibility, and user experience across its application suite. Infor OS includes features like an API Gateway for external system connectivity, workflow automation tools, and a unified user interface.
The company's focus on vertical markets means its products often incorporate industry best practices and regulatory compliance features directly into the software. For example, specific versions of CloudSuite are designed to meet the compliance needs of healthcare organizations (HIPAA) or public sector entities. This contrasts with broader ERP systems that may require extensive customization for vertical-specific needs. Infor's acquisition by Koch Industries in 2020 further integrated its operations with a large industrial conglomerate, potentially influencing its product development and market strategy within manufacturing and supply chain sectors.
Infor targets mid-market and large enterprises that require specialized software to manage complex operations. Its solutions are often considered by organizations seeking to replace legacy on-premise systems with cloud-native alternatives that offer continuous updates and reduced infrastructure management overhead. The platform provides tools for data analytics through Infor Birst, enabling users to gain insights from their operational and financial data to support decision-making processes.
Key features
- Industry-Specific ERP Suites: Tailored applications for manufacturing, distribution, healthcare, public sector, and fashion industries, addressing unique operational and regulatory requirements.
- Cloud-Native Architecture: Solutions built for cloud deployment, often leveraging AWS infrastructure for scalability, reliability, and global reach.
- Financial Management: Comprehensive accounting, budgeting, forecasting, and financial reporting capabilities across multiple entities and currencies.
- Supply Chain Management (SCM): Tools for planning, sourcing, manufacturing, logistics, and inventory management to optimize supply chain operations.
- Human Capital Management (HCM): Functionality for core HR, talent management, payroll, and workforce planning.
- Business Intelligence (Infor Birst): Integrated analytics and reporting platform providing dashboards, data visualization, and predictive capabilities.
- Infor OS (Operating Service): A common technology platform providing integration (API Gateway), extensibility, workflow automation, and a unified user experience.
- Asset Management (EAM): Enterprise Asset Management solutions for tracking, maintaining, and optimizing physical assets.
- Customer Relationship Management (CRM): Tools to manage customer interactions, sales processes, and service delivery.
- Compliance and Security: Built-in features to support compliance with industry standards and regulations such as SOC 2 Type II, GDPR, and HIPAA.
Pricing
Infor provides custom enterprise pricing for its solutions, which is typical for ERP systems designed for large organizations with complex requirements. Pricing models typically involve subscriptions based on factors such as the number of users, specific modules deployed, transaction volume, and the level of support required. Direct pricing information is not publicly available on their website; prospective customers typically engage with Infor's sales team for a personalized quote.
| Pricing Model | Details | As of Date |
|---|---|---|
| Custom Enterprise Pricing | Tailored quotes based on specific modules, user count, deployment scope, and services. | 2026-05-05 |
For detailed pricing inquiries, organizations are directed to contact Infor directly.
Common integrations
Infor's integration strategy centers around Infor OS, which includes an API Gateway and supports various integration patterns. This allows Infor CloudSuite applications to connect with a range of other enterprise systems and services. Developers can leverage Infor OS for extensibility and process automation, supporting REST APIs and event-driven architectures.
- Third-Party Logistics (3PL) Providers: Integration with logistics partners for streamlined shipping, warehousing, and transportation management.
- E-commerce Platforms: Connectivity with online storefronts to synchronize product data, orders, and customer information.
- CAD/PLM Systems: For manufacturing clients, integration with Computer-Aided Design (CAD) and Product Lifecycle Management (PLM) systems to manage product data throughout its lifecycle.
- Financial Institutions: Integration with banking systems for automated payment processing, reconciliations, and financial reporting.
- CRM Systems: While Infor offers its own CRM, integration with external CRM platforms like Salesforce is possible via APIs for a unified view of customer data.
- HR and Payroll Providers: Connections with specialized human resources and payroll services to complement Infor HCM.
- IoT Devices and Sensors: For manufacturing and asset management, integration with IoT devices to collect real-time operational data for predictive maintenance and performance monitoring.
- Business Intelligence Tools: While Infor Birst is integrated, external BI tools can also be connected for advanced data analysis.
Alternatives
- SAP: A global leader in ERP software, offering a broad suite of business applications, notably SAP S/4HANA Cloud, serving various industries.
- Oracle: Provides a comprehensive suite of cloud applications, including Oracle Fusion Cloud ERP, catering to large enterprises across diverse sectors.
- Microsoft Dynamics 365: Offers a portfolio of modular cloud-based business applications that combine ERP and CRM functionalities.
- Workday: Specializes in cloud-based financial management and human capital management software, often chosen by service-oriented industries.
- NetSuite: A cloud-based business management suite from Oracle, providing ERP, CRM, and e-commerce functionalities for small to mid-sized businesses.
Getting started
To begin development or integration with Infor CloudSuite applications, developers typically utilize Infor OS and its API Gateway. The process involves obtaining API credentials and understanding the specific APIs relevant to the Infor application being integrated. The following example demonstrates a conceptual API call to retrieve data from an Infor CloudSuite application, assuming authentication has been handled. This is a simplified representation; actual API calls will vary based on the specific Infor product and API version.
import requests
import json
# Replace with your actual Infor OS API Gateway URL and tenant-specific endpoint
BASE_URL = "https://api.infor.com/your-tenant-id/your-cloudsuite-app/v1"
API_KEY = "YOUR_API_KEY" # Your Infor OS API Key or OAuth token
headers = {
"Authorization": f"Bearer {API_KEY}", # Or "X-API-Key": API_KEY depending on auth type
"Content-Type": "application/json",
"Accept": "application/json"
}
def get_customer_data(customer_id):
endpoint = f"/customers/{customer_id}"
url = BASE_URL + endpoint
try:
response = requests.get(url, headers=headers)
response.raise_for_status() # Raise an exception for HTTP errors
return response.json()
except requests.exceptions.HTTPError as err:
print(f"HTTP error occurred: {err}")
print(f"Response: {response.text}")
return None
except requests.exceptions.RequestException as err:
print(f"Request error occurred: {err}")
return None
# Example usage:
customer_data = get_customer_data("CUST001")
if customer_data:
print(json.dumps(customer_data, indent=2))
else:
print("Failed to retrieve customer data.")
This Python snippet illustrates how to make a GET request to a hypothetical Infor CloudSuite API endpoint to fetch customer data. Developers should consult the Infor product documentation for specific API references, authentication methods (e.g., OAuth 2.0), and available endpoints relevant to their Infor CloudSuite deployment.