Loading ...

Create View If Not Exists In Acumatica Customization

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

How To Avoid Echo During Usage Of Teamviewer

Hello everybody, here I want to leave a short notice on how to avoid hearing yourself if you are connected over TeamViewer to somebodies computer. By defualt TeamViewer duplicates sound that goes through sound system of computer to which you've connected. Not many people know, that such functiona...

How To Shrink Database Of Acumatica With Rebuilding Of

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

How To Override ExecuteSelect In Acumatica In Your Graph

Certainly! Below is an example of how you can override the ExecuteSelect method in a custom graph in Acumatica using C#. This example demonstrates how to customize the data retrieval process in a graph by overriding the ExecuteSelect method. Example: Overriding ExecuteSelect in Acumatica Graph .b...

What Is Min Markup Markup Msrp In Acumatica

Hey there! So, as a software developer who's spent most of my time writing code and debugging issues, I recently stumbled upon some terms while exploring Acumatica that left me scratching my head: Min Markup, Markup, and MSRP. These terms popped up while I was trying to configure pricing for a cl...

How To Make Managers Not As Sheep

As someone who has climbed the ranks from a junior developer to a software architect, I've seen firsthand how managerial behavior can either empower teams or stifle innovation. One of the most frustrating phenomena I've encountered is the tendency of some managers to act like sheep—following the...

How To Manage Default Order Of Columns In Selector Of Acumatica

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