Loading ...

Localized reports in Acumatica

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 (...

OData Version 4.0 Changes in Acumatica 24R1

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...

How to setup goDaddy in Acumatica

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...

How to send email in Acumatica

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) {  ...

Screen templates in Acumatica

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...

Hyper cube of Acumatica modules

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...

How to work with Excel files in Acumatica

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...

One more article about PXProjection in Acumatica

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...