Posts

Using solution component mover in D365 CRM.

Image
Hello Guys, In our previous  blog   we have seen how to use command button for opening a quick create form. Today we will see how to use solution component mover in D365 CRM. Do follow us to know more about Dynamics and Power Platform.  Also if you like our blog then please comment and share this blog with your friends. Consider a scenario where you are working in one of the organization's project along with your colleagues or other CRM developer. You have been assigned a task or DevOps or Jira where you have to develop some new functionality.  Also other developers have been assigned some other task or DevOps where they are developing or implementing some functionality using CRM. To distinguish one another's task you might create solutions where you are putting your CRM components. Now once development is done and you all have to move your components on target environment for further process. In this case all the developers having various solutions that needs to be move. Micro

Using command button to open a quick create form in D365.

Image
  Hello Guys, In our previous  blog   we have seen how to implement pagination for Data Table in canvas app. Today we will see how to use command button for opening a quick create form. Do follow us to know more about Dynamics and Power Platform.  Also if you like our blog then please comment and share this blog with your friends. Consider a scenario where we need to display a quick create form for child entity. In this case Power Platform allows us to use Command button and customization. As you can see in above image, we have a solution which contains contact table and one quick create form. Now we will display this quick create form on Account Table.  First of all we will be adding Account Table in a solution and then customize it. As you can see we have added Account Table in solution. Now to customize Command Button we need to open the App (Model Driven App. eg. Sales Hub or any other which you have already created.). As you can see we have our App designer. Now select the Account

Pagination in canvas app for Data Table.

Image
Hello Guys, In our previous  blog   we have seen how to display json data using Data Table. Today we will see how to implement pagination for Data Table in canvas app. Do follow us to know more about Dynamics and Power Platform.  Also if you like our blog then please comment and share this blog with your friends. We will be working with the same canvas app which we were using in our previous blog. As you can see we have our canvas app which is displaying rows. Now open the canvas app in Power Apps and select main screen and write below formulas: Set(AccountID,GUID(First([@ModelDrivenFormIntegration].Data).ItemId)); Set(FlowJson,ContactListFlow.Run("",AccountID)); ClearCollect(colDocument,ForAll(Table(ParseJSON(FlowJson.contacts)),{FullName:Text(ThisRecord.Value.FullName), Phone:Text(ThisRecord.Value.Phone),Email:Text(ThisRecord.Value.Email)})); UpdateContext({varPerPageRows:5}); UpdateContext({varPageCtr:1}); UpdateContext({varTotalPage:If(Mod(CountRows(colDocument),varPerPag

Displaying json data using DataTable in Canvas App.

Image
Hello Guys, In our previous  blog   we have seen how we can call power automate flow from canvas app. Today we will see how to display json data using Data Table. Do follow us to know more about Dynamics and Power Platform.  Also if you like our blog then please comment and share this blog with your friends. We will be working with the same example which we were using in our previous blog. As you can see in our last blog we have displayed json data in a Text Box control. Now we will use the same json data. Delete the textbox control and label control. Once done select the Main Screen and write below formula: Here we are using ClearCollect method which is used for creating collection. ForAll   method for iterating the table data and converting them into collection. Table method for converting json into Table format. Now we will insert one datatable from insert menu. As you can see we have inserted one table. Now set its items or Data Source property to colDocument. Once done, click on

Calling power automate flow from canvas app.

Image
  Hello Guys, In our previous  blog   we have seen how we can pass parameters to canvas application from model driven app. Today we will see how we can call power automate flow from canvas app. Do follow us to know more about Dynamics and Power Platform.  Also if you like our blog then please comment and share this blog with your friends. We will be working with the same canvas app. As you can see we have already displayed canvas app. Now we will create one power automate flow which will return contacts based on account GUID. Open the canvas app and click on power automate flow icon as shown below: Click on create new flow and select create a flow. Specify details as show above. Now add a new step and initialize a variable as shown below:  Click on Ask in PowerApps. This will generate a variable which we can use from canvas app. We will use this AccountID which will be passed from canvas app to power automate flow.  Now add a new step which will be List. Here we will be retrieving cont

Passing parameter in embeded canvas application.

Image
Hello Guys, In our previous  blog   we have seen how we can embed canvas app in model driven application. Today we will see how we can pass parameters to canvas application from model driven app. Do follow us to know more about Dynamics and Power Platform.  Also if you like our blog then please comment and share this blog with your friends. We will be working with the same canvas app which we have created in our previous blog. As you can see we have embedded our canvas application in a model driven app. Now we want to access some data of model driven app. For example we want to display Account Name in canvas application or we want to use account GUID which we can use to query other columns in canvas application.  To achieve this open the Account Form in classic mode. As you can see we have Document Number column. Now go to the properties of this column and click on control tab and select canvas app. Now click on customize button which will open a new tab as shown below: Now here you ca