Hello everybody,
today I want to share how to fight with error like
Error 22 An object reference is required for the non-static field, method, or property 'PX.Data.PXSelectBase<Acumatica DAC>.Select(params object[])' bla bla bla
As usually it means that you try to use this in selector...
Hello everybody,
today I want to share results of my investigations of two similar pieces of functionality in Acumatica.
Have you ever wondered which Insert in cache works faster this:
a) var temp = (PRPayrollDetails)PayRollsDetails.Cache.Insert();
or this:
b) va...
Hello readers,
today I want to share hwo it is possible to read from stored procedure in Acumatica. Keep in mind, that reading from sp is against best practices of Acumatica, because if you read from sp, then you'll reading will not be cached and other side effects, but sometime you don't have a...
Helllo,
today I want to share how to get extension of basic DAC class iin Acumatica. Lets say you have class ARTran, and extenstion for it ARTranExt and you want to get it in the code of ARTran_RowUpdated event
Then you can get extenstion in the following way:
prot...
Hello everybody,
today I want to share how to find current company id in Acumatica:
Here it is:
int? companyid = PX.Common.PXContext.GetSlot<Int32?>("singleCompanyID")
for me it was long way to find it
Ready to take your Acumatica experience to the next level? If you’ve been s...
Hello everybody,
today I want to share how to enumerate cahed objects according to some type.
Imagine you have following declaration:
public PXSelectJoin<PRTran> PaySlipDetails;
And that you need to enumerate them as list of PRTran's in some special way.
In my case I used following in...
Hello everybody,
today I want to share answer at simple question how to change the caption at some screen.
For example you want to change caption at screen AR202000 for Inventory ID to caption INVENTORY ID.
For this purpose we need to understand which DAC is responsible for Grid. For this p...
Hello everybody,
today I want to share one interesting feature of Acumatica.
I revelaed that after inserting of new row executes FieldUpdated even if feld wasn't updated. After reading documentation I found that it is gotcha and inteded to be so.
Discover the power of customizati...
Hello everybody,
today I want to share how I deal with ObjectsEqual limitation. In one of my tasks I had requirement to check for equality more then eight parameters and found that ObjectsEqual takes only 8 parameters. But I needed more.
In order to fix it I decided to use extensi...
Hello everybody,
I want to share some pieces of code how to work with enums.
Some time it is needed to have list of string constants in your code, which can feet to some strings with spaces.
enum EarningType
{
[Description("Virginina")]
VL,
[Description("S...