Loading ...

Create New Instance Of Graph In Acumatica

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>(); Ready to take your Ac...

What Is TStamp

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   Ready to take your Acumatica experience to the next level? Just as the TSt...

The Structure Of A Strategy Program In Lua

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...

RowInserting And RowInserted Difference In Acumatica

Hello everybody, now I want to share with you difference between RowInserting and RowInserted events. The RowInserting event happens before the new data record is actually inserted into the cache but after all field events happen for this data record. The RowInserted event happens after the actua...

PXDefault PXParent In Acumatica

Hello everybody, today just quick fact. In master-detail DAC and Graph there are used attributes PXDBDefault and PXParent. For me it was interesting to know, that PXDBDefault is intended for initializing values and PXParent is intended for cascade deleting of rows.   Ready to take your Acuma...

Companyid May Not Be Empty

Hello everybody. In case if you want to add some table to Acumatica with compnayid field, and suddenly you can't save it, check weather you configured default Value or Binding in db. It should be ((0)) like on the screenshot: I noticed it only recently while coping with error message about...

Acumatica Epic Failed Or Captions At Page Not Appear

Hello everybody. I want to share with whole world a story. In the begining of this month I created web form. Added there some controls. Today I wanted to add one another control, and after my addition miracously controls at page disappeared. I was surprised, looked for ways to solve problem, and...

How Pages In Acumatica Work

Hello Everybody. Today I will speak about some trivial matters, which I found during usage reflector while analyzed received source code of acumatica. So lets go on. Each page of acumatica as base class PX.Web.UI.PXPage. Base page has the following declaration: public PXDataSource DefaultDat...