Thursday, October 3, 2019

JavaScript to check run on UCI or not in Microsoft Dynamics CRM

function isUCI(){
        var globalContext = Xrm.Utility.getGlobalContext();
        var t1 = globalContext.getCurrentAppUrl();
        var t2 = globalContext.getClientUrl();
        if (t1 !== t2)
            return true;

    return false;
}

No comments:

Post a Comment

How to Install the Microsoft Dataverse Accelerator in the Dataverse Environment?

  Introduction: In this blog we will see how to Install Microsoft Dataverse Accelerator in Dataverse Environment.   Implementation Steps:   ...