Skip to content
Microsoft Dynamics 365 F&O
  • Home
  • Dynamics 365 F&O
  • Azure
  • Power automate
  • About Me
Top Blogs
D365 Data entitiy Insert method COC
D365 Data entitiy Insert method COC
October 30, 2024
D365 Joins
D365 Joins
October 16, 2024
D365 Find method and Exist method
D365 Find method and Exist method
October 9, 2024
D365 Edit method
D365 Edit method
October 4, 2024
D365 Batch Job
What Is a Batch Job in Dynamics 365? Complete Guide to Batch Work and Batch Creation
September 30, 2024
Task recorder
Task Recorder (with screenshots) in Dynamics 365 F&O
September 23, 2024
Virtual entity in dynamics 365
Virtual entity in dynamics 365
September 13, 2024
App Registration in the Azure Portal
App Registration in Azure Portal: Azure App Registration Guide
September 13, 2024
D365 Table browser
D365 table browser
September 9, 2024
Microsoft Dynamics 365 for finance and operations
Microsoft Dynamics 365 for finance and operations
September 5, 2024
Override an existing lookup method event handler
Override an existing lookup method event handler
September 2, 2024
Workflow in Microsoft Dynamics 365 FO
Workflow in Microsoft Dynamics 365 FO
August 22, 2024
d365 display method
D365 Display method
August 20, 2024
Create a custom service in d365 FO
Create a custom service in d365 FO
August 8, 2024
Setup postman to call D365 data entities
Setup postman to call D365 data entities
August 4, 2024
How to Deploy a Tier 2 Environment in Dynamics 365 Finance & Operations
July 29, 2024
D365 business event return JSON
D365 business events return JSON
July 20, 2024
Business events
How to setup D365 business event
July 14, 2024
NSG
IP level security on Dynamics 365 F&O Dev Server using NSG
July 5, 2024
LA-VS-Power-automate
Logic apps VS Power Automate flow
June 28, 2024
Multi threading in D365 FO
Multithreading batch job in Microsoft Dynamics 365 Finance and Operations
June 21, 2024
D365 FO CAR
Generate a CAR(Customization Analysis Report) report in Microsoft Dynamics 365 F&O
June 17, 2024
User Conditional Access
Block access to Microsoft Dynamics 365 F&O by location with Microsoft Entra Conditional Access
June 10, 2024
Specific role
Check if the current user has a specific role or not via X++ in Microsoft Dynamics 365 F&O
May 31, 2024
Email
Send email via X++ code in Dynamics 365 F&O
May 27, 2024
Postman OData
OData in Microsoft Dynamics 365 F&O
May 20, 2024
Azure Logic app to D365
Call a method or Send parameters data from the Logic app to Microsoft Dynamics 365 F&O using Data Entity
May 19, 2024
Dynamics 365
Split string in SSRS Dynamics 365 FO
May 19, 2024
Final PA
Substring in power automate
May 19, 2024
Dynamics 365
update_recordset in Microsoft Dynamics 365 F&O
May 19, 2024
Debug Breakpoint is not getting hit in Visual Studio
Debug Breakpoint is not getting hit in Visual Studio for Microsoft Dynamics 365 F&O
May 19, 2024
Microsoft Dynamics 365 F&O Interview Question Answers
AX 2012 & Dynamics 365 Interview Questions
May 19, 2024
Elements in Data entity
Data Entity in Microsoft Dynamics 365 F&O
May 19, 2024
Number sequence
How to create a Number sequence in Microsoft Dynamics 365 F&O
May 18, 2024
Microsoft Dynamics 365 F&O Certifications
Microsoft Dynamics AX 2012/Dynamics 365 certifications
May 18, 2024
Report Design Microsoft Dynamics 365 F&O
How to create an SSRS Report in Microsoft Dynamics 365 F&O
May 18, 2024
Table methods in Dynamics 365 F&O
Table Methods in Microsoft Dynamics 365 F&O
May 18, 2024
Multi threading in D365 FO
Posted inMicrosoft Dynamics 365 F&O

Multithreading batch job in Microsoft Dynamics 365 Finance and Operations

The multithreading batch job is used to break large/time-consuming batches into smaller pieces in Microsoft Dynamics 365 Finance and Operations. We have 3 different Approaches for Multithreading: Individual Task Modeling…
Posted by Atul Yadav June 21, 2024
D365 FO CAR
Posted inMicrosoft Dynamics 365 F&O

Generate a CAR(Customization Analysis Report) report in Microsoft Dynamics 365 F&O

CAR report or Customization Analysis Report is a report generated by running a query in Dynamics 365 F&O Dev server to get the BP issues or warnings in a custom…
Posted by Atul Yadav June 17, 2024
User Conditional Access
Posted inMicrosoft Azure Microsoft Dynamics 365 F&O

Block access to Microsoft Dynamics 365 F&O by location with Microsoft Entra Conditional Access

Below are the key points for implementing location-based access controls using Microsoft Entra Conditional Access: Restrict Dynamics 365 F&O The purpose of this is to enhance security by restricting access…
Posted by Atul Yadav June 10, 2024
Specific role
Posted inMicrosoft Dynamics 365 F&O

Check if the current user has a specific role or not via X++ in Microsoft Dynamics 365 F&O

To check if the current user has a specific role we will have to write the following code in the appropriate place as per the requirement. UserInfo userInfo; SecurityUserRole securityUserRole;…
Posted by Atul Yadav May 31, 2024
Email
Posted inMicrosoft Dynamics 365 F&O

Send email via X++ code in Dynamics 365 F&O

First step on How to send email via x++ code D365 FO, we will create a class and a static method in it as shown below /// <summary> /// Send…
Posted by Atul Yadav May 27, 2024
Postman OData
Posted inMicrosoft Dynamics 365 F&O

OData in Microsoft Dynamics 365 F&O

OData stands for Open Data protocol is a standard way for creating and consuming APIs. It allows for the easy exposing and updating of data through web technologies, making it…
Posted by Atul Yadav May 20, 2024
Azure Logic app to D365
Posted inMicrosoft Azure Microsoft Dynamics 365 F&O

Call a method or Send parameters data from the Logic app to Microsoft Dynamics 365 F&O using Data Entity

To send parameters data or call a method from the Logic app to Dynamics 365 F&O using Data Entity, you need to follow the below steps: Create a data entity…
Posted by Atul Yadav May 19, 2024
Dynamics 365
Posted inMicrosoft Dynamics 365 F&O

Split string in SSRS Dynamics 365 FO

Split expression is used to extract the part of a string that is divided by a character. Expression: =Split(Fields!EmployeeName.Value.ToString(),“|”).GetValue(0).ToString() This expression is used to extract the first part of a…
Posted by Atul Yadav May 19, 2024
Final PA
Posted inMicrosoft Power automate

Substring in power automate

In Power Automate, the "substring" function is used to extract a specific portion of a string based on starting and ending points. It is useful when you need to manipulate…
Posted by Atul Yadav May 19, 2024
Dynamics 365
Posted inMicrosoft Dynamics 365 F&O

update_recordset in Microsoft Dynamics 365 F&O

update_recordset is used to handle batch updates to database, so that DB calls are not multiple due to bulk data. so it basically updates bulk data in one db call…
Posted by Atul Yadav May 19, 2024

Posts pagination

Previous page 1 2 3 4 Next page

Recent Posts

  • D365 Data entitiy Insert method COC
  • D365 Joins
  • D365 Find method and Exist method
  • D365 Edit method
  • What Is a Batch Job in Dynamics 365? Complete Guide to Batch Work and Batch Creation
Share this post
  • Click to share on LinkedIn (Opens in new window)LinkedIn
  • Click to share on WhatsApp (Opens in new window)WhatsApp
  • Click to share on Mail (Opens in new window)Mail
  • Click to share on X (Opens in new window)X
Archive
  • October 2024
  • September 2024
  • August 2024
  • July 2024
  • June 2024
  • May 2024
You May Have Missed
D365 Data entitiy Insert method COC

D365 Data entitiy Insert method COC

D365 Joins

D365 Joins

D365 Find method and Exist method

D365 Find method and Exist method

D365 Edit method

D365 Edit method

Scroll to Top