CRM INTEGRATION Archives - Microsoft Dynamics 365 Blog http://microsoftdynamics.in/category/crm-integration/ Microsoft Dynamics CRM . Microsoft Power Platform Fri, 08 Dec 2023 13:19:54 +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 CRM INTEGRATION Archives - Microsoft Dynamics 365 Blog http://microsoftdynamics.in/category/crm-integration/ 32 32 176351444 Excuse me! API limits for Microsoft Power Platform Dataverse & Dynamics 365 (2023 Edition) http://microsoftdynamics.in/2023/12/08/excuse-me-api-limits-for-microsoft-power-platform-dataverse-dynamics-365-2023-edition/ Fri, 08 Dec 2023 13:19:54 +0000 https://iiu.dk/?p=4316 API limit for Microsoft Dataverse Microsoft writes that the Microsoft Dataverse API limit helps ensure service levels, availability, and quality. This is regarding best practice architecture on using external APIs and good programming design…. Let me explain. (updated 08/12-2023 with latest info) https://videopress.com/v/sJZaSQTI?resizeToParent=true&cover=true&autoPlay=true&loop=true&playsinline=true&preloadContent=metadata&useAverageColor=true The first thing to acknowledge is that two limitations serve two purposes....

The post Excuse me! API limits for Microsoft Power Platform Dataverse & Dynamics 365 (2023 Edition) appeared first on Microsoft Dynamics 365 Blog.

]]>
API limit for Microsoft Dataverse Microsoft writes that the Microsoft Dataverse API limit helps ensure service levels, availability, and quality. This is regarding best practice architecture on using external APIs and good programming design…. Let me explain. (updated 08/12-2023 with latest info) https://videopress.com/v/sJZaSQTI?resizeToParent=true&cover=true&autoPlay=true&loop=true&playsinline=true&preloadContent=metadata&useAverageColor=true The first thing to acknowledge is that two limitations serve two purposes. … Continue reading Excuse me! API limits for Microsoft Power Platform Dataverse & Dynamics 365 (2023 Edition)

Follow the Source

The post Excuse me! API limits for Microsoft Power Platform Dataverse & Dynamics 365 (2023 Edition) appeared first on Microsoft Dynamics 365 Blog.

]]>
4822
Now it is time to be Curious about Power Platform Environment Variables! http://microsoftdynamics.in/2021/05/12/now-it-is-time-to-be-curious-about-power-platform-environment-variables/ Wed, 12 May 2021 08:39:47 +0000 https://iiu.dk/?p=2285 The Power Platform Environment Variables is yet another key component for enterprise-level application development best practice delivered with the need for no code to use. Let me run you through the History, why, use cases, and in the end, give u a step-by-step guide with a video demo on how to use the Power Platform...

The post Now it is time to be Curious about Power Platform Environment Variables! appeared first on Microsoft Dynamics 365 Blog.

]]>
The Power Platform Environment Variables is yet another key component for enterprise-level application development best practice delivered with the need for no code to use. Let me run you through the History, why, use cases, and in the end, give u a step-by-step guide with a video demo on how to use the Power Platform … Continue reading Now it is time to be Curious about Power Platform Environment Variables!

Follow the Source

The post Now it is time to be Curious about Power Platform Environment Variables! appeared first on Microsoft Dynamics 365 Blog.

]]>
4301
What is API limit for Microsoft Dataverse (Common Data Service)? http://microsoftdynamics.in/2020/11/16/what-is-api-limit-for-microsoft-dataverse-common-data-service/ Mon, 16 Nov 2020 16:31:09 +0000 https://iiu.dk/?p=1121 API limit for Microsoft Dataverse (Common Data Service) Microsoft writes that the Microsoft Dataverse (Common Data Service) API limit help ensure service levels, availability, and quality. For me, this is regarding best practice architecture on how to use external APIs and good programming design…. let me explain. The first thing to acknowledge is that there...

The post What is API limit for Microsoft Dataverse (Common Data Service)? appeared first on Microsoft Dynamics 365 Blog.

]]>
API limit for Microsoft Dataverse (Common Data Service) Microsoft writes that the Microsoft Dataverse (Common Data Service) API limit help ensure service levels, availability, and quality. For me, this is regarding best practice architecture on how to use external APIs and good programming design…. let me explain. The first thing to acknowledge is that there … Continue reading What is API limit for Microsoft Dataverse (Common Data Service)?

Follow the Source

The post What is API limit for Microsoft Dataverse (Common Data Service)? appeared first on Microsoft Dynamics 365 Blog.

]]>
4317
Data Integration architecture for Microsoft Dataverse, Dynamics 365, and PowerApps http://microsoftdynamics.in/2020/05/20/data-integration-architecture-for-microsoft-dataverse-dynamics-365-and-powerapps/ Wed, 20 May 2020 12:28:45 +0000 http://iiu.dk/?p=686 Data Integration Architecture As Microsoft have accelerated its investment in Dynamics, Power Platform & Azure the latest years a lot of new integrations options are available. Below you find a quick developer guide on Common Data Service Agile Data Integration Tools and architecture with connectors from cloud to on-premises. Data Integration architecture for Microsoft Common...

The post Data Integration architecture for Microsoft Dataverse, Dynamics 365, and PowerApps appeared first on Microsoft Dynamics 365 Blog.

]]>
Data Integration Architecture As Microsoft have accelerated its investment in Dynamics, Power Platform & Azure the latest years a lot of new integrations options are available. Below you find a quick developer guide on Common Data Service Agile Data Integration Tools and architecture with connectors from cloud to on-premises. Data Integration architecture for Microsoft Common … Continue reading Data Integration architecture for Microsoft Dataverse, Dynamics 365, and PowerApps

Follow the Source

The post Data Integration architecture for Microsoft Dataverse, Dynamics 365, and PowerApps appeared first on Microsoft Dynamics 365 Blog.

]]>
4336
EMAIL , ZIPCODE , CONTACT NO VALIDATION USING JAVASCRIPT IN PORTAL / HTML http://microsoftdynamics.in/2014/04/11/email-zipcode-contact-no-validation-using-javascript-in-portal-html/ Fri, 11 Apr 2014 05:33:00 +0000 http://microsoftdynamics.in/2014/04/11/email-zipcode-contact-no-validation-using-javascript-in-portal-html/ Java-Script Validation can be used in portal in html , php , java etc . 1. Email Validation : We have used an Regex here , and compared the text in input with it and given an alert.     function validateemail() {         var ccc = document.getElementById( ‘idemailtb’).value;         var reg = /^w+([-+.’]w+)*@w+([-.]w+)*.w+([-.]w+)*$/         if (!reg.test(ccc)) {         alert( “Invalid Email Id”);    ...

The post EMAIL , ZIPCODE , CONTACT NO VALIDATION USING JAVASCRIPT IN PORTAL / HTML appeared first on Microsoft Dynamics 365 Blog.

]]>
Java-Script Validation can be used in portal in html , php , java etc .


1. Email Validation : We have used an Regex here , and compared the text in input with it and given an alert.
    function validateemail() {
        var ccc = document.getElementById( ‘idemailtb’).value;
        var reg = /^w+([-+.’]w+)*@w+([-.]w+)*.w+([-.]w+)*$/
        if (!reg.test(ccc)) {
        alert( “Invalid Email Id”);
          }
    }


2. Contact No. Validation : We have used an simple if condition that Number should be atlest of 10 in length.

    function permanentnumber() {
        var mob = document.getElementById( ‘idcontactnotb’).value;
        var count = mob.length;
        if (mob > 31 && (mob < 48 || mob > 57) && count == 10 ) { }
        else {
            alert( “Please Enter 10 Digit Number:” );
            return true;
        }
    }


2. Zipcode / Pincode Validation : We have used an simple if condition that ZipCode should be atlest of 6 in length and only a numerical value .
    function zipcode() {
        var zipcode = document.getElementById( ‘idziptb’).value;
        var length = zipcode.length
        if (length < 6)
            alert( “Please Enter Valid Zipcode:”);
        if (zipcode > 31 && (zipcode < 48 || zipcode > 57)) { return false; }
        else {
            alert( “Please Enter Valid Zipcode:”);
            return true;
        }
    }


SOURCE : JUST2CODE.IN
Subscribe to our YouTube channel : https://www.youtube.com/user/TheRussell2012

The post EMAIL , ZIPCODE , CONTACT NO VALIDATION USING JAVASCRIPT IN PORTAL / HTML appeared first on Microsoft Dynamics 365 Blog.

]]>
2824