Error validating customization due to conflict between projects.
I set the level to 99 for one project.
My code is very simple. I am flipping the Status in Vendor Maintenance to "H" if certain fields are updated within Vendor Maintenance, but it is conflicting with a project with customizations to a few CS screens.
<Graph ClassName="VendorMaint" Source="#CDATA" IsNew="True" FileType="ExistingGraph">
<CDATA name="Source"><![CDATA[
using PX.Data;
using PX.Objects.CS;
namespace PX.Objects.AP
{
public class VendorMaint_Extension : PXGraphExtension<VendorMaint>
{
protected void CSAnswers_Value_FieldUpdated(PXCache cache, PXFieldUpdatedEventArgs e)
{
Base.BAccount.SetValueExt<VendorR.status>(Base.BAccount.Current, "H");
}
protected void Address_AddressLine1_FieldUpdated(PXCache cache, PXFieldUpdatedEventArgs e)
{
Base.BAccount.SetValueExt<VendorR.status>(Base.BAccount.Current, "H");
}
}
}]]></CDATA>
</Graph>
<DAC type="PX.Objects.CR.BAccount">
<Field FieldName="Status" TypeName="string" OverrideClassName="PX.Objects.AP.Vendor" StorageName="ExistingColumn" />
</DAC>
</Customization>
Error: there is a conflict between customization projects. Thay are trying to customize the same DataField Status from PX.Objects.CR.BAccount
Validation failed.
I am new to Acumatica and the posts i've found all seem to be for earlier versions. Any guidance would be greatly appreciated.