1 The SAS System 11:10 Thursday, October 12, 2017 1 ;*';*";*/;quit;run; 2 OPTIONS PAGENO=MIN; 3 %LET _CLIENTTASKLABEL='2_Add_Users_Groups_to_Metadata'; 4 %LET _CLIENTPROCESSFLOWNAME='Process Flow'; 5 %LET _CLIENTPROJECTPATH=''; 6 %LET _CLIENTPROJECTNAME=''; 7 %LET _SASPROGRAMFILE=; 8 9 ODS _ALL_ CLOSE; 10 OPTIONS DEV=ACTIVEX; 11 GOPTIONS XPIXELS=0 YPIXELS=0; 12 FILENAME EGSR TEMP; 13 ODS tagsets.sasreport13(ID=EGSR) FILE=EGSR 14 STYLE=HtmlBlue 15 STYLESHEET=(URL="file:///O:/Program%20Files/SASHome/SASEnterpriseGuide/7.1/Styles/HtmlBlue.css") 16 NOGTITLE 17 NOGFOOTNOTE 18 GPATH=&sasworklocation 19 ENCODING=UTF8 20 options(rolap="on") 21 ; NOTE: Writing TAGSETS.SASREPORT13(EGSR) Body file: EGSR 22 23 GOPTIONS ACCESSIBLE; 24 %mduimpc(); 25 /* Create the grpmems table for user/grousp association to add to Metadata. */ 26 data &idgrpmemstbla; 27 %defineidgrpmemscols; 28 infile datalines delimiter=',' missover; 29 input grpkeyid memkeyid; 30 datalines; NOTE: The data set WORK.GRPMEMS has 1 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds 32 ; 33 34 * Load the information from the work library into the metadata server. */; 35 %mduimplb(); NOTE: Table WORK.MDUIMPLB_FAILEDOBJS created, with 0 rows and 12 columns. NOTE: PROCEDURE SQL used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Variable keyid is uninitialized. NOTE: Variable authDomName is uninitialized. NOTE: Variable authDomOutboundOnly is uninitialized. NOTE: Variable authDomTrustedOnly is uninitialized. NOTE: The data set WORK.AUTHDOMAIN_TEMP has 0 observations and 4 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 2 The SAS System 11:10 Thursday, October 12, 2017 NOTE: Variable keyid is uninitialized. NOTE: Variable name is uninitialized. NOTE: Variable description is uninitialized. NOTE: Variable grpType is uninitialized. NOTE: Variable displayname is uninitialized. NOTE: The data set WORK.IDGRPS_TEMP has 0 observations and 5 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Variable keyid is uninitialized. NOTE: Variable name is uninitialized. NOTE: Variable description is uninitialized. NOTE: Variable title is uninitialized. NOTE: Variable displayname is uninitialized. NOTE: The data set WORK.PERSON_TEMP has 0 observations and 5 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.02 seconds WARNING: The Idgrps AND Person input tables either do not exist or contain no records. The Macro %mduimplb will not continue processing. ERROR: Execution terminated by an %ABORT statement. 36 37 GOPTIONS NOACCESSIBLE; 38 %LET _CLIENTTASKLABEL=; 39 %LET _CLIENTPROCESSFLOWNAME=; 40 %LET _CLIENTPROJECTPATH=; 41 %LET _CLIENTPROJECTNAME=; 42 %LET _SASPROGRAMFILE=; 43 44 ;*';*";*/;quit;run; 45 ODS _ALL_ CLOSE; 46 47 48 QUIT; RUN; 49