Quantcast
Channel: Microsoft Dynamics 365 Community
Viewing all articles
Browse latest Browse all 64797

Building query AND using query object in X++

$
0
0
Create and add datasource with range in X++
// Code using X++ to build the query
Query query;
QueryRun queryRun;
QueryBuildDataSource qbds;
ProjTable ProjTable;
;

query = new Query();
// Add a datasource to the query
qbds = query.addDataSource(tableNum(ProjTable));
// Add a range to the newly added datasource.
qbds.addRange(fieldNum(ProjTable, ProjId)).value("00403_1036..00412_1036");

queryRun = new QueryRun(query);

while(queryRun.next())
{
projTable = queryRun.get(tableNum(ProjTable));
info(projTable.ProjId + ", " + ProjTable.Name);
}



Use query object to retrieve AOT query
// Code using a query string
static void UseAOTQuery(Args _args)
{
Query query;
QueryRun queryRun;
QueryBuildDataSource qbds;
QueryBuildRange qbr;
ProjTable projTable;

query = new query(queryStr(ProjTable));
queryRun = new QueryRun(query);

while (queryRun.next())
{
projTable= queryRun.get(tableNum(ProjTable));

info (strFmt("%1 - %2", ProjTable.ProjId, ProjTable.Name));
}
}

Viewing all articles
Browse latest Browse all 64797

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>