Let me know if this is not the correct place to pose this question, but I’m currently following the T210 training materials and was given the task to create a master/detail relationship between 2 DACs. I believe I’ve done this but keep getting met with the error in the topic title and not sure how to proceed forward. My dac properties are defined exactly like they are in the GIT example and not sure where else to look to try and figure this out -
#region ServiceID
[PXDBInt(IsKey = true)]
[PXDBDefault(typeof(RSSVRepairPrice.serviceID))]
[PXParent(typeof(SelectFrom<RSSVRepairPrice>.
Where<RSSVRepairPrice.deviceID.IsEqual<RSSVLabor.deviceID>.
And<RSSVRepairPrice.serviceID.IsEqual<RSSVLabor.serviceID>>>))]
public virtual int? ServiceID { get; set; }
public abstract class serviceID : PX.Data.BQL.BqlInt.Field<serviceID> { }
#endregion
Any help would be greatly appreciated