Hello everybody,
today I want to leave a short note on how to pass some additional parameters into Processing method of processing page with help of lambda expression. Syntax is pretty simple:
public class SSShipmentDateResetter : PXGraph<SSShipmentDateResetter>
{
publi...
Hi everybody,
today I want to leave a short note on how to deal with Unbounded DAC classes in Acumatica. Unbounded in other words means DACs that doesn't have dirrect persising target in database.
For Unbounded DAC classes to work like this, two steps are needed:
Add attribue [PXVirtualDAC] to P...
Hello everybody,
today I want to leave a short note for the following situation:
Imagine that you need to enable some control in Acumatica ( for example Mark for PO ) on page Sales orders ( SO301000 ).
As usually for enabling control there are two ways:
RowSelected
Automation steps.
Recently I...
Hello everybody,
today I want to write a few words about changes of PXUIFieldAttribute.SetVisibility method.
In the past, if you wanted to turn on some column, you could write in RowSelected event something like this:
PXUIFieldAttribute.SetVisibility&...
Hello everybody,
today I want to leave a post on how to change all emails, which are contained in Acumatica. For this purpose you may use script below:
UPDATE contact SET email = email + '.ts' UPDATE socontact SET email&...
Hello everybody,
today I want to leave a short note on how to use F-BQL version of PXSelect in Acumatica.
In past it was common to have this line of code in your graph:
public PXSelect<Student1> Students;
In new F-BQL introduced new construction, SeleftFrom. Proper way of using i...
Hello everybody,
here is just short post on how to download DAC Schema browser which I recently opensourced.
You'll need two steps:
1. Navigate in your browser to link https://github.com/YuriyZaletskyy/DacSchemaBrowser 2. Click on Star as displayed on screenshot (this is optional step):
&nb...
Hello everybody,
today I want to share single line of code, which I found recently while digging Acumatica source code with reflector. Sometime you may need to know if there is some or antoher Acumatica table available. For example if you create some customization plugin. How to find out if there...
Hello everybody,
Today I want to leave a short notice on how to call Cancel button of Acumatica from inside C# code:
graph.Clear();
That is it, Clear method is binded to button Cancel in Acumatica. Besides that Clear method will reload current data record from database and rolls back changes of C...
Hello everybody,
today I want to say a bit more about usage of attribute PXUIRequired as previous article on my blog wasn't very easy to follow by some of my readers.
Take a look on presented code sample:
public class sOOrderType : Constant<string>
{
public const&n...