Skip to main content

Posts

Showing posts from 2016

Acumatica - Do custom logic before or after the release operation in INVOICE screens AP/AR

If you want to add custom logic to the release button the following code will help you. Tested with acumatica 5.30.X if you want to do your custom action after release follow the below code public delegate IEnumerable ReleaseDelegate(PXAdapter adapter); [PXUIField(DisplayName = "Release", MapEnableRights = PXCacheRights.Update, MapViewRights = PXCacheRights.Update)] [PXProcessButton] public IEnumerable Release(PXAdapter adapter) {    IEnumerable ret = Base.Release(adapter);    //DO YOUR CUSTOM ACTION HERE return ret; } if you want to do your custom before after release follow the below code public delegate IEnumerable ReleaseDelegate(PXAdapter adapter); [PXUIField(DisplayName = "Release", MapEnableRights = PXCacheRights.Update, MapViewRights = PXCacheRights.Update)] [PXProcessButton] public IEnumerable Release(PXAdapter adapter) {    //DO YOUR CUSTOM ACTION HERE    return  Base.Release(adapter);; }

Password Policy for axis remit

Your password needs to be minimum 8 and maximum 20 characters and a combination (at least one of each) of following characters - 1. English uppercase characters (minimum 1) 2. English lowercase characters (a through z) 3. Numbers (minimum 1 and maximum 5) 4. Special characters (minimum 1 and maximum 3), the allowed special characters are ! # $ % ^ & * - _ + = | ? / { } 5. Spaces are not allowed in password 6. Your password should not be your User ID or contain the User ID 7. Repetition of same characters is not allowed more than 2 times(e.g. ccc is not allowed however cc is allowed). Also your new password cannot be same as any of the last 4 passwords.