Loading ...

Simplifying Field Validation with PXUIVerify Attribute

Overview Field validation is a common task in Acumatica development. Traditionally, developers use event handlers like FieldVerifying and RowPersisting, but the PXUIVerify attribute provides a cleaner, declarative approach that significantly reduces code complexity. Traditional Approach: Event Ha...

Simple Way to Get Data from Acumatica into Power BI via OData

Step 1: Prepare the Generic Inquiry Go to Generic Inquiry screen (SM208000). Create a new GI or open an existing one. In the Inquiry Title field, enter a unique name without spaces (e.g., we’ll use the existing SO-SalesOrder). On the Results Grid tab, add only the necessary fields. Check the box...

Display custom message on Login Screen

Hello. Today I will show you how to display a custom message on Login screen like below on screenshot I don’t think we can customize the Login page but if you have access to the server, we can directly add a label like below to the login.aspx page.

Add search bar for Acumatica Grid

Hello. Today I will show you how to add a search bar for the grid in AcumaticaTo do this you need to open ASPX of page with grid where you want to add a search bar And to a grid tag you need to add next propertiesAllowSearch="True"FastFilterFields="Fields that you want"Example<px:PXGrid ID="gr...

Adding fields to new UI

Hello. Today I am gonna tell you how to add field to new UIFirst of all you need to make ts extension to default ts file of the page where you want to add new fields. In my case it would be RQ301000I will name it rq301000-ext.tsI want to add 2 fields to the RQRequestLine grid and 4 fields to RQRe...

Step-by-Step Guide: Using PatchTool in Acumatica ERP 25R1

This guide walks you step by step through installing Acumatica ERP on disk C, checking for patches, applying a patch from a local archive, and rolling back a patch using the PatchTool command-line utility. In this example, we will install Acumatica on the drive D: and all subsequent instructions...

How to Fix Sign-In Issues with the Acumatica Add-In for Outlook

The Acumatica Add-In for Outlook is a powerful tool that brings ERP data directly into your email interface—streamlining communication, speeding up task management, and improving customer interaction. However, in early 2025, some users began experiencing issues with signing in to the add-in acros...

Creating simple grid form using new UI

Hello, today I will show you how to create simple screen with grid on itThere is how you created from with grid with old UI using aspx And how it’s looksTo create this form with new UI you need to create ts and html files for new screen inside FrontendSources folderFor ts file you need to speci...

How to Run an Acumatica Automation Project in an Azure DevOps Pipeline

Integrating your Acumatica Automation Project with Azure DevOps pipelines is a powerful way to enable continuous integration (CI) and continuous delivery (CD) for testing and deploying your automation scripts. Since Acumatica’s automation project is a console application, running it from a pipeli...