microsoft dynamics 365 v9 Archives - Microsoft Dynamics 365 Blog http://microsoftdynamics.in/category/microsoft-dynamics-365-v9/ Microsoft Dynamics CRM . Microsoft Power Platform Thu, 09 Jul 2020 09:48:46 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.5 https://i0.wp.com/microsoftdynamics.in/wp-content/uploads/2020/04/cropped-Microsoftdynamics365-blogs.png?fit=32%2C32 microsoft dynamics 365 v9 Archives - Microsoft Dynamics 365 Blog http://microsoftdynamics.in/category/microsoft-dynamics-365-v9/ 32 32 176351444 Submit Feedback of https://github.com/MicrosoftDocs , how to submit a issue with page or product of Microsoft doc http://microsoftdynamics.in/2020/06/07/submit-feedback-of-https-github-com-microsoftdocs-how-to-submit-a-issue-with-page-or-product-of-microsoft-doc/ Sun, 07 Jun 2020 14:45:13 +0000 http://microsoftdynamics.in/?p=3532 The post Submit Feedback of https://github.com/MicrosoftDocs , how to submit a issue with page or product of Microsoft doc appeared first on Microsoft Dynamics 365 Blog.

]]>

Recently while helping a friend informs, encountered a bug or issue with the snippet code mentioned in Doc.microsoft.com, Incorrect syntax was identified

  • The requirement was to hide create a button on the business process flow on a certain condition and Microsoft document gives a function to use getNavigationBehavior()

Refer : https://docs.microsoft.com/en-us/powerapps/developer/model-driven-apps/clientapi/reference/formcontext-data-process/stage/getnavigationbehavior

  • but was getting Error : formContext.data.process.getActiveStage.getNavigationBehavior is not a function
  • After some debugging found the Document page code need some amendment

  • If this type of issue is identified on page , we have an option to submit feedback and raise It in https://github.com/MicrosoftDocs

The post Submit Feedback of https://github.com/MicrosoftDocs , how to submit a issue with page or product of Microsoft doc appeared first on Microsoft Dynamics 365 Blog.

]]>
3532
formContext.data.process.getActiveStage.getNavigationBehavior is not a function for getNavigationBehavior http://microsoftdynamics.in/2020/06/07/formcontext-data-process-getactivestage-getnavigationbehavior-is-not-a-function-for-getnavigationbehavior/ Sun, 07 Jun 2020 13:57:06 +0000 http://microsoftdynamics.in/?p=3526 The post formContext.data.process.getActiveStage.getNavigationBehavior is not a function for getNavigationBehavior appeared first on Microsoft Dynamics 365 Blog.

]]>

Object is used: An object with the allowCreateNew property that lets you define whether the Create button will be available in a stage so that user can create an instance of entityB from the entityA form in a cross-entity business process flow navigation scenario.

https://i0.wp.com/microsoftdynamics.in/wp-content/uploads/2020/06/img_5edcef1b7c001.png?fit=1703%2C730

For example, here is the Create button in the Develop stage of the AccountToContactProcess sample business process flow that lets you create a Contact record from the Account form.

Below snippet is from Microsoft doc which needs some correction:
https://docs.microsoft.com/en-us/powerapps/developer/model-driven-apps/clientapi/reference/formcontext-data-process/stage/getnavigationbehavior

function sampleFunction(executionContext) {
    var formContext = executionContext.getFormContext();
    formContext.data.process.getActiveStage().getNavigationBehavior().allowCreateNew = function () {
        if (formContext.data.process.getName() === 'Test Process') {
            return false; // Create button is not available
        }
        else {
            return true; // Create button is available
        }
    }
}

When I used provided snippet it gave Error : formContext.data.process.getActiveStage.getNavigationBehavior is not a function ( This issue was raised y Mr johnnylawson on forums)

Instead of  “formContext.data.process.getActiveStage.getNavigationBehavior()” try using “formContext.data.process.getActiveStage().getNavigationBehavior()”

The post formContext.data.process.getActiveStage.getNavigationBehavior is not a function for getNavigationBehavior appeared first on Microsoft Dynamics 365 Blog.

]]>
3526
Download SDK for Microsoft Dynamics 365 V9 – Get Plugin Registration tool and assemblies from NuGet Packages for Dynamics 365 , v9.0 http://microsoftdynamics.in/2018/01/14/download-sdk-for-microsoft-dynamics-365-v9-get-plugin-registration-tool-and-assemblies-from-nuget-packages-for-dynamics-365-v9-0/ Sun, 14 Jan 2018 06:50:00 +0000 With the release of Dynamics 365 (online), version 9.0, there are a lot of changes in our developer documentation:
New location: https://docs.microsoft.com/dynamics365/customer-engagement/developer/
New name: Developer Guide
No more monolithic SDK download
Separation and fusion of reference content
Client API documentation overhaul
Detailed entity documentation
No more monolithic SDK download : Getting the assemblies and tools you need
SDK assemblies and tools will be distributed only via NuGet. We will provide a script that will allow you to download the assemblies and tools from NuGet.

You can follow below steps to download Nuget Packages using Visual studio

Step 1 Right Click on to your visual studio project and click on to manage NuGet Packages

The post Download SDK for Microsoft Dynamics 365 V9 – Get Plugin Registration tool and assemblies from NuGet Packages for Dynamics 365 , v9.0 appeared first on Microsoft Dynamics 365 Blog.

]]>
With the release of Dynamics 365 (online), version 9.0, there are a lot of changes in our developer documentation:
No more monolithic SDK download : Getting the assemblies and tools you need
SDK assemblies and tools will be distributed only via NuGet. We will provide a script that will allow you to download the assemblies and tools from NuGet.
 
You can follow below steps to download Nuget Packages using Visual studio
 
Step 1 Right Click on to your visual studio project and click on to manage NuGet Packages

Step 2 Search for “Microsoft.CrmSdk.XrmTooling.PluginRegistrationTool” and click on install

Click on I accept

Step 3 Navigate to the package directory of that project

Step 4 Search the folder Microsoft.CrmSdk.XrmTooling.PluginRegistrationTool.X.0.0.X

Done!! now you will be having your latest Plugin registration Tool

Sample PRT Reference for quick start  : Microsoft.CrmSdk.XrmTooling.PluginRegistrationTool.9.0.0.7

In the same way you can download any of the NuGet assemblies and tools

Hope it helps !!

Happy CRMing

SOURCE : mscrm.com

The post Download SDK for Microsoft Dynamics 365 V9 – Get Plugin Registration tool and assemblies from NuGet Packages for Dynamics 365 , v9.0 appeared first on Microsoft Dynamics 365 Blog.

]]>
2752
Unable to Connect Plugin Registration tool with MS CRM v9 / D365 SDK http://microsoftdynamics.in/2018/01/13/unable-to-connect-plugin-registration-tool-with-ms-crm-v9-d365-sdk/ http://microsoftdynamics.in/2018/01/13/unable-to-connect-plugin-registration-tool-with-ms-crm-v9-d365-sdk/#comments Sat, 13 Jan 2018 07:25:00 +0000 ISSUES: Not able to login Plugin registration tool (Keep popping up for Credentials) Resolution: 1. Update latest SDK from the Download tools from NuGet or Quick start Plugin Registration Tool V9.0.0.7 For downloading the latest PRT from VS Nuget packages – this link might be useful 2. Modify using TSL to 1.2 through Fiddler . Step 1 Open Fiddler and navigate...

The post Unable to Connect Plugin Registration tool with MS CRM v9 / D365 SDK appeared first on Microsoft Dynamics 365 Blog.

]]>
ISSUES:
Not able to login Plugin registration tool (Keep popping up for Credentials)
Resolution:
1. Update latest SDK from the Download tools from NuGet or Quick start Plugin Registration Tool V9.0.0.7

For downloading the latest PRT from VS Nuget packages – this link might be useful

2. Modify using TSL to 1.2 through Fiddler .

Step 1 Open Fiddler and navigate to Tools – Options – HTTPS Tab

Step 2 Under HTTPS tab click on to Protocols link – a Popup will come change the TLS vesion from 1.0 / 1.1 to tls 1.2.  i.e. <client>;ssl3;tls1.2 ” and press on ok

Now you will be able to connect to your CRM v9 Organisation with PRT

Happy CRMing 😊

SOURCE : mscrm.com

The post Unable to Connect Plugin Registration tool with MS CRM v9 / D365 SDK appeared first on Microsoft Dynamics 365 Blog.

]]>
http://microsoftdynamics.in/2018/01/13/unable-to-connect-plugin-registration-tool-with-ms-crm-v9-d365-sdk/feed/ 2 2753