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...
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...
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...
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...
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...
Hello everybody,
Today I want to describe PXDimensionSelector attribute usage in Acumatica. According to manual PXDimensionSelector attribute has following purpose:
Defines an input control that combines the functionality of the PXDimenstion attribute and the PXSelector attribute. A user can vie...
Hello everybody,
in this article I want to describe how filtering in Acumatica work. When I say filtering, I mean following UI part:
In manuals T100 - T300 there is almost nothing about how filters work, so I want to share few bits of development information.
Storage
All information about f...
In this part we implement real automation test for creating POOrder - screen PO301000;
Before to start, please read first part of rhis post.
The main steps:
Create solution and add nedeed components from SDK folder
Add new project (Net library) to solution
Configure generator an...
Hello erybody,
today I want to share one important note, which took significant amount of time from me to finish.
I had page which as html output few tables. For me it was nessesary to make one page per table. In order to achieve it I've found following CSS:
<style>
...