Loading ...

Acumatica DAC class generator

Hello everyboydy, today I want to share with anybody mine implementation of DAC class generator. By default Acumatica provides you with DAC class generator which is pretty good. But time from the time I had a need to generate DAC class into text field, and then put it somewhere in my solution, an...

How To Add Sitemap Into Your Customization

Hello everybody, today I want to describe some simple steps of how to add into your customizaiton sitemap. As you already know, sitemap of Acumatica is saved in database. And if you make customization of your sitemap you may need to add to your project.xml something like this: <Customization&n...

Net Core Tag Helpers

Hello everybody, today I want to describe some .Net core tag helpers that you can use in order to create your web pages. There are plenty of already implemented tag helpers that can simplify your life as a developer. Here is the list of already made: Anchor Cache Distributed Environment Form For...

How To Validate Input On Insert

Hello everybody, today I want to document small feature in Acumatica which I can call validation of insert.  As usually if you need to validate some logic of insertion you can use something like RowXXXXd event. But for simple validations you can use PXUIVerify attribute. Below goes example t...

Some Elastic Search Featues

Hello everybody, For few days I've got assigned to work with Elastic search. As faithful to my principles before doing any activity I'd like to familiarize myself with instrument that I had to use. In ordre to use it more effectively. So, first of all I want to mention terminology. As a lot of de...

How To Switch Google Developer Platform To English

Hello, recently I've went into google development platform and faced following issue:  all of it's user interface was in Russian. I prefer to see English interface because majority of manuals are written in English, not in Russian. How to switch that language to English? Very simply. Just ad...

How To Create Plugins That Can Be Loaded Unloaded

Hello everybody, today I want to show sample of code that you can use for your plugins. Sometime it can happen that you have some application with it's dlls and you can decide to make ad hoc dlls. In order to demonstrate how to do it I prepared following code: Create first class library as BaseLi...

How To Convert Excel File To Csv File

Hello everybody, today I want to document a few lines of code which can help to convert excel file to CSV file with help of OLE: static void ConvertExcelToCsv(string excelFileName, string csvOutputFileName, int worksheetNumber = 1) {   &...

Different Types Of Views

Hello everybody, today I want to write few words about different kinds of Views in .Net core. So, if you decide somehow to create new view you can see something like this: and now question. What is the difference between MVC View Page, MVC View Layout Page, MVC View Start Page and MVC View Impor...