Sometimes there is a need to call the PXGraph.Persist method from a graph extension but without triggering the code written in the base graph itself. I had this issue with using the ARSalesPriceMaint graph, so will show all the examples on that graph extension.
The problem is, it’s not possible t...
One of the recent additions to the new Acumatica 24R1 version is the ability to retrieve localized reports through REST API. This article provides a manual how specifically one can achieve it.
We start of creating an endpoint for reports. For this we navigate to the Web Service Endpoints (...
Hello everybody,
Today, I want to share with you a few differences between the previous version of OData and the new version, ODataV4. But before we dive in, let's set up our Postman environment to test it together. The first step is to create environment variables in Postman.
After creating the...
I want to share with you a solution for Report Designer that was found to fix the error that occurred after a sudden power outage. This error trace shown from the Acumatica ERP.
Follow these steps to resolve the issue:
Step 1: Close all Report Designer instances.
Step 2: On your computer,...
Today I want to tell you how to set up OutLook GoDaddy mail.First of all, log in to Microsoft Azure using link below.https://portal.azure.com/Then click App Registration →New registration
Print application's name, select Web app and click "Register" button.
Then in your appliation go...
Hi,
today want to share quick code snippet on how to send email from Acumatica. For this purpose, good usage is for NotificationGenerator. See the code below:
public virtual void SendEmailNotification(string email, string subject, string emailBody)
{
...
Let's take a look at the screen’s templates. There are 6 of them in Acumatica: Form, Grid, Tab, FormTab, FormGrid, TabGrid. Each template is designed to be used for different purposes. Let's look at each of them:
Form
A Form template is used to display and edit a single record or entity at a t...
Hi everybody,
today I want to share cube of Acumatica modules. For me it's kind of helpful, if I try to figure out features available in one or the other Acumatica license:
If you’re exploring the diverse range of Acumatica modules and want to make the most out of your system’s capabilities, our...
Hello everybody,
Today I want to share with you two approaches for working with Excel files:
How we might create Excel file in Acumatica using standard dll library of Acumatica website.
How we might import data from excel file to Acumatica using XLSXReader from PX.Data.dll library.
Examp...
The PXProjection attribute is mainly used to perform complex Select operations by using a fluent BQL query. If you need to join a fluent BQL query that is also a complex joined select query, you should use the PXProjection attribute.
This attribute can also be used in situations where you need to...