Loading ...

How to Load a C++ Library into Acumatica

Integrating a C++ library into Acumatica can enhance the application’s functionality by leveraging native code for performance-critical tasks. This guide explains how to dynamically load a C++ library into an Acumatica graph using .NET’s interop capabilities, including a real-world example. Load...

Events in Acumatica

One of the key features that developers often use to improve functionality is event handling. Events allow developers to respond to changes in data, user interactions, and system processes. Let's consider each of them: ·        RowUpdating Fires before an existi...

How use CacheAttached

The CacheAttached event is an Acumatica event that triggers when the cache of a particular DAC is initialized. It allows you to modify or extend the attributes of any field within that DAC, typically for a specific screen or process, without modifying the DAC itself.  The main advantage of C...