I have a stored procedure that if you give it a first name and a last name it returnes a list of User Names in DNN.
i.e. exec Get_DNN_USER_SearchLastFirstName @LastName = John, @FirstName = Doe
I set up search text fields that the first and last name could be input by the user:
exec Get_DNN_USER_SearchLastFirstName @LastName = [SEARCH:Text], @FirstName = [SEARCH2:Text]
This works and displays a place to input the first and last name. The results return
UserId, First, Last, MI, Username, Email
I want to make this instance of SGSV a parent and pass UserID to a Child. I don't understand how to get this instance to associate UserId with a parameter that I can then pass to a child.