In this article, we will learn how we can use the temporary table as a form datasource in D365. In our scenario, we will populate the temporary table at runtime and bind it with the form datasource. firstly, we will pass an argument on the clicked event and write the form datasource init method to populate the data in it. In our scenario we will work on the CustTable form, we will populate the customer group in the temporary table which we create on the selected customer while clicking the button. Step 1: Create a new table of type TempDB and add two new fields i.e., CustGroupId and CustGroup. Step 2: We will create a new form with the pattern (List Type), then add our previously created temporary table as a datasource, and then drag both the fields CustGroupId and CustGroup on the form grid part. After the form creation, we will also create the display menu item of type form and use our form on it. Step 3: We will create an extension of t...
In some of the scenarios, we want to filter out the from-date and to-date ranges on the basis of different fields and we are not getting the outcome in which we want to apply the AND/OR clause between date ranges on different date fields and we cannot acquire this result using out-of-the-box query classes. So we have applied complex date ranges to get the desired outcome:
void initQuery()
{
Query query;
QueryRun queryRun;
QueryBuildDataSource qbdsProjPeriodLine;
QueryBuildRange rangePeriodId;
query = queryRun.query();
qbdsProjPeriodLine = query.dataSourceTable(tableNum(ProjPeriodLine));
if (periodFrom && periodTo)
{
qbdsProjPeriodLine.addRange(fieldNum(ProjPeriodLine, PeriodFrom)).value(strFmt('((%1.%2 >= %4) && (%1.%3 <= %5))',
qbdsProjPeriodLine.name(),
fieldStr(ProjPeriodLine, PeriodFrom),
fieldStr(ProjPeriodLine, PeriodTo),
date2StrXpp(periodFrom),
date2StrXpp(periodTo)));
}
}
Comments
Post a Comment