Dynamics 365

Dynamics 365

.

Power paltform

Power paltform

.

Custom solutions

Custom solutions

.

Add a tile button to an existing workspace Using Visual studio & Dynamics 365 Finance and Operations

To add a Tile button to an existing workspace, follow these steps: Create a new project in Visual Studio and make sure that the model that your project is in references “Fleet Management.” Verify that the model that your project is in references “Fleet Management” by following these steps: Select the Dynamics 365 menu. Select Model management > Update model…

How to Create workspace elements in Dynamics 365 Finance and Operations

To add a Tile button to your workspace in the user interface, follow these steps: Right-click the dashboard below the header image and select Personalize. Select the +Add a workspace button. A new workspace will be created, titled My Workspace 1. Right-click My Workspace 1 and enter a new name for your workspace.  Open the navigation pane and go to Modules > Accounts Receivable >…

How to Create and deploy a report with query in Dynamics 365 Finance and Operations

First, you need to create a query. Open Visual Studio as administrator. From the File menu, select New > Project. Select Dynamics 365 on the left pane. select Finance Operations in the middle pane. Enter ReportingProject in the Name field. Select OK. In the Solution Explorer, right-click your project node, and then select Add > New Item. Select Data Model and then select Query. For the Name field, enter FMVehicleModelQuery and then select Add. Open the…

How to Implement Chain of Command (CoC)

The following code example shows how the class must be declared to use CoC. When the ExampleClass.doSomething() method is called, the code will first run all the code before the next keyword. Then, the original code in the ExampleClass.doSomething() method will run. Finally, all code after the next keyword will run. [ExtensionOf(classStr(ExampleClass))]final class ExampleClass_Extension{str doSomething(int arg){// Custom logic before…

Data manipulation Dynamics 365 Finance and Operations

//This will insert a new record into a sample MyCustomerTable table. The only mandatory field that is set on this table is AccountNumber. Insert method private void AddCustomer(){MyCustomerTable myCustomerTable;ttsBegin;select forUpdate myCustomerTable;myCustomerTable.AccountNumber = “1234”;//The new record will have the account number 1234.myCustomerTable.insert();ttsCommit;} Update method //This will update the record where the AccountNumber field is set to…