Search This Blog

Monday, October 21, 2019

Business Rule not Triggering

Business Rule not Triggering

If business rule is not trigger then check whether configuration on the business rule fields is available on form. If any one of the field not available then whole business wont trigger.

Wednesday, October 9, 2019

Enable CORS any URL

By joining your URL with the below it will enable cors.
https://cors-anywhere.herokuapp.com/

  var proxy = 'https://cors-anywhere.herokuapp.com/';

        var URL = ""URL";
        //Your URL
        // alert(URL);
        $.ajax({
            type: 'GET',
            async: "false",
            start_time: new Date().getTime(),
            url: proxy + URL,

});

Friday, June 7, 2019

PowerShell Script Not Digitally Signed

PowerShell Script Not Digitally Signed

Run the below commands in the powershell


Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass
“Bypass” means nothing is blocked and no warnings, prompts, or messages will be displayed.

Thursday, June 6, 2019

Upgrade Dynamics CRM 2016 on-premise to Dynamics 365

The required anti-forgery cookie "__RequestVerificationToken" is not present.

The required anti-forgery cookie "__RequestVerificationToken" is not present.

To solve this issue:
1)Check on the web config file
if you have
<httpCookies  requireSSL="true" httpOnlyCookies="true"/>
then remove the requireSSL=true
<httpCookies  httpOnlyCookies="true"/>

2) Check if you [ValidateAntiForgeryToken] attribute used in Get Method if used then removed it also.

Tuesday, May 28, 2019

New button is not enabled in Active Bookable Resource form Unified Interface

New button is not enabled in Active Bookable Resource form Unified Interface



Setting->Customization->BookableResource Entity, On the outlook and Mobile section "UnCheck the Read only in mobile"

Monday, May 27, 2019