Hello everybody.
Today I want in short share screen numering in Acumatica.
Let's say we have screen number like this: xx.yy.zz.tt
in that case
yy is screen sequential number
zz is screen type: 10 - setup, 20 - Maintenance, 30 - data entry, 40 - inquiry, 50 - processing, 60 - reports.
tt is sub sc...
Hello readers of mine blog.
Today I want to share with everybody who wants to make unit test of Acumatica how I achieved it.
For unit testing I use NUnit. In order to start my work with Acumatica Unit testing I wrote the following class:
[TestFixture]
public class CATranEntryExtTest
{...
Hello readers of mine blog.
Today I want to share with everybody who wants to make unit test of Acumatica how I achieved it.
For unit testing I use NUnit. In order to start my work with Acumatica Unit testing I wrote the following class:
[TestFixture]
public class CATranEntryExtTest
{...
In one of my previous posts I described how to add autonumbering to acumatica. Described method will work pretty well, if you don't have any pop-ups which also need to have autonumbering. In case if you have such pop-ups, then it is different story.
My next assignment on the job was to add a...
Hello,
this post is dedicated to understanding how security in Acumatica works. If to be precisive security of accounts.
Let's say you need in some way filter accounts for some user according to configuration at row level security screen ( GL104000 ).
In my case I had following records...
Today I want to share how to copy Entty Types items in acumaticca from one instance into another instance.
The first step was to create import export settings in both instances of acumatica as described in acumatica manual similar to this screenshot:
The second step was to create project, which...
Today I want to share with you how I implemented autonumbering feature in acumatica for page CA304000.
My task originally was the following: add autonumbering feature to the "Document Ref" field with following rules:
a. step of incrementing is 1
b. length of field should be six char...
Hello,
today I want to share just simple record of how to join acumatica and your Active Directory.
For example you have the following data:
Active directory url:LDAP://RT1:389
User name yura_zale@dot.com, password: 123
For cases like this you need the following record in your web.config fil...
Hello everybody,
this will be the first post in December. I want to boast that I got T101 certificate from acumatica univercity which proves that I'm certified developer for acumatica!!!!
The screenshot of it:
Quite common task, which I bored to google and as it is not hard to memorize, but decided to record it.
SELECT COLUMN_NAME, TABLE_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE COLUMN_NAME LIKE '%DocType%'