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.
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...
Hello everybody,
today I want to leave a short note on how to avoid Copy/paste with help of custom attributes.
Imagine following scenario. You have some set of duplicated code, which you need to apply at FieldSelecting . One of the ways of achieving this can be creation of some class a...
Hello everybody,
today I want to leave a note on usage of RowPersisting event.
Quite often I see situations, when RowPersisting is used for making additional insertions to database. Also quite often I see cases when some additional inserts being performed to database.
I want to warn against...