Hi goog night.
I need to get the value of the current BranchId y use this propertie in my DAC.
#region BranchID
public abstract class branchID : PX.Data.BQL.BqlInt.Field<branchID> { }
protected Int32? _BranchID;
[Branch()]
[PXDefault(typeof(AccessInfo.branchID))]
public virtual Int32? BranchID
{
get
{
return this._BranchID;
}
set
{
this._BranchID = value;
}
}
#endregion
can you help me please? thanks!!!