Loading ...

How To Get List Of All Acumatica Tables

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

Current Items In View

Hello everybody, today I want to share with everybody how to find all items in view in Acumatica. Suppose you have View declared in the following way: public PXSelectJoin<PRPayrollDetails, InnerJoin<EPEmployee, On<EPEmployee.bAccountID, Equal<PRPayrollDetails.employeeID>>, Inn...