By default, Acumatica does not include record notes in Excel exports. However, you can retrieve and export them using a Generic Inquiry (GI). This guide outlines the steps to link record notes with your data to ensure they appear in your exports.
Why Are Notes Not Exported Automatically?
Acumatic...
When developing customizations in Acumatica, a common requirement is to save additional data to the database during the creation of new records. This can pose challenges, especially when ensuring data integrity and avoiding issues like infinite recursion. This article explores effective strategie...
We are doing this logic change because customer gonna use Master Boxes this boxes will just contain other boxes and default Acumatica as I research doesn’t support such logic. Let’s begin with changing logic for CreateShipment, first of all we need to override this method[PXOverride]
public virtu...
Acumatica is a powerful cloud-based ERP platform that helps small and mid-size businesses manage everything from finances to operations. One of its biggest strengths is its flexibility – you can customize Acumatica to fit your exact needs, whether that’s tweaking workflows, adding integrations, o...
When extending the Modern UI in Acumatica to include custom fields, you may encounter the error:
"The field [FieldName] cannot be bound to a FieldState."
This error commonly arises when attempting to bind a custom field to the UI without defining it properly in the underlying data access class (D...
When working on an Acumatica project, you might encounter situations where JavaScript code grows significantly as the project scales. While it’s common practice to move such code into separate .js files and include them in .aspx pages using:
<script type="text/javascript" src=".../app.js">&...
Introduction
Customizing the Action Bar in Acumatica allows developers to add custom buttons to specific grids, enhancing user experience and functionality. This guide walks through the process of adding a new action button using C# and ASPX.
Understanding the Requirements
To add a button in the...
As businesses grow, they often adopt multiple software solutions to handle various aspects of their operations. HR platforms like Agura HR, integration tools like Celigo, and robust ERP systems like Acumatica can all play a crucial role in streamlining operations. But to achieve maximum efficienc...
The code below handles the relationship between purchase receipts (POReceipt), purchase orders (POOrder), and sales orders (SOOrder).
.background{font-family:monaco,Consolas,LucidaConsole,monospace;background-color:#1E1E1E;overflow:scroll;color:#dfdfdf;}.method{color:#DCDCAA;}.class{color:#4EC9B...
Interrupting a long-running process in Acumatica is critical for user experience, particularly on processing screens where batch operations are common. However, developers sometimes encounter issues where the process cannot be interrupted as expected. This challenge often stems from improper hand...