I am new to Acumatica and need to add approvals to a custom module. Following the instruction found at https://stackoverflow.com/a/37331106/10006439 leads to adding a constant for the custom approval to the static class PX.Objects.EP.AssignmentMapType.
The code is located in PX.Objects\EP\DAC\AsssignmentMap.cs in the code repository, but it isn't part of the editable DAC definition when trying to customize the DAC inside of Acumatica.
Following the instructions, I need to add:
public class AssignmentMapTypeCS : Constant<string>
{
public AssignmentMapTypeCS() : base(typeof(STCSDocument).FullName) { }
}
What is the proper way to access AssignmentMapType to append my custom constant?