Hi, can we have user login details in sas dataset format. We are planing to create report only for successfully login and logout users. With the help of below code we are trying to create dataset for user login details but we are unable to do it. Below is the Code & Error: Code: libname myxml2 xml '/sasdata/sasconf/config/Lev1/SASMeta/MetadataServer/Logs/SASMeta_MetadataServer_2017-09-12_sas-namenode_32758.log' ; proc datasets library=myxml2; quit; data wrsaudit31012013; set myxml2.Event; run; ERROR: "myxml2 library is not assigned".
... View more