Skip to main content
Nintex Community Menu Bar
Question

I'm trying to pass the user id in the url for the visualforce page.

  • July 11, 2024
  • 2 replies
  • 22 views

Forum|alt.badge.img

When logging in, the user id needs to be included in the url for the correct data to populate on this skuid page. The apex code below renders the url as “CAS_Child_Profile&id=0000000000000”

<apex:page standardController=“User” recordSetVar=“c”

extensions=“skuid.Redirects” action=“{!redirect}&page=CAS_Child_Profile&id={!User.id}”> </apex:page>

Please help!

This topic has been closed for replies.

2 replies

Forum|alt.badge.img+10

Tiara,

For the ‘id’ parameter, please try:  {!$User.Id}

If that does not work, then you can access the Running User Id on any Skuid page using their merge variable:  {{$User.userId}}

Thanks,

Bill


Forum|alt.badge.img+1

{!SUser.Id} worked.

Thanks!