Mar 26, 2009 #1 hydnrd Programmer Mar 26, 2009 2 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 Jul 6, 2007 58 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