BookmarkSubscribeRSS Feed
Rohan
Calcite | Level 5

Hello Friends,

I have a issue. I want to print the userid while I'm updating a dataset in column "updated_by". I'm not getting the function to get it.

Could you please help me out?

Thanks !

Rohan.

4 REPLIES 4
Ksharp
Super User

I do not know the following is whether you want,

These information has been stored in system automatic macro variable.

%put &sysuserid &sysjobid;

Ksharp

Rohan
Calcite | Level 5

Hello Ksharp,

Thanks for the reply.

if I use "&sysuserid" , it would create a column in dataset.

but I want to pass the value of it to another variable.

data ABC;

id = &sysuserid;

run;

I want that dataset ABC only has one column named ID and it contains the value of sysuerid. Could u please help me out ?

Thanks,

Ksharp
Super User

I don't understand what you mean exactly.

You can store its value in a dataset .Like:

data ABC;

id = "&sysuserid";

run;

Ksharp

Haikuo_old
Fluorite | Level 6

Or:

data ABC;

id=symget('sysuserid');

run;

Haikuo

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 1574 views
  • 0 likes
  • 3 in conversation