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...
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 just short notice of DAC and tables. If you create new functionality in Acumatica and look for creating tables, you should know, that all tables which you'll create should have column CompnayID, and that column shouldn't be reflected in DAC.
4 Comments
anonymous sa...