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.
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...
Hello everybody,
today I want to share with you important difference between PXSelect and PXSelectReadonly.
In my project I had the following situation. PXSelect of table name didn't give me what actually was in db. After a long research I found PXSelectReadonly and key diffe...
Hello everybody.
I want to share if you need to execute stored procedure in Acumatica how to achieve it.
It's simple.
1. Create Stored procedure in db.
2. Use in your code PXDatabase.Execute.
For example let's say you created stored procedure which has name DeletePrTranByPrPayroll...
Hello,
today I want to note how to create new instance of Graph. Lets say you need to create instance of graph PRPaySlipManager.
In that case you can get instance of that graph in the following way:
PRPaySlipManager manager = PXGraph.CreateInstance<PRPaySlipManager>();
Hello everybody,
I want to share how to fight with error:
Filegroup reference and partitioning scheme' is not supported in this version of SQL Server.
Today I wanted to move Acumatica to SQL Azure and faced that error message. After research I found that I have to remove the two "ON [PRIMARY]" pa...
Hello everybody,
I want to share what is purpose of field TStamp in database for tables in Acumatica. In reality you can make projects without it, but. If you add it, you'll help Acumatica with concurency management
The Structure of a Strategy Program in LUA
Thursday, July 24, 2014 1:07:00 PM
Hi all,
I continue investiaging another area of knowledge of humankind, which is FXCM trading Station.
So, if you need to write strategy, you'll need following methods to be defined in your strategy:
Init()
Pre...