I am fairly new to llblgen and am having trouble filtering. I have an employee to positions to budget year realtionship. An employee may have many positions and each position may have many budget years. What I want to do is pick up all employees, all positions for the employee, and all budgetversions still active
In tree view it would look like
Employee
Positions
BudgetYearForPosition
BudgetVersionForBudgetYear.ActiveFlag
I need all employees, all positions, any budget year for position where the budget version is still active. I added the following relations to the get multi
relOtherTables.AddHrmasterEntity.Relations.EmployeePositionEntityUsingEmployeeMasterId)
relOtherTables.AddEmployeePositionEntity.Relations.BudgetPrepEmployeeMasterEntityUsingEmployeePositionId)
Dim fltPos As IPredicateExpression = New PredicateExpression
fltPos.AddWithAnd(BudgetVersionFields.Status <> BudgetVersionStatus.Inactive)
relOtherTables.Add(BudgetPrepEmployeeMasterEntity.Relations.BudgetVersionEntityUsingBudgetVersionId).CustomFilter = fltPos
But I still get inactive budget versions. Any advice would be greatly appreciated. Thanks