In this article, We will see how to delete a record in Web apps through Power Platform with HTTP Post method. In previous article, We saw how to update data from Webapp and display in Power Apps. Here is the link for previous article HTTP Patch from Power platform to Web app This is the overall structure... Continue Reading →
HTTP Patch from Power platform to Web app
In this article, We will see how to update a record in Web apps through Power Platform with HTTP Post method. In previous article, We saw how to create a data in Webapp through Power platform. Here is the link for previous article. HTTP Post from Power platform to Web app This is the overall structure... Continue Reading →
Create/Update Sales order and Purchase order using X++
In this article, We will see how to create/update sales order and purchase order through x++. The code snippet for purchase order creation public class PuchaseOrderDemo { private void new() { } public static PuchaseOrderDemo construct() { return new PuchaseOrderDemo(); } public void createPurchOrder() { PurchTable purchTable; PurchLine purchLine; VendTable vendTable = VendTable::find("1000"); AxPurchTable axPurchTable;... Continue Reading →
Create a customer/vendor using x++
In this article, We will see how to create a customer and vendor record using X/ Below is the code snippet for creating a customer record in X++. public class CustomerCreateDemo { private void new() { } public static CustomerCreateDemo construct() { return new CustomerCreateDemo(); } public void createCustomer() { CustTable custTable; NumberSeq numberSeq; Name... Continue Reading →
HTTP Post from Power platform to Web app
In this article, We will see how to create a new record in Web apps through Power Platform with HTTP Post method. In previous article, We saw how to read data from Webapp and display in Power Apps. Here is the link for previous article HTTP Get from Web app to Power platform This is the... Continue Reading →
HTTP Get from Web app to Power platform
In this article, We will see how to get data from Web apps using Power platform. Before we begin, We need to understand the different methods available in HTTP. MethodPurposeGETReadGET(X)Read single recordPOSTInsertPUTUpdate(Full record)PATCHUpdate(Partial record)DELETEDelete I have created a Test Web app with Skill types form. This form has SkillType has unique ID and Description. Read... Continue Reading →
Prepare for Dynamics 365 HR go-live
This topic describes how to prepare to go live with a Dynamics 365 Human Resources project by using Microsoft Dynamics Lifecycle Services (LCS). This graphic shows the phases of the go-live process. The following table lists all the steps in the process, the expected duration, and who is responsible for the action. PhaseActionDuration/WhenWhoNotes1Update go-live date... Continue Reading →
Consume dataflows – Part 3
In previous part, We created and configure dataflows. If you miss the previous part then here is the link In this article, We will see how to consume dataflows. A dataflow can be consumed in the following three ways: Create a linked entity from the dataflow to allow another dataflow author to use the dataCreate... Continue Reading →
Create and configure dataflows – Part 2
In previous part, We learn about what is data flows and when to use it. If you miss the previous part then here is the link In this article, We will see how to create and configure dataflows. Before we begin, We will create a demo workspace in Power BI. Step 1 : Create a... Continue Reading →
Introduction to Power BI Dataflow – Part 1
In this article, We will see what is Dataflow, when to use and the architecture. What is dataflow? A dataflow is a collection of entities (entities are similar to tables) that are created and managed in workspaces in the Power BI service. An entity/Table is a set of fields that are used to store data, much like a table... Continue Reading →