RE: Date filter on a Datetime field in a AX View is not functioning.
Although i tried to modify the queries in different format like this
{SELECT * FROM TestQAInspectionLogView(TestQAInspectionLogView) ORDER BY TestQAInspectionLogView.QualityOrderId ASC, TestQAInspectionLogView.InventRefId ASC, TestQAInspectionLogView.InventRefTransId ASC, TestQAInspectionLogView.ItemId ASC, TestQAInspectionLogView.TestGroupId ASC, TestQAInspectionLogView.TestId ASC, TestQAInspectionLogView.DocuRefRecId ASC, TestQAInspectionLogView.DocuRecid ASC WHERE (((QualityOrdDate<= "9/1/2019".."9/30/2019")))}
Above query throws this Error
Query extended range failure: Right parenthesis expected near pos 31.
{SELECT * FROM TestQAInspectionLogView(TestQAInspectionLogView) ORDER BY TestQAInspectionLogView.QualityOrderId ASC, TestQAInspectionLogView.InventRefId ASC, TestQAInspectionLogView.InventRefTransId ASC, TestQAInspectionLogView.ItemId ASC, TestQAInspectionLogView.TestGroupId ASC, TestQAInspectionLogView.TestId ASC, TestQAInspectionLogView.DocuRefRecId ASC, TestQAInspectionLogView.DocuRecid ASC WHERE (((QualityOrdDate<= 2019-09-01T00:00:00..2019-09-30T00:00:00)))}
Query extended range failure: Right parenthesis expected near pos 40.
{SELECT * FROM TestQAInspectionLogView(TestQAInspectionLogView) ORDER BY TestQAInspectionLogView.QualityOrderId ASC, TestQAInspectionLogView.InventRefId ASC, TestQAInspectionLogView.InventRefTransId ASC, TestQAInspectionLogView.ItemId ASC, TestQAInspectionLogView.TestGroupId ASC, TestQAInspectionLogView.TestId ASC, TestQAInspectionLogView.DocuRefRecId ASC, TestQAInspectionLogView.DocuRecid ASC WHERE (((QualityOrdDate>= 2019-09-01T00:00:00)) OR ((QualityOrdDate<= 2019-09-30T00:00:00)))}
No Error and Filter doesn't apply