SP Portal - Request Summary page - Requested for field displays incorrect valueIssue When a catalog item is requested on behalf of a user, the 'Requested for' field in the Request Summary page displays the name of the submitter instead of the requested for user.SymptomsThe 'Requested for' field in the Request Summary page shows the name of the submitter instead of the requested for user.This issue occurs when a catalog item is requested on behalf of a user.ReleaseAll ReleasesCauseThe issue is caused by the way the 'Requested for' field is populated in the SC order status widget.Resolution To resolve this issue, you need to create a clone of the SC order status widget and make the following changes: Server Script Section: Replace the existing line of code: requested_for: reqItemGr.getDisplayValue("requested_for"), * With the updated line of code: requested_for: reqItemGr.request.requested_for.getDisplayValue() Testing: Before making changes to the production instance, test the updated widget on a sub-prod instance to ensure that the changes work as expected. Important Notes: Make sure to test the updated widget thoroughly before deploying it to production.