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 Col...
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 Prot...
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 author...
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 co...
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 .
I...
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 packa...
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.
Hello everybody,
today I want to speak about very useful feature in Visual Studio.
Sometime you may need some kind of source of inspiration from Acumatica source code. But quite often that source of inspiration have text, which is scattered over multiple lines of code.
For example, you want to fi...
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...
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...