Posts

Recent Post

How to send custom form data to Microsoft Power Automate

 SEND CUSTOM FORM DATA INTO MICROSOFT POWER AUTOMATE In this article, I will be explaining the steps to send form data directly to Microsoft Power Automate and trigger the Flow using PHP cURL and HTML. STEP - 1 First, you will have to create a Custom HTML file and name it index.html  Also, Read -   How to get and Set a Look up field using JavaScript in MS Dynamics 365 In the index.html file please must include Jquery CDN  <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js" ></script>   This is CSS Style for the form. You can also include Bootstrap as  I have used it in the form  < style > .php-email-form { height : auto ; background-color : #eee; box-shadow: 0 0 30px rgba(214, 215, 216, 0.6); padding : 25px; } .validation { color :red; font-size : small;} .loading { display : none ; background : #fff; text-align : center ; padding : 15px; } .error-message { display : none ; col

How to connect Tsheets using Microsoft flow connector

Image
Create Microsoft Flow Custom Connector to Connect TSheets 2020 In this article I am going to explain the steps to create Microsoft Flow Custom Connector to connect TSheets by QuickBooks. I have got so many Questions from readers asking for this so here I am writing this article for them.  Also Read -   How to connect QuickBooks Online using Micrsoft Flow Custom Connector First You will have to create your Tsheets Account from here .  Now we will need to create an app in Tsheets to connect Microsoft Flow.  Go to the Feature Add-ons in the bottom right and choose Manage Add-ons It will open a new Pop up, Search for API. Now click on the Install Button. Then you will see there is no active app. Also Read -   How to create Ubuntu VM in Microsft Azure Portal Also Read -  How to connect SharePoint using PHP Click on the Add a new application and Fill the Values and click on the SAVE . Name -  <Your Application Name> Description - <Your Application Description> Technical Contact

How to change the Activity Status value using JavaScript in MS Dynamics 365

Image
Change the Activity Status (StateCode) value using JavaScript in Microsoft Dynamics 365 / PowerApps There are so many questions in Microsoft community forum regarding to Change the Status using JavaScript but none of them have explained it completely. If any beginners wants to use JavaScript to change the Status value in the Activity then they will not be able to do it in right way. Also Read -   How to create a clone record in MS Dynamics 365 using JavaScript Also Visit -  Online Taiyari - Best Online Preparation and Mock Test for Government Exams I am going to explain you the easy way to change the Status value in the Entity using JavaScript. Believe me you will not need to add any J avaScript   library or any other  XrmSvcToolkit. In some articles I saw they have mentioned that you will need to make r equest to the SOAP API to change the state value. So here I am going to explain you why we will not need anything mentioned above. Also Read -   How to get and set Lookup

How to create clone record using JavaScript in MS Dynamics 365 and Open it in New Window

Image
Create Clone/Copy record using JavaScript in MS Dynamics 365 and Open it in New Window. Recently, I got a requirement from client where they wanted to clone the record and Open that into new window after saving the existing record. As usually I researched online for a way to clone/copy the record and open it but I was not able to find a good approach to do it. I have written some JavaScript code with the help of multiple articles so thought to share it with you guys so anyone has same type of requirement so they can build the solution for their client. Everyone get troubled with writing huge codes and end up spending our valuable time for cloning/copying Dynamics CRM entity record. So in this blog I am going to explain the JavaScript code step by step. Also Visit -  Online Taiyari - Best Online Preparation and Mock Test for Government Exams I had requirement to copy the record when user click on the Save and New button. So i have worked on the Phone Call Entity to save the reco

How to Get and Set a Lookup Field Using JavaScript in Dynamics 365

I was trying to get the value of Lookup field in the Phone Call entity but was not able to set the value in the field. There are so many blog post in the forums which explain to set the values in the lookup field but I don't think those posts are helpful for the beginners like me so when you try to set a lookup value using JavaScript in Microsoft Dynamics 365, the value you use has to be an array and the values in that array must be of type object. Within the object the required components are the id, logical name and the entity type. Also Read -  How to connect SharePoint using PHP Also Visit -  Online Taiyari - Best Online Preparation and Mock Test for Government Exams Retrieving a lookup field through JavaScript can be a little more difficult than expected, it is important to note that using business rules you can access the values within a lookup and set other fields with this value. Regardless, there are some cases where you might want to use JavaScript to get a lookup

5 Security points every Blogger should Know

I understand that blogging requires your time, attention, hard work and commitment, blogging is almost a full time occupation. If you have written any blog then you want that to keep secure and good but unfortunately when a hacker try to hack your site, all your hard work can be completely destroyed in a minute. If you want to keep your site safe and secure then you are at right place. Today I'm going to explain that what is the best way to keep your blogging site secure from hackers. 1- Use Secure Connection If you want to secure your data then you must use secure connection in your site. Now a days almost all websites in the Internet are using secure connection. If you site shows not Secure in the internet browser then you may loss your readers too because almost all browser will show that this site connection is not secure and no one wants to open a site where their information will be at risk.  So I will suggest you to use a Valid SSL Certificate in your site to

How to connect SharePoint with PHP

Image
Reading a SharePoint List with PHP There are so many posts you fill find on the Internet mentioning how to connect SharePoint using PHP, Some of the post will suggest you to use API's or other approaches. In this post I am going to mention all the steps to connect SharePoint using PHP. Step- 1 -  First you need to download the Thybag Api from  here . Step-2 -  Download the WSDL file for the SharePoint Lists you want to interact with. This can normally be obtained  at: sharepoint.url/subsite/_vti_bin/Lists.asmx?WSDL Or you can aso put the your WSDL link directly in the Code and It will work. https://YourDomainName.sharepoint.com/sites/YourSiteName/_vti_bin/Lists.asmx?wsdl Also Read -   How to connect Quickbooks Online using Microsoft Flow  Also Read -   How to connect Tsheets using Microsoft Flow Custom Connector S tep-3  - I have created a html file to add data into SharePoint list. Step-4   -  This HTML file will send the data into spo.php file whe