Loading ...

How to open windows desktop applications from Acumatica

Imagine you are working on Acumatica customization that needs to integrate with an existing desktop application. How can you launch the desktop application from the web-based app? It might seem impossible at first, but on Windows, it's actually quite simple. The key is to use Custom Protocol Hand...

Acumatica: SMS Provider, Twilio SMS provider, send SMS in action

Hello everybody, Today I want to share one approach, how to send SMS message from custom action in Acumatica. Acumatica has several sms providers in SalesDemo data base, it depends from Acumatica’s version, so, we will use Twilio provider. On SMS Provider screen you can find authorization paramet...

PXAggregateAttribute usage for saving of your development time

Hi everybody, today I want to share one of the insights from code and code, which was conducted by Stéphane Bélanger, and which seems useful, also may be controversial. But still, you may like it. So let me introduce or re-introduce PXAggregateAttribute .   If to sum up, purpose of...

How to add GI to side panel and Pivot table to side panel

Hello everybody, Today a want to share with you approach how to add GI to Side Panel, add Pivot Table to Side Panel, and how current row (current field value) of screen bounds with filter of GI and PT. Also, I will show how to add all custom features with GI and PT to customization package. As ex...

Usage of SignalR and javascript in Acumatica

Today I want to describe how you can use SignalR and javascript in Acumatica. I will describe following functionality: 1. User 1 opens sales order SO006768 2. User 2 opens sales order SO006768 3. User 1 modifies Sales order, and clicks on Save button 4. User 2 gets following notificatio...

How To Show Tab And Grid Always In Acumatica

Hi everybody, today want to mention following use case: 1. Created Tab or Grid or element in Splitter 2. If View returns zero values 3. Element created at step 1 doesn't appear How to deal with that? Set AllowAutoHide to false, and Visible to true and element will not hide automatically. Struggli...

A DAC Extension Must Include The Publis Static Isactive Method

Hello everybody, today  I want to share one line of code for Acuminator for error message: PX1016 A DAC extension must include the public static IsActive method with the bool return type. Extensions which are constantly active reduce performance. Suppress the error if you need the DAC extens...

How To Get Key Fields Of Dac Class In Acumatica

Hello everybody, recently for me it was needed to find out all key fields of DAC class. Code below does this:   public List<string> GetKeyFieldsOfDAC(Type dacClass) {     var result = new List<string>();    &nb...