Skip to main content

Posts

Showing posts from May, 2020

Create cloud-hosted environment in LCS | Onebox environment

In this article you will came to know how to create cloud-hosted environment in LCS  also known as onebox environment. First of all you need to create azure connector with the help of azure portal. After this you can create your cloudhosted environment in LCS. Following video consist of full demonstration of above mention both point cloudhosted environment as well as azure connector I hope this article was helpful for you guys,Thank you             

Change planned purchase order status as draft insted of default approved

When we create purchase order using planned order its default approval status will be approved as displayed in screenshot. To change that status to draft write following code where we will change its status to draft and further code to is to remove version of purchase order which necessary to make delete button enabled on purchase order form code:- /// <summary> /// extension of class: ReqTransPoMarkFirm /// </summary> [ExtensionOf(classStr(ReqTransPoMarkFirm))] final class ReqTransPoMarkFirmCFSClass_Extension {     public container conPurchOrders;     /// <summary>     /// updatePurchTable     /// </summary>     /// <param name = "_purchTable">_purchTable</param>     protected void updatePurchTable(PurchTable _purchTable)     {         conPurchOrders += _purchTable.PurchId;         next updatePurchTable(_purchTabl...

What is BYOD? How to implement it in D365 Finance and SCM

Intro ·          BYOD (Bring Your Own Database)  let administrators to export data entities from the application into their own Microsoft Azure SQL database. ·          The BYOD feature lets administrators configure their own database, and then export one or more data entities that are available ·          Allows following o     Define one or more SQL databases that you can export entity data into. o     Export either all the records (full push) or only the records that have changed or been deleted (incremental push). o     Use the rich scheduling capabilities of the batch framework to enable periodic exports. o     Access the entity database by using Transact-SQL (T-SQL), and even extend the database by adding more tables. Entity store vs BYOD ·       ...