How to show the user name on the welcome screen of Service PortalThis article explains how to show the user name on the welcome screen of Service Portal to display a greeting for the signed-in user. Process You can use the user object available in the Angular scope, and then perform the following steps. Clone the Homepage Search widget.In the cloned widget, change the client controller as follows: function() { /* widget controller */ var c = this; c.data.greeting = 'Hi ' + scope.user.first_name; } Change your Angular ng-bind value in the HTML template to data.greeting. <h1 class="text-center text-4x m-b-lg sp-tagline-color" ng-bind="data.greeting"></h1> Applicable Versions All available versions