Wednesday, October 21, 2020

Announcing the new Fundraising and Engagement solution from Microsoft

Since 2017, Microsoft's Tech for Social Impact initiative has been working to empower the nonprofit sector. As part of that effort two years ago, we released our Common Data Model for Nonprofits, a set of best practices represented as data entities, attributes, and relationships. The Common Data Model is essentially a Rosetta Stone that helpsRead more

The post Announcing the new Fundraising and Engagement solution from Microsoft appeared first on Microsoft Dynamics 365 Blog.

Tuesday, October 20, 2020

Servicing assets using Dynamics 365 Field Service

Dynamics 365 Field Service now offers support for scenarios around the servitization business model, rental equipment, and work order management for manufacturers with this feature. You can now create work orders for assets, even if the asset and work order have different accounts. You can watch a demo of this feature on our Field ServiceRead more

The post Servicing assets using Dynamics 365 Field Service appeared first on Microsoft Dynamics 365 Blog.

Innovating to help small to medium size business embrace digitalization

Join us for the Microsoft Dynamics 365 Business Central Launch Event, streaming live October 21 at 11:00 AM Eastern Time and then available on-demand. Learn about the latest innovations for Business Central and get access to more than 30 breakout sessions available on-demand as well as live chats with product experts on October 28 Read more

The post Innovating to help small to medium size business embrace digitalization appeared first on Microsoft Dynamics 365 Blog.

Thursday, October 15, 2020

Preparing for the future of retail with customer data platforms

What a year 2020 has been so far! Nobody could have predicted some of the incredible change we have seen. Yet despite all of this change, exceptional customer experiences remain just as important to the success of a brand as ever before. Unified data, connected experiences Just take your consumer goods business. You are alreadyRead more

The post Preparing for the future of retail with customer data platforms appeared first on Microsoft Dynamics 365 Blog.

Wednesday, October 14, 2020

Highlights from Dynamics 365 release wave 2

Business applications are rapidly evolving to meet the needs of an increasingly digital and complex world. The era of form-based software and simple business logic is history–replaced with data-first, intelligent applications that proactively guide critical business outcomes across the organization. The 2020 release wave 2 expands our vision to help you unlock the agility, innovationRead more

The post Highlights from Dynamics 365 release wave 2 appeared first on Microsoft Dynamics 365 Blog.

Sunday, June 28, 2020

Business Central Integration with Rest API – Deep Drive – COVID-19 India Tracker (Part 1)

Dear Friend, I am back with some useful stuff for you. Hope this may help you to deep drive with API Integration. While thinking to work on large data for Power BI analysis report, I got the details about “https://www.covid19india.org/” website from my colleague Mr. Anil Pandey . Where we decided to get the JSON data in Power BI to create same dashboard.
While checking website I got the details of various API details by calling those we can get variety of data on COVID-19 India cases. My previous posts viewed by lots of readers and this inspired me to develop this in Business Central for learning purpose and share with you all. I can’t say, have done this as a big solution. But try to give a overall feel of creating an APP. I know there are lots of Dynamics Lancers who can do these very quickly & better way. My purpose only to help those who still thinking that integration is a such complex task.
I haven’t used all available API at https://www.covid19india.org/. Only more thing I need to mentioned here, data are not realtime. It is a day before.
To work with this integration, I have included development like:
  • Role Centre Page including Navigation menus, Action bar, Headline, Chart & CardPart or ListPart page.
  • Tables
  • Pages
  • Codeunits
  • Charts
  • Reports
  • Translations (Something unusual using Hindi)

In this part, I will only talk about the look and feel of development & functional aspect of the story. Technical details I will share in subsequent part to this blog series. Hope my initiative will inspire you before I release the next part for technical details. Please give a try, its quite easy and interesting to work on such integration development.
Below is image of Role Centre Page:

Continue reading, click here...

Thursday, June 25, 2020

Business Central Integration with Rest API – Part 3 (OnPrem & SaaS)

Dear Reader’s, I am sharing simple REST API integration with Business Central 2020 Wave 1 release. In previous Part-1 & Part-2, I have demonstrated GET method of API. In this Part, I will explain POST method, where a data request & response will be handled. I want to thank the creator of API and available for us to check & learn the POST method (Request & Response handling).

Below sample will run on both OnPrem & SaaS as well. In the following example we will call an API request to Create resource by supplying Name & Job details. And in response API will return Id & Created At along with the request info Name & Job.

API URL: https://reqres.in/api/users

Sample Request: { “name”: “Your Name”, “job”: “Your Job Name” }

Response: {“name”:”Your Name”,”job”:”Your Job Name”,”id”:”Numeric”,”createdAt”:”DateTime in YYYY-MM-DDTHH:MM:SS.sssZ”}

Click hear to read more