In my workforce project's Dispatcher map I have created a dynamic date filter (following this blog post) that filters the assignments by due date so that the map only show's assignments that are due today or in the next 7 days. The filter works in the "Dispatcher Map" web map which you can configure through the project configuration page, however in the "project view" (when I click open project) the assignments are not filtered and all are shown regardless of date.
Here is my actual SQL query if that is relevant:
dueDate <SPAN class="operator token">BETWEEN</SPAN> <SPAN class="keyword token">convert</SPAN><SPAN class="punctuation token">(</SPAN>date<SPAN class="punctuation token">,</SPAN> GETDATE<SPAN class="punctuation token">(</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">)</SPAN> <SPAN class="operator token">AND</SPAN> <SPAN class="keyword token">convert</SPAN><SPAN class="punctuation token">(</SPAN>date<SPAN class="punctuation token">,</SPAN> GETDATE<SPAN class="punctuation token">(</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="operator token">+</SPAN><SPAN class="number token">7</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN></SPAN>
So am I doing something wrong? Is this intended behavior that the workforce assignments cannot be filtered in the project view? Or is this a bug?