
How to create and expose a custom field in D365 HR
While there is an extensive set of fields out-of-the-box for managing a broad range of business processes, sometimes there is a need for a company to track additional information in the system. To accommodate this need, you can create custom fields to tailor the application to fit your business, provided you have permissions to the […]
Add Power App in MS Dynamics 365 for HR
Pre-requisite: First, create a Power App with CDS data, Save and Publish. Remember the App Id. Once, We have all information ready then Login to Talent. Click on any workspace where Power App needs to be added. Right-click on the screen, click on personalize this form and insert a PowerApp. Specify Name of PowerApp, App […]
How to hide SSRS Report Batch and printer settings
Create a controller class create main method and below code. TestController controller = new TestController(); controller.parmReportName(#ReportName); controller.parmArgs(_args); controller.showBatchTab(false); // Hide batch tab controller.parmLoadFromSysLastValue(false); //clear last selected value by user controller.showPrintSettings(); // hide current print destination setting controller.startOperation(); To hide current print destination setting override below method public boolean showPrintSettings() { return false; }

Multi select lookup in SSRS Report
In this post, We will see how to create multi select parameter on SSRS report dialog. Step 1: Assumption : We have already regular table created or You can create new table based on your requirement. I will take an example of CustTable and CustTrans. Step 2 : Create a temporary table DemoMultiLookupTmp Add a […]