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 (...
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:
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...
Firstly we need to add our custom field to the screen, for example we will use the Sales Orders screen and add Custom Barcode field to the Details tab.
For adding this field to mobile application with Barcode scanning functionality we should just update Details container on
the SO301000 screen a...
Friends, today I want to share with you how we can change the default 'The operation has completed.' or other messages after PXLongOperation has been executed.
The first button will execute the standard logic
The second button will show a custom "Info".
The third button will show a custom "Warn...