How can we get the login user details in Syteline using FormScript?
- Form variable("UserID")
- Form variable("UserName")
- App variable("User_UserID")
- none of the above
To get the login user id, please use the global variable "User_UserID",
use the below script to get the value,
Application.variables
("User_UserID").
Value Using the above statement, we can get the user id,
and using the user id we can pull the username from the UserNames IDO.
Contact Us