Expert Insights on Dynamics 365, Power Platform and CRM: Solutions, Tutorials, and Best Practices

PowerBI
Power BI
Saumya Anilkumar

Insert Different Object in PowerBI

High level resolution steps Detailed resolution steps Step 1: Open Power BI Desktop. Firstly, click on File menu bar in that select “Option and settings”and then click Options. Step 2:

Read More »
Lookup method
Coding and Extensions
Saina Cloud Software Solutions

Lookup method in Dynamics 365 for Finance and Operations

[DataField] class ModelID { /// /// /// /// /// public void lookup(FormControl _formControl, str _filterStr) { //super(_formControl, _filterStr); //Table Relations //select * from POLModelTable //where IsActive = Yes Query query

Read More »
Dynamic queries
Coding and Extensions
Saina Cloud Software Solutions

Dynamic queries in Dynamics 365 for Finance and Operations

Scenario CODE* public void dynamicQueries() { Query query = new Query(); QueryBuildDatasource qbdsPOLMobileServiceTable, qbdsPOLModelTable; QueryBuildRange qbrModelId; qbdsPOLMobileServiceTable = query.addDataSource(tableNum(POLMobileServiceTable)); qbdsPOLModelTable = qbdsPOLMobileServiceTable.addDataSource(tableNum(POLModelTable)); qbdsPOLModelTable.relations(true); //Use Relations //qbdsPOLModelTable.addLink(fieldNum(POLMobileServiceTable, ModelId), fieldNum(POLModelTable, ModelID)); //Ranges

Read More »