844-NOGALIS (844-664-2547)
Nogalis, Inc.
  • Link to Facebook
  • Link to X
  • Link to LinkedIn
  • Link to Mail
  • Company
    • News, Events and Articles
    • About Us
  • Products
    • Infor Lawson Data Archive
    • PeopleSoft Data Archive
    • Oracle Data Archive
  • Services
    • Infor Lawson Support
    • Infor Lawson / CloudSuite Consulting
  • Education & Training
  • Support
  • Contact Us
  • Click to open the search input field Click to open the search input field Search
  • Menu Menu

Archive for category: News

You are here: Home1 / News, Events and Articles2 / News

How AI Agents Are Reshaping ERP in the “SaaSpocalypse” Era

News

The term “SaaSpocalypse” – referenced by Rick Rider, SVP of product management for Infor, refers to the predicted upheaval in enterprise software caused by artificial intelligence (AI) agents, which are expected to replace many point SaaS applications. In an interview with Jordan Berger, SVP, TMT Market Intelligence for AlixPartners, ERP Today’s Chris Vavra explains that while this scenario sounds dramatic, the real impact is more nuanced: lightweight, UI-heavy SaaS tools are vulnerable, but core enterprise resource planning (ERP) systems—handling critical data, compliance, and audit trails—remain essential. Berger notes that AI agents are already automating low-judgment workflows like HR intake, procurement approvals, and routine reporting. ERP platforms that thrive will act as stable, governed transaction cores with clean APIs, identity integration, and fine-grained permissioning, while vendors relying mainly on configurable UIs and generic workflows face the greatest risk.

This environment is accelerating demand for modular, API-first ERP architectures rather than full-suite replacements. Enterprises are focusing on making ERP programmable and AI-ready, building narrow, differentiating capabilities in-house while relying on ERP for compliance and integration. Industries with structured, routine work—professional services, retail HQs, and tech—are experiencing the fastest ERP workflow shifts, whereas highly regulated sectors like healthcare, energy, and finance will change more gradually due to compliance and operational constraints. In the post-“SaaSpocalypse” world, ERP and critical industry systems that control data, enforce governance, and enable agent orchestration will dominate, while standalone SaaS point solutions lose relevance. Organizations investing in AI-ready ERP foundations, flexible integrations, and automated governance will capture the most value and maintain a competitive edge.

 

For Full Article, Click Here

04/22/2026
https://www.nogalis.com/wp-content/uploads/2020/03/ERP-AP-automation.jpg 400 600 Angeli Menta https://www.nogalis.com/wp-content/uploads/2013/04/logo-with-slogan-good.png Angeli Menta2026-04-22 10:23:122026-04-22 09:55:49How AI Agents Are Reshaping ERP in the “SaaSpocalypse” Era

Creating Favorites

Articles, Frontpage Article, News

To view and manage favorites in the Infor Lawson Portal, follow these steps below.

From the home page, select the hamburger icon beside Menu > User Options and select the Favorites tab to view the Favorites configuration.

 

URL / Token

 

The URL is a direct link to an external site, and the token is what’s available to your user, within a specified data area and system code

Click Save to add the new favorite item to your Favorites list. You can also click “Edit Favorites” directly on the home page, then click the Add icon to create new favorites, such as URLs, tokens, or custom forms.

04/21/2026
https://www.nogalis.com/wp-content/uploads/2026/04/Creating-Favorites.jpg 470 470 Angeli Menta https://www.nogalis.com/wp-content/uploads/2013/04/logo-with-slogan-good.png Angeli Menta2026-04-21 08:46:522026-04-21 08:46:52Creating Favorites

How AI Is Forcing ERP Vendors to Rethink the Human Side of Transformation

News

Artificial Intelligence (AI) is rapidly reshaping enterprise resource planning (ERP) systems, but it’s also pushing vendors to rethink how they approach the human side of digital transformation. In senior editor Chris Vavra’s recent ERP Today article, the author explores how AI is accelerating employee readiness and what that means for ERP vendors, particularly when it comes to onboarding and governance. Research from SAP and Wakefield Research reveals that 88% of Chief Human Resource Officers (CHROs) believe AI is helping early-career employees become role-ready faster, creating new pressures for ERP systems to deliver intuitive, governed AI tools. With 79% of HR leaders saying early-career employees get AI tools within their first month, vendors must ensure these tools are easy to use from day one—especially for employees who don’t have months of training. This shift towards AI-driven productivity is already showing tangible results, with 56% of CHROs reporting increased confidence and productivity in early-career talent using AI. However, the study also highlights significant governance gaps: 56% of HR leaders say employees turn to unsanctioned AI tools when formal guidance is lacking, leading to compliance and quality risks. To meet these challenges, ERP vendors must prioritize four key practices: designing entry-level roles for higher-value work, embedding critical thinking in onboarding, establishing AI governance from the start, and ensuring equitable AI access. As AI becomes embedded in ERP systems, success will depend on a blend of technology, data readiness, and thoughtful change management.

 

For Full Article, Click Here

04/20/2026
https://www.nogalis.com/wp-content/uploads/2019/03/blockchain-it-tech-min.jpg 524 700 Angeli Menta https://www.nogalis.com/wp-content/uploads/2013/04/logo-with-slogan-good.png Angeli Menta2026-04-20 10:36:452026-04-21 08:38:36How AI Is Forcing ERP Vendors to Rethink the Human Side of Transformation

How the GEN job tables connect

Articles, Frontpage Article, News

The GEN job tables provide detailed information about job execution, allowing for tracking and troubleshooting. Each table serves a specific function in recording various aspects of the job lifecycle, from submission through execution to completion. This structure ensures clear mapping of relationships and dependencies among the tables, which is essential for monitoring and managing batch processes efficiently allowing admins to be able to trace job progress and diagnose issues at both macro and micro levels.

🔹 Job Table Relationships

JOBQUEUE (one row per submitted job)

|

|–< JOBSTEP (one or more steps per job)

|       |

|       |–< JOBSTEPLOG (messages for each step)

|

|–< JOBLOG (high-level messages/logs for the job)

|

|–< JOBPARM (parameters used when submitting job)

🔹 GEN tables related to jobs:

JOBQUEUE.JobQueue = primary key (ties everything together).

JOBSTEP.JobQueue → foreign key to JOBQUEUE.

JOBLOG.JobQueue → foreign key to JOBQUEUE.

JOBPARM.JobQueue → foreign key to JOBQUEUE.

Each job in the system is uniquely identified by the JobQueue value, which acts as the primary key and links related records across all main tables. By using foreign keys, the JOBSTEP, JOBLOG, and JOBPARM tables maintain referential integrity, allowing for efficient tracking and management of job execution details and associated parameters.

To retrieve comprehensive job execution data, a query can be constructed that joins the JOBQUEUE table with JOBSTEP, JOBLOG, and JOBPARM using the JobQueue field. This ensures all relevant information, such as job parameters, execution steps, and log messages, can be efficiently accessed and analyzed for each job instance.

Here is an example of a query to find who ran the GL199 with any messages found in the joblog. The results will show

  • Who ran it → UserName.
  • When it ran → StartDate + StartTime.
  • Job status → Status (Success, Error, etc.).
  • Parameters used → from JOBPARM.
  • Messages → from JOBLOG.

 

SELECT     JQ.JobName,    JQ.Program,    JQ.UserName,    JQ.StartDate,    JQ.StartTime,    JQ.EndDate,    JQ.EndTime,    JQ.Status,    JP.ParameterName,    JP.ParameterValue,    JL.Message

FROM GEN.dbo.JOBQUEUE JQ

LEFT JOIN GEN.dbo.JOBPARM JP ON JQ.JobQueue = JP.JobQueue

LEFT JOIN GEN.dbo.JOBLOG JL ON JQ.JobQueue = JL.JobQueue

WHERE JQ.Program = ‘GL199’

ORDER BY JQ.StartDate DESC, JQ.StartTime DESC;

 

04/17/2026
https://www.nogalis.com/wp-content/uploads/2026/04/How-the-GEN-job-tables-connect.jpg 470 470 Angeli Menta https://www.nogalis.com/wp-content/uploads/2013/04/logo-with-slogan-good.png Angeli Menta2026-04-17 08:44:332026-04-09 11:53:29How the GEN job tables connect

Steering Cloud ERP Migrations with Data Governance

News

Migrating to a cloud ERP (enterprise resource planning) system offers numerous benefits, but without strong data governance, the process can quickly turn chaotic. In a recent article on ERP Today, tech contributor Mageshwaran Subramanian emphasizes how data governance is the key to successful ERP migrations, ensuring data quality, security, and efficiency. Subramanian highlights several critical strategies for a smooth migration, starting with early-stage data validation. Instead of treating data quality as a post-migration task, businesses should begin validation at the extraction phase, preventing costly issues later on. Archiving also plays a major role—clearly separating active data from historical data ensures the new cloud ERP system remains clean and efficient, saving on subscription costs and improving performance. Another essential step is defining the “golden record” for the cloud era. Data silos in legacy systems often lead to duplicate records, which can skew insights and disrupt operations. By using automated de-duplication and creating a unified master record, organizations can avoid these pitfalls and unlock the full potential of their cloud ERP system. Finally, Subramanian explains the link between data governance and AI-readiness. AI technologies depend on accurate, clean data to function effectively. Poor data leads to inaccurate forecasts and unreliable analytics, making a strong governance framework crucial for ensuring the success of AI-driven tools in a new ERP environment. For companies looking to migrate, a disciplined, data-driven approach is essential for long-term success and sustainable growth.

 

For Full Article, Click Here

04/16/2026
https://www.nogalis.com/wp-content/uploads/2021/11/cloud-computing-technology-it.jpg 333 500 Angeli Menta https://www.nogalis.com/wp-content/uploads/2013/04/logo-with-slogan-good.png Angeli Menta2026-04-16 11:12:412026-06-17 08:04:52Steering Cloud ERP Migrations with Data Governance

Hybrid ERP Deployments Becoming Standard as Industry Grows

News

As the ERP (enterprise resource planning) market continues to evolve, hybrid deployments are becoming the go-to solution for businesses seeking flexibility, scalability, and control. In senior editor Chris Vavra’s recent ERP Today article, he explores the growing shift toward hybrid ERP systems and their strategic value for modern enterprises. The global ERP market, valued at $16.3 billion in 2023, is projected to more than double by 2033, with hybrid deployments leading the charge. While on-premise ERP remains crucial for organizations with strict compliance needs, hybrid models allow businesses to mix core workloads with cloud services for analytics, automation, and edge connectivity. For CIOs and enterprise architects, this means moving beyond the “cloud versus on-prem” debate and focusing on managing data governance, security, and process migration across both environments. As cloud ERP solutions gain traction, driven by real-time data access and scalable infrastructure, companies are also seeing increased investment in industry-specific ERP modules. These tailored solutions, combined with AI and predictive analytics, are transforming ERP systems into decision intelligence platforms, offering deeper insights across sectors like manufacturing, healthcare, and retail. With the rise of digital transformation strategies, hybrid ERP models are not just about system upgrades—they’re key to compressing cycle times, stabilizing supply chains, and supporting new digital services. As the market grows, the demand for ERP solutions that drive measurable operational impact will only intensify.

 

For Full Article, Click Here

04/15/2026
https://www.nogalis.com/wp-content/uploads/2024/01/cloud-data-it-software.jpg 333 500 Angeli Menta https://www.nogalis.com/wp-content/uploads/2013/04/logo-with-slogan-good.png Angeli Menta2026-04-15 11:49:492026-04-13 11:42:24Hybrid ERP Deployments Becoming Standard as Industry Grows

MySQL Formula to Convert Days to Years & Months

Articles, Frontpage Article, News

When working with date and time values in MySQL, it’s common to store durations in days. However, sometimes you need to present those days as a more human-readable format—like years and months. For example, showing “2 years, 3 months” instead of “825 days.”

Here’s a simple way to achieve this using a MySQL formula.


Converting Days to Years and Months

Since MySQL doesn’t have a built-in function to directly convert days into years and months, we can use arithmetic with division (/) and modulo (%) operators.

SELECT

FLOOR(days / 365) AS years,

FLOOR((days % 365) / 30) AS months

FROM

your_table;


How It Works

  • FLOOR(days / 365)
    Divides the total days by 365 to get whole years.
  • (days % 365)
    Gets the leftover days after subtracting the full years.
  • FLOOR((days % 365) / 30)
    Divides the leftover days by 30 to approximate months.

Example

Suppose your table looks like this:

CREATE TABLE durations (days INT);

INSERT INTO durations (days) VALUES (400), (825), (1200);

Running the query:

SELECT

days,

FLOOR(days / 365) AS years,

FLOOR((days % 365) / 30) AS months

FROM durations;

Would produce:

days years months
400 1 1
825 2 3
1200 3 3

Notes and Limitations

  • This method assumes 365 days per year and 30 days per month. It’s an approximation, not a precise calendar conversion.
  • If you need exact calendar-aware calculations (e.g., accounting for leap years or exact month lengths), you’ll need to work with MySQL date functions and actual date values instead of raw day counts.

Final Thoughts

Converting days to years and months in MySQL can be done easily with simple math functions. While the above approach works well for approximations, consider whether you need exact date-based calculations before choosing the method.

If you often store durations in days, this formula provides a quick way to present data in a more user-friendly format.

04/14/2026
https://www.nogalis.com/wp-content/uploads/2026/04/MySQL-Formula-to-Convert-Days-to-Years-Months.jpg 470 470 Angeli Menta https://www.nogalis.com/wp-content/uploads/2013/04/logo-with-slogan-good.png Angeli Menta2026-04-14 08:41:432026-04-09 11:54:26MySQL Formula to Convert Days to Years & Months

Inside the Global Data Center Investment Surge and Why It Matters for ERP Leaders

News

The global surge in data center investments is reshaping the way enterprise technology, especially AI and cloud services, will be delivered in the coming years. In a recent ERP Today Article by chief editor Tarsilla Moura, the author explores how massive investments by tech giants like Microsoft, Amazon, Meta, and Alphabet, projected to exceed $630 billion by 2026, are driving this transformation. This investment boom reveals three key trends: the race to support enterprise AI, the growing importance of regional infrastructure, and the limitations of energy resources. For ERP (enterprise resource planning) leaders, this is more than a tech trend—it’s a fundamental shift in the infrastructure that powers business applications. Data centers are becoming larger, more power-demanding, and strategically placed to meet AI needs, with investments spread across the U.S., Europe, and Asia. However, challenges like power grid access, equipment shortages, and regulatory delays are slowing down construction. As a result, companies are focusing on regions with more reliable energy sources. Additionally, financing these projects has shifted from cash reserves to debt markets. For ERP leaders, these shifts will affect service pricing, regional expansion, and the pace of technological advancements, making it essential to understand the evolving infrastructure behind enterprise systems.

 

For Full Article, Click Here

04/13/2026
https://www.nogalis.com/wp-content/uploads/2024/10/business-meeting-merger-acquisition-handshake.jpg 300 450 Angeli Menta https://www.nogalis.com/wp-content/uploads/2013/04/logo-with-slogan-good.png Angeli Menta2026-04-13 12:21:512026-04-09 12:24:23Inside the Global Data Center Investment Surge and Why It Matters for ERP Leaders

Lawson Security – Cannot get Productline List error

Articles, Frontpage Article, News

Most Lawson v10 systems has moved to Infor Security Service web portal to manage user provisioning etc.

 

However, Lawson Security Administration is still necessary for security reports, identity information, among other tasks.

 

When logging into Lawson Security Admin, you may receive this error and wonder why all of a sudden?

In order to resolve this, stop and start IBM and Lawson services in the proper order (your server names will differ from below but be similar under Windows Services.

STOP – Lawson and Websphere Services

  1. IBM WebSphere Application Server V8.5 – Infor10Prod-Appserver
  2. IBM WebSphere Application Server V8.5 – lsfappCellManager01
  3. IBM WebSphere Application Server V8.5 – Node Agent-Infor10Prod
  4. insight Environment “Prod”

 

Verify JAVA processes are down.

START – Lawson and Websphere Services

  1. insight Environment “Prod”
  2. IBM WebSphere Application Server V8.5 – Node Agent-Infor10Prod
  3. IBM WebSphere Application Server V8.5 – lsfappCellManager01
  4. IBM WebSphere Application Server V8.5 – Infor10Prod-Appserver

 

04/10/2026
https://www.nogalis.com/wp-content/uploads/2026/04/Lawson-Security-Cannot-get-Productline-List-error.jpg 470 470 Angeli Menta https://www.nogalis.com/wp-content/uploads/2013/04/logo-with-slogan-good.png Angeli Menta2026-04-10 08:17:282026-04-02 11:12:22Lawson Security – Cannot get Productline List error

How to Modernize Cloud ERP Without Breaking What Already Works

News

Modernizing cloud ERP without disrupting proven operations is becoming a top priority for manufacturers. In an article by Chris Vavra for ERP Today, the focus is on how companies can evolve their ERP systems strategically—without risking costly downtime or losing valuable process knowledge. Rather than forcing a full cloud replacement, Syspro offers a dual deployment model: manufacturers can choose between on-premises ERP, cloud-based ERP on Microsoft Azure, or a hybrid of both. This approach allows organizations to modernize at their own pace, tailoring deployments plant by plant based on readiness, connectivity, and regulatory requirements. The key advantage is continuity. Businesses can retain existing workflows, data, and customizations while adding cloud benefits like scalability, AI-driven insights, and real-time analytics. This helps avoid the hidden costs of ERP overhauls—such as productivity loss and workflow rebuilding—which often push projects over budget. Operationally, the impact is immediate: planners gain better visibility into demand shifts, finance teams reduce manual workarounds, and IT shifts focus from infrastructure maintenance to integration and security. Vavra emphasizes that successful modernization isn’t just about technology—it’s about managing operational risk. Recommended best practices include upgrading current systems first, piloting cloud deployments in targeted areas, and scaling gradually. Ultimately, hybrid cloud strategies are emerging as the future of ERP, prioritizing flexibility, continuity, and low-risk transformation over disruptive, one-size-fits-all migrations.

 

For Full Article, Click Here

If your organization is still running Infor Lawson, learn how APIX can archive your Lawson data to AWS — fully managed, SOC 2 certified, live in 30 days.

04/09/2026
https://www.nogalis.com/wp-content/uploads/2014/07/the-cloud.jpg 1066 1600 Angeli Menta https://www.nogalis.com/wp-content/uploads/2013/04/logo-with-slogan-good.png Angeli Menta2026-04-09 10:36:172026-04-12 17:14:30How to Modernize Cloud ERP Without Breaking What Already Works
Page 8 of 232«‹678910›»

LEGACY ERP DATA ARCHIVE SOLUTION



Discover how our clients are leveraging AWS services to archive their Legacy ERP data and provide ubiquitous access to users via a light-weight, secure, and read-only web interface. Secure, Fast, Reliable, and Cost Effective. That is the promise of APIX. Follow the link below to find out more and book a discovery call with our data archive specialist.

BOOK DEMO

© Copyright - Nogalis, Inc. 2024
  • Legal
  • Privacy
  • Contact Us
Scroll to top Scroll to top Scroll to top