Contents tagged with PXInstanceHelper
-
Different methods of PXInstanceHelper class in Acumatica
Hello everybody,
today I want to document one important class in Acumatica: PXInstanceHelper.
I have found it long time ago, but finally time arrived to show how it works and what features it has. So, PXInstanceHelper include such methods:
Method AppDataFolder.
In code it looks like this:
var result = PXInstanceHelper.AppDataFolder;
Screenshot of it's execution may give you additional hint of what it does:
This method returns physical path to folder App_Data inside of Acumatica instance. As you can see from the screenshot, on my dev machine App_Data folder lives at
C:\Program Files\AcumaticaERP\InstanceHelperDB\App_Data
2. Method CurrentCompany.
In code looks like this: … more