Hi ,
We have a requirement , wherein as part of the footer we need to showcase the user who is viewing the report, GIven that we know that the same is not availbale OOTB, we thought that we would have an STP capture the same and display in the lower section of the report,
Any thoughts of a better way to do so. Please let us know.
cheers
Ron
I think that the stored process is a good idea. You could use code similar to this. This link has the list of reserved macros:
*ProcessBody; %stpbegin; data t; user_details = "Query submitted by - &_METAPERSON "; run; proc report data = t nowd noheader style =[bordercolor=white cellwidth=700 ] style(column)=[font_weight =bold font_style=italic] ; title; run; %stpend;
Here it is in a report (bottom left)
-------------------------------------------------------------------------
Four tips to remember when you contact SAS Technical Support
Tricks for SAS Visual Analytics Report Builders
SAS Visual Analytics Learning Center
Yup, thats the approach we have kept it so far, the only drawback is we loose the synchronization among all the objects in the report. anyways we can retain that functionality along with the STP presence.
You cannot synchronize as long as the section includes a stored process. Another possible workaround is to edit the information map to add a character data item with the expression:
scan("&_METAUSER",1,'@')
Then, hide that data item in all objects, placing it in a list table at the bottom of the report.
-------------------------------------------------------------------------
Four tips to remember when you contact SAS Technical Support
Tricks for SAS Visual Analytics Report Builders
SAS Visual Analytics Learning Center
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.
Ready to level-up your skills? Choose your own adventure.