VA redirect does not maintain URL parameters that are being passedIssue Customer reported an issue with URL parameter in the VA not working as expected.ReleaseAnyCauseI confirmed with our development team. This issue is being caused because the customer was stacking a sysparm inside another sysparm. This is not how this is expected to be used.ResolutionTo fix this they need to only add one sysparm and then add the URL parameters. So instead of doing this:/sn_va_web_client_login.do?sysparm_redirect_uri=/sn_va_web_client_app_embed.do?sysparm_branding_key=branding_key&sysparm_load_active_only=true Do this:/sn_va_web_client_app_embed.do?sysparm_branding_key=people&sysparm_load_active_only=true Note: We also do confirm that some parameters do work while being stacked and it seems the "load_active_only=true" does not work while being stacked. Regardless, this is not how this is meant to be used. The expectation is for all URL parameters to be added to one sysparm. Anything else would be an enhancement.