Skip to main content

Posts

Showing posts from December, 2021

Create New User and assign Permission Sets : Using Business Central Administration shell

Hi Folks, In this blog we will see how we can create new users and assigning permission sets using Business Central Administration shell  step by step:- Step-(1) Run Business central Administration Shell as Run as Administrator. Step-(2) Then just Run the below mentioned command and pass unique Windows account tagged with BC user and Server instance as shown below: new-navserveruser Step-(3) New user (Kunal Blog) with blank permission set is now created as shown below: Step-(4) Now Run the below command to assign permission sets and pass the PermissionSetId , WindowsAccount & ServerInstance as parameter: New-NavServerUserPermissionSet Step-(5) Permission Set Id is now assigned as shown in User Permission Sets tab : Note- (1) Pass the correct parameters as Windows Account  &  Server Instance based on your config. (2) We can also create the same using PowerShell ISE. I hope this will help you to create new users & assign Permission sets in Business Central. Thanks f

Adding Bullets in SSRS Report : Using HTML Expr in RDLC Report

Hi  Readers, In this article we will see how we can add the bullets or add multiple HTML styles using HTML Expression in the RDLC report. In this example the client requirement is just to add bullet points of attached annexures in RDLC Report: Step-(1) Firstly, create a Placeholder then add Expression value in placeholder properties and makesure to select HTML - Interpret HTML tags as style option in Markup type . Step-(2) Expression value should be like this: Here, if the Delivery Schedule Boolean is true on request page then it will print Delivery Schedule in bullet points form: =IIF(Fields!Annexure_DeliverySchedule.Value=True," <ul><li>Delivery Schedule </li></ul>","") Step-(3) Now just save the layout changes and compile the report, Output should be like this in bullet format: NOTE- We can also use the multiple HTML tags for different styles as per the requirement. Thanks for Reading!! Your valuable feedback will be highly Apprecia