New discount enhancements in D365 Retail POS(Commerce)
Ability for certain discounts to always apply after all other discounts have been applied This feature gives the ability to cashier to give additional discounts to certain customers even after all the eligible discounts have been applied. For example: A customer has a coupon which cashier wants to apply on a transaction. This coupon discount … Continue reading New discount enhancements in D365 Retail POS(Commerce)
Share Story :
Inventory adjustment feature in D365 Retail POS(Commerce)
Inventory adjustment in POS can be used to account for items which need to be discarded from the store or they need to be adjusted as per the store requirement. Let’s see how a cashier can do that. Below is the setup required to be done in order for this feature to work In the … Continue reading Inventory adjustment feature in D365 Retail POS(Commerce)
Share Story :
Capture Case Resolution data before reopening case using C#
Introduction: When we reactivate cases, the old case resolution record is set as cancelled and a new case resolution record is created, before you re open the case, you can actually store case resolution data, which you can later use when you re-close the case. Solution: Below is the code to get case resolution data … Continue reading Capture Case Resolution data before reopening case using C#
Share Story :
Post an MS Form response to MS Teams Channel using Cloud Flows
In this blog, we will learn how to quickly design a simple Cloud Flow to post a message in MS Teams Channel when a user submits a response using MS Form. Step 1: Create an MS Form to get the responses from the targeted user. Go to https://forms.office.com/ and click on New Form to create an MS Form. Now, … Continue reading Post an MS Form response to MS Teams Channel using Cloud Flows
Share Story :
Using Security Filters in Business Central
Introduction Business Central allows various levels of security that can be used to restrict User access to different features or objects. We can use Permission Sets to prevent User access to specific objects like reports or pages. For more refined, row-level authorization we can use Security Filters to restrict access to individual record based on … Continue reading Using Security Filters in Business Central
Share Story :
ScanPayGo by LS Retail
The current Retail process supported by LS Central is simply for the customers to collect the items and bring them to the POS for completing the transaction. LS Retail aims to change this process with the introduction of their new product ScanPayGo. Using this app customers will be able to select the items to be … Continue reading ScanPayGo by LS Retail
Share Story :
How to personalize Password field based on strict Regular Expression (RegEx) formulas in Canvas PowerApps
Hello,In this blog, I’ll show you how to personalize Input Password field with various requirements using strict regular expression in Canvas PowerApp. Now, validation part comes in using RegEx. Let’s say you have a requirement where,1. Password length should be equal or greater than 8.2. Password should contain at least 1 number.3. Password should contain … Continue reading How to personalize Password field based on strict Regular Expression (RegEx) formulas in Canvas PowerApps
Share Story :
SQL Trigger not populating with Table in Logic App
Wondered How to solve SQL triggered Azure Logic Apps issue of not being able to select your table in dropdown? This blog will help you fix this issue.
Share Story :
Inventory Adjustments in Business central using Inventory Documents
Introduction: To adjust your inventory there is another ability provided by Business central using Inventory Documents. We can do positive and negative adjustments using Inventory Receipts and Inventory shipments respectively. Steps to achieve the goal: First, we need to set up the number series for Inventory Receipts and Inventory Shipments and Posted Inventory Receipts and … Continue reading Inventory Adjustments in Business central using Inventory Documents
Share Story :
Disable field on change of tab in D365 CE
Use case – Our requirement is to enable field description field on invoice line form on clicking of tab General. Let’s see how we can achieve this Solution – Step 1 – Create web resource with below function- var invoiceLineCustomization = { unlockField : function(executionContext) { var formContext = executionContext.getFormContext(); formContext.getControl(“description”).setDisabled(false); … Continue reading Disable field on change of tab in D365 CE