web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

No record found.

News and Announcements icon
Community site session details

Community site session details

Session Id :
Microsoft Dynamics AX (Archived)

How to pass lesser than created date range in query class

(0) ShareShare
ReportReport
Posted on by 252

Hi,

I want to pass a 'CreatedDateTime' range value to a query in runtime to delete a table records which has the 'CreatedDateTime' value lesser than the parameter value that is been passed as query range value.

When the parameter value is been fetched, it is in the correct format of '9/27/2017 11:30:44 am'. But when I pass the same to query range using the below syntax, it is getting converted to the format '2017-09-27T15:31:48' which is not making the query to select the records properly.

utcDateTime         createdDateTime;

createdDateTime= dataContract.parmFromDate(); //This returns utcDateTime value - 9/27/2017 11:30:44 am

 

queryBuildrange = query.dataSourceTable(tableNum(TestTable)).addRange(fieldNum(TestTable, CreatedDateTime));
queryBuildrange.value(strFmt('<%1', createdDateTime)); //This adds the range value as 2017-09-27T15:31:48

Any suggestions pls!

Thanks!

 

*This post is locked for comments

I have the same question (0)
  • Chaitanya Golla Profile Picture
    17,225 on at

    Hi,

    Please try the following:

    queryBuildrange.value(strFmt('<%1', queryValue(createdDateTime))); (or)
    queryBuildrange.value(strFmt('(CreatedDateTime < %1)', DateTimeUtil::toStr(createdDateTime)));
  • Suggested answer
    Vilmos Kintera Profile Picture
    46,149 on at

    You should use SysQuery::range() for setting the value. The lower bound would be utcDateTimeNull() or DateTimeUtil::maxValue() depending whether you want left or right open bounds for your date range (possibly null is the right one in your case).

    [View:https://msdn.microsoft.com/en-us/library/sysquery.range.aspx:750:50]

    Also make sure that you do not forget to set timezone offset for the UTCDateTime values if applicable.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Stars!

Meet the Microsoft Dynamics 365 Contact Center Champions

We are thrilled to have these Champions in our Community!

Congratulations to the April Top 10 Community Leaders

These are the community rock stars!

Leaderboard > 🔒一 Microsoft Dynamics AX (Archived)

#1
CP04-islander Profile Picture

CP04-islander 21

#2
Jagadabi Profile Picture

Jagadabi 6

#2
ZvikaR Profile Picture

ZvikaR 6

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans