Hello everybody,
today I want to leave a really short notice on how you can submit data into Acumatica. There are three ways:
Contract-based REST API
Contract-based SOAT API
Screen-based SOAP API
Historically the first was screen based SOAP API, and with time two others were added. Lat...
Hello everybody,
today I want to leave a comment on how to refresh cache of Acumaitca.
As usually I start with this method:
ViewName.View.RequestRefresh();
But I found that it not always work. For my surprise RequestRefresh not works for some reasons. I think reason for this ma...
Hello everybody,
today I want to leave a short post on how to display images in grid of Acumatica.
I'll demonstrate it on sample of Sales Orders pages, which is known as SO301000.
End result will look like this:
In order to make it work, I've done the following:
Created extension to...
Hello everybody,
today I want to leave SQL fix for error message:
"There are problems on database server side:
READ_COMMITTED_SNAPSHOT is not set for current database.
On your Acumatica instance it may look liike this:
For fixing run this SQL:
ALTER DATABASE Saddleback_staging SET READ_COMMITTED...
Hello everybody,
today I want to leave a short notice on how to use Autofac in Acumatica, but with single registration. In this article I've descirbed how to use Autofac for resolving interface < -- > class implementation.
But one of my collegues Deebhan Hari pointed that with my...
Hello everybody,
today I want to leave a notice with proposal on how to program reaction on clicking of Abort button in processing screen.
Recently it become needed for me to program some functionality to happen after user clicks on button Abort of processing screen.
In my case I needed so...
Hello everybody,
today I want to leave a short post on how to create some custom view in Acumatica Customization if that view doesn't exist:
if not exists (select * from sysobjects where name='CustomerSelector' and xtype='V')
begin
exec (
&nb...
Hello everybody,
today I want to leave short note on how to override and call CreatePaymentProc method of Acumatica which I discovered today with Naveen from Kensium.
My favorite way of overriding methods in Acuamtica with usage of Action and passing there parameters doesn't work. That is because...
Hello everybody,
today I want to leave another portion of SQL Server optimization for Acumatica database. In case if your db become huge, and you want to make it smaller, you can try following SQL code:
DECLARE @Table NVARCHAR(128)
DECLARE @Database NVARCHAR(128)
D...
Hello everybody,
today I want to leave a short notice on how to manage order of columns in Selector of Acumatica. Quite often customers has desire to manage default order of columns in selector. That is very easy to achieve with new Type[] parameter added to your selector. Take a look on how I've...