Menu Close

Blog

Slide 1

Microsoft Business Applications Blogposts, YouTube Videos and Podcasts

Helping Businesses with Technology

Slide 2

Microsoft Business Applications Blogposts, YouTube Videos and Podcasts

Helping Businesses with Technology

Slide 3

Microsoft Business Applications Blogposts, YouTube Videos and Podcasts

Helping Businesses with Technology

previous arrow
next arrow

Create Apps in Dynamics 365 using new App Designer and Site Map Designer in Dynamics 365

Hi Folks

Today I am going to blog on dynamics 365 app module, how to create an App in dynamics 365.

Here are the steps to follow:
Goto Settings > My apps

Click on the My app then

Click on the Create App and fill in the Name, description fields and click Done..

 The following Screen will appear and click on the site map configuration which is highlighted in the red ..

App Module designer will appear and select the Area tile on the screen and fill in the properties and create the subarea and group and fill the properties..  Press the + symbol to see the area, subarea and group section

Then Save and Close.. and following screen  will appear..

 On the below screen select the Account Forms and click the “account ” and “Information” forms and repeat the same for the Account Views with “accounts I follow” and “Active Accounts”, then click on the validate app on the right hand corner.

then the following screen will appear..

On the Screen click on the Account form then on the left hand side Required fields will appear and for the time being I have selected all the dependencies and click on the Add Dependencies button bottom of the screen.

Publish the App and we can see the App on the below screen as App Test (I have renamed it, you don’t worry)

Click on it then it will take us to the App Test module on the Application as follow:

I hope this is helpful to someone.

Happy Day..

Share this:

MICROSOFT DYNAMICS 365 NEW FEATURES

Please check the below list of new features as follows:

1)Admin wizard to add an entity to the Portal

2)App Module, App Designer, and Sitemap Designer enhancements 

3)Conversation view for private messages and Twitter replies

4)Engagement History contains user information

5)Listening and engagement on LinkedIn Organization Pages

6)Listening and engagement on YouTube

7)Microsoft Social Engagement user interface is now available in Japanese and Chinese

8)MultiSelect Option Sets

9)New recommendation type in Social Selling Assistant: Get Insights

10)NOT IN support for Advanced Find

11)Portal interaction tracking

12)Portals German Sovereign Cloud support

13)Power BI content pack for Social Engagement

14)Prospect to cash integration of Dynamics 365 for Sales and Dynamics 365 for Operations

15)Security enhancements: User session management

16)Sell more with Social Selling Assistant

17)Share a post to LinkedIn

18)Source code for Portals

19)Support Azure AD-B2C for Portal authentication using a single sign-on (SSO) configuration

20)Support timezone independent date formats in Portals forms

21)Use Virtual Entities to integrate external data at runtime

22)View Designer UPDATED

23)Web client visual refresh

I hope this helps

Happy Day..

Share this:

Dynamics 365 Customer Engagement V9 July Version deprecated release

Dynamics 365 Customer Engagement  V9 July Version 2017 deprecated release

Details on Microsoft Official documentation site:

  1. Dynamics 365 for Outlook (Outlook client) is deprecated
  2. Service scheduling in Dynamics 365 for Customer Service is deprecated
  3. Dialogs are deprecated
  4. Usage of Parature knowledgebase as the Dynamics 365 knowledge management solution is deprecated
  5. Project Service Finder app is deprecated
  6. Contracts, Contract Line Items, and Contract Templates entities are deprecated
  7. Standard SLAs in Dynamics 365 for Customer Service are deprecated
  8. Relationship Roles are deprecated
  9. Mail Merge is deprecated
  10. Announcements are deprecated
  11. Ready-to-use business processes available through Add Ready to Use Business Processes setting are deprecated
  12. Some client APIs are deprecated – Details of APIs deprecated with their replacements.
  13. EntityMetadata.IsInteractionCentricEnabled property is deprecated
  14. Silverlight (XAP) web resource is deprecated
Share this:

C# SAMPLE EXAMPLE

C# example class, enum, properties, private methods, public methods, salary calculation example..

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ClassDemo
{
    class Program
    {
        static void Main(string[] args)
        {
            Employee tony = new Employee();
            tony.Income = 150000;
            tony.YearsOfService = 2;
            tony.SetRating(Employee.Rating.poor);
            tony.CalculateRaise();
        }
    }

    public class Employee   // new class employee
    {
        public enum Rating   // constant
        {
            poor,
            good,
            excellent
        }

        private Rating rating;  // private member variable type rating

         
// public properties member varibale income type income, a class can have properties
 public double Income { get; set; }

// public properties  memeber variable type yearofservice

        public int YearsOfService { get; set;} 

 // method setrating within a class. we have private variable rating & parameter rating
        public void SetRating(Rating rating) 

        {
            this.rating = rating;
        }

        public void CalculateRaise()
        {
            double baseRaise = Income * .05;
            double bonus = YearsOfService * 1000;
            Income = Income + baseRaise + bonus;

            switch(rating)
            {
                case Rating.poor:
                    Income -= YearsOfService * 2000;
                    break;
                case Rating.good:
                    break;
                case Rating.excellent:
                    Income += YearsOfService * 500;
                    break;
            }
            Console.WriteLine($”New income is {Income}”);
        }
    }

}

Share this:

MICROSOFT DYNAMICS 365 ON-PREMISE AND ONLINE INSTALLATION GUIDE

Here is the Microsoft Dynamics 365 On Premise and Online Installation Guide.

https://www.microsoft.com/en-us/download/details.aspx?id=50039

I hope this helps:

We are Microsoft Partner, Scribe Partner  provide solutions and services for small companies and SMB’s in the UK and Europe 

Please contact us, if you need any of our  following  Services:
Microsoft Dynamics CRM/ 365 Licences 
Development work of Dynamics 365/CRM
Microsoft Dynamics CRM Customizations and Configurations.
Extending CRM Application
Support of existing application
Integration work related to crm and any third party applications.
User Trainings.
Short piece of work.

Our Rates very much affordable Prices,  Please get in touch @ admin@gmritsolutions.co.uk

Share this: