Mar 26, 2009 #1 hydnrd Programmer Joined Mar 26, 2009 Messages 2 Location US May I kindly ask your assistance how to get system user id and stored in a macro variable?
Mar 27, 2009 #2 dblan MIS Joined Jul 6, 2007 Messages 58 Location US Here is something I use in a lot of my code. %let UserID=%sysget(USERNAME); To check to see if it returns what you want, you can run: %put User is &UserID; Hopefully this is what you need. Dave Upvote 0 Downvote
Here is something I use in a lot of my code. %let UserID=%sysget(USERNAME); To check to see if it returns what you want, you can run: %put User is &UserID; Hopefully this is what you need. Dave
Apr 3, 2009 Thread starter #3 hydnrd Programmer Joined Mar 26, 2009 Messages 2 Location US Thank you Dave! Upvote 0 Downvote