Hi there. Today I'm gonna tell you about webhooks and will show one small example of its use.By using the webhook configuration we can easily send requests to the Acumatica instance. Today I'll show you a POST request.
First of all, we need to create a class which will handle methods for POST req...
Hello everybody.
Developing on Acumatica can involve various tasks such as customizing existing features, creating new modules or integrations, and building custom reports. Today, I want to show you how to create your own report and add a field to it using the Report Designer.
First of all, when...
Hello everybody,
Today a want to share with you couple approaches that can help you to fix the famous Acumatica’s error:
“Another process has updated the {Table} record. Your changes will be lost”
You can get this error when you open two the same screens with the same record from DB and then modi...
Hi everybody,
today I want to share quite useful post for cases, if you'll need to get some limited dataset from Acumatica database.
Take a look on the code below:
public PXAction<SOOrder> FilterColumns;
[PXButton]
[PXUIField(DisplayName = "Filter Columns")]
p...
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...
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...
Hi,
want to share code, which was written in the context of this question on https://community.acumatica.com. Question is how to modify request and use filtering with help of In or IsIn operator of Acumatica framework.
After plenty of trial and error, here is the code, with...
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...
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...
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.