Home Blog Acumatica Tested, Client Approved – Implementing Approval Process on Custom Screens

Acumatica Tested, Client Approved – Implementing Approval Process on Custom Screens

Joshua van Hoesen | November 24, 2022

Acumatica Tested, Client Approved – Implementing Approval Process on Custom Screens

Introduction

As companies grow and develop, they may find the need to safeguard business processes within their system.  Thankfully Acumatica comes with a native full approval suite that can be configured to a company’s specific needs.

For developers, the question that arises next is how to protect custom processes that are developed using the Acumatica Framework and want the same seamless functionality of Acumatica’s built-in system.

This article aims to provide you a path to accomplish this task.

In this case, we will be reviewing the time request page developed by ASI LLC that allows employees to request periods of time off and submit requests for approval. Time requests will then be reviewed per Acumatica’s built-in approval processing and reflect on the employees timecard based on the configuration.

Setup Page

As is common practice when extending or creating new functionality within the Acumatica Framework, we are going to create our own preferences page to handle configurations for our Time Request feature. 

The page shown in the image below has a grid listing the entities for approval and a checkbox determining if approvals are enabled for the entities listed within the grid. A numbering sequence field is also defined that will later be utilized by the custom Time Request data entry page. 

Acumatica Tested, Client Approved – Implementing Approval Process on Custom Screens

Data-Access-Classes

AATimeRequestSetup

This class is being implemented as the setup Data-Access-Class for the Time Request functionality; it holds a single field utilized by the approval process TimeRequestApproval 

GIST: https://gist.github.com/jvanhoesen/db449c52ae593efd0fc22b9b2939fd88

AATimeRequestApproval

The structure of this DAC mimics Acumaticas EPSetupApproval table in the database and should utilize both IBqlTable and the IAssignedMap interface.

GIST: https://gist.github.com/jvanhoesen/72198b26eabe422335f1b31e2e617902

Graph

The graph for the setup page is simple and straightforward, referencing two Data-Access-Classes and utilizing a single Event AATimeRequestSetup_FieldUpdated which when triggered will update all corresponding records within the AATimeRequestApproval view.

GIST: https://gist.github.com/jvanhoesen/19bb75eab4aca39c1228a86e16c5261a

Data Entry Page

Creation of a data entry page is made more complex with the implementation of approval processes. The completed UI for the Time Request functionality can be seen in the image below. This page allows the creation of a time request by an employee with a detailed hour breakdown of the request. This document can now be taken off hold and submitted for approval.

ApprovalProcesses-1

GIST: https://gist.github.com/jvanhoesen/793901fada92c37aca0ec16d80c73f

This will be the standard Acumatica approve and reject actions under the Actions drop down, which we will define later in the article.

Primary Data-Access-Class

The primary Data-Access-Class we are defining for our approvals that enable custom data entry pages is AATimeRequest

GIST: https://gist.github.com/jvanhoesen/b4ef5c93dc67cb8ab1d90852d9715682

IAssign

The Data-Access-Class must implement the IAssign interface. This will require including the fields OwnerID and WorkGroupID in the class declaration.

GIST: https://gist.github.com/jvanhoesen/825585aea3c9217199f81c9d12476ddf

Status

You will need to define the following status values for the status field of your DAC with the corresponding displays as shown below.

“H” – “On Hold” 

“P” – “Pending Approval”

“A” – “Approved”

“R” – “Rejected”

GIST: https://gist.github.com/jvanhoesen/58a2c6105789c632994d51a87fce3b24

Flags

We will need to declare two additional bit fields on our Data-Access-Class to keep track of if the record has been approved or rejected by the user.  These will will name Approved and Rejected.

IsApprover

This is a non-DB backed field that is populated via graph events during the loading of a record and determines if the current user is a valid approver for the entity.

Graph

The graph for our data entry page is defined as AATimeRequestEntry. Though it’s a bit more complex than our setup page, its logic is utilized to update the statuses on the primary Data-Access-Class.  This provides additional approval logic, encapsulated in the Acumatica helper classes.

GIST: https://gist.github.com/jvanhoesen/7c438ef851ef1aac4bfa9af7c9cebf08

EPApprovalAutomation

Creating the graph for a custom data entry page with approvals is made less complex thanks to helper classes developed by Acumatica which consolidate logic into easy to use structures.

We will implement the EPApprovalAutomation helper with a view declaration name of Approval and the following arguments :

SourceAssign – Primary DAC

Approved – Primary DAC approved field

Rejected – Primary DAC rejected field

Hold – Primary DAC hold field

SetupApproval –  SetupApproval DAC 

Actions

You will need to create two additional actions as defined below:

Approve –  Updates status of the entity to “Approved” and marks the “Approved” flag on the primary DAC as true.

Reject – Updates status of the entity to “Rejected” and marks the “Rejected” flag on the primary DAC as true.

Events

Primary_DAC_RowSelecting – Determine if approvals are enabled, if enabled check that the current user is the set approver and populates IsApprover accordingly.

GIST: https://gist.github.com/jvanhoesen/8461bf6dd782b07f1f7f9713deddc49f

Primary_DAC_RowSelected – Enables Approve / Reject buttons when an entity goes to Pending Approval as well as disabling header fields except for Hold check-box for when the entity is off hold.

GIST: https://gist.github.com/jvanhoesen/a385ca54d3f87a4694728f6c509c9a27

Primary_DAC_FieldUpdated – Sets entity to pending approval when taken off hold, or resets the other status fields when a document is put back on hold.

GIST: https://gist.github.com/jvanhoesen/dcf6fe87eb6ae25a214a2657066301a6

EPApproval_RowInserting – Used to set additional information on the approval record for the approver.

GIST: https://gist.github.com/jvanhoesen/030ee7529c1bd8aa45da04166cfc059a

This additional information may also be populated by adding CacheAttached events in lieu of RowInserting as seen below.

GIST: https://gist.github.com/jvanhoesen/14e9fdb4738f956f2b414d54ef27cc6b

Acumatica Modification

Graph Extension

A graph extension will need to be created from the Acumatica approval map maintenance graph EPApprovalMapMaint to allow the custom data entry page to show on the entity type list, implemented with the sample page AA306000 shown below.

GIST: https://gist.github.com/jvanhoesen/b3f688911bfd0375ed1dd8bd8b147884

Once the extension has been written and the page registered within the instances sitemap, the custom entity will now become available within the Entity Type dropdown list as seen below.

ApprovalProcesses-1

Configuration

Once all steps above have been completed, you will be able to define an approval map for your custom entity and utilize the approvals process native to the Acumatica framework.

ApprovalProcesses-1

Conclusion

Though the use of advanced Acumatica features in custom pages can at times be daunting, I have tried to show how straightforward it can be by following these simple steps:

  1. Create a setup page that configures if approvals are active for the custom entity.
  2. Create a data entry page that utilizes and responds to approval workflows.
  3. Create an extension of the Acumatica approval mapping page to allow defined custom entities.

With the methodology I outlined for you to implement, you too will be able to easily utilize Acumatica’s built-in approval process for custom data entry pages.  This will greatly enhance the protection and auditing capability of important client specific system data – a must have in any modern ERP system.

Happy Coding!

Blog Author

Lead Software Engineer at Accounting System Integrators. He leads the development team, which built NonProfitPlus – business management software engineered with non-profit organizations in mind and powered by Acumatica ERP to deliver a suite of fully integrated applications.

Receive blog updates in your Inbox.