are there any procedures or methods to copy information maps from one folder to another folder in SAS code? don't want to move, but copy. thanks.
You can use the PROC INFOMAPs procedure. For example, say that you have an information map named ClassMap in "/Shared Data/InfoMaps". You could submit this code to place a copy of the map in "/Shared Data/InfoMaps/Copy."
proc infomaps metauser="sasdemo" metapass="xxxxx" metaserver="your-server" metaport=8561metarepository=Foundationmappath="/Shared Data/InfoMaps";
update infomap "ClassMap";
save mappath="/Shared Data/InfoMaps/Copy";
You can find information about the SAVE statement beginning on page 77 in the Base SAS® 9.4 Guide to Information Maps
-------------------------------------------------------------------------Four tips to remember when you contact SAS Technical SupportTricks for SAS Visual Analytics Report BuildersSAS Visual Analytics Learning Center
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Lock in the best rate now before the price increases on April 1.
Register now!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.
Browse our catalog!