Loading ...

Is Acumatica good ERP

When it comes to managing complex business operations, having the right Enterprise Resource Planning (ERP) software can make all the difference. Acumatica is one such software that claims to provide businesses with a comprehensive solution to manage their operations effectively. In this article,...

Acumatica vs SAP: The Epic Clash of Titans in the ERP Realm

ive into the ultimate comparison of Acumatica vs SAP to discover their strengths and weaknesses, and find the perfect ERP solution for your business needs. Introduction When it comes to choosing the right Enterprise Resource Planning (ERP) software for your business, you might feel like you're na...

Webhooks and sending requests

Hi there. Today I'm gonna tell you about webhooks and will show one small example of its use.By using the webhook configuration we can easily send requests to the Acumatica instance. Today I'll show you a POST request. First of all, we need to create a class which will handle methods for POST req...

Report designer of Acumatica

Hello everybody. Developing on Acumatica can involve various tasks such as customizing existing features, creating new modules or integrations, and building custom reports. Today, I want to show you how to create your own report and add a field to it using the Report Designer. First of all, when...

Another process has updated the record, your changes will be lost

Hello everybody, Today a want to share with you couple approaches that can help you to fix the famous Acumatica’s error: “Another process has updated the {Table} record. Your changes will be lost” You can get this error when you open two the same screens with the same record from DB and then modi...

Optimize amount of read data with Acumatica and LINQ

Hi everybody, today I want to share quite useful post for cases, if you'll need to get some limited dataset from Acumatica database.  Take a look on the code below: public PXAction<SOOrder> FilterColumns; [PXButton] [PXUIField(DisplayName = "Filter Columns")] p...

How to open windows desktop applications from Acumatica

Imagine you are working on Acumatica customization that needs to integrate with an existing desktop application. How can you launch the desktop application from the web-based app? It might seem impossible at first, but on Windows, it's actually quite simple. The key is to use Custom Protocol Hand...

Acumatica: SMS Provider, Twilio SMS provider, send SMS in action

Hello everybody, Today I want to share one approach, how to send SMS message from custom action in Acumatica. Acumatica has several sms providers in SalesDemo data base, it depends from Acumatica’s version, so, we will use Twilio provider. On SMS Provider screen you can find authorization paramet...