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

Notifications

Announcements

No record found.

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

Responsible AI policies

As AI tools become more common, we’re introducing a Responsible AI Use…

Neeraj Kumar – Community Spotlight

We are honored to recognize Neeraj Kumar as our Community Spotlight honoree for…

Leaderboard > 🔒一 Microsoft Dynamics AX (Archived)

#1
Martin Dráb Profile Picture

Martin Dráb 4 Most Valuable Professional

#1
Priya_K Profile Picture

Priya_K 4

#3
MyDynamicsNAV Profile Picture

MyDynamicsNAV 2

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans