I have BAccountExt with this field (Its first customization):
#region UsrCostCodeID
public abstract class usrCostCodeID : PX.Data.BQL.BqlInt.Field<usrCostCodeID> { }
[EPTimeTrackerCostCodeSelector(typeof(BAccount.bAccountID))]
public virtual int? UsrCostCodeID { get; set; }
#endregion
And i have RQRequisitionLineExt with this field (Its second customization):
#region UsrCostCodeID
public abstract class usrCostCodeID : PX.Data.BQL.BqlInt.Field<usrCostCodeID> { }
[PXDefault(PersistingCheck = PXPersistingCheck.Nothing)]
[CostCode(typeof(Current<RQRequisitionLine.expenseAcctID>), typeof(usrProjectTaskID))]
[PXUIField(DisplayName = Messages.CostCode, Enabled = true, FieldClass = "COSTCODE")]
public virtual int? UsrCostCodeID { get; set; }
#endregion
When i on this two customizations. In Requisitions Primary List RQ3020PL i have this error
Answer
The Multi part identifier "BAccount.UsrCostCodeID" could not be bound
Best answer by bihalivan15
I have two customization projects with identical field names. When I renamed one of the fields, the problem went away.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.