Hi SAS community, I am tryng to draw 5 gmaps on page using greplay.But am not getting the maps one the page istead am getting an empty page. my log window showing the NOTE: Graph 2 not on igout catalog. NOTE: Graph 3 not on igout catalog. NOTE: Graph 4 not on igout catalog. NOTE: Graph 5 not on igout catalog. Below is my code..please guide proc gslide gout=grafct; %INCLUDE "&folder_path.\map1.sas"; %map1(dept,loc); run; %INCLUDE "&folder_path.\map2.sas"; %map2(dept,loc); run; %INCLUDE "&folder_path.\map3.sas"; %map3(dept,loc); run; %INCLUDE "&folder_path.\map4.sas"; %map4(dept,loc); run; %INCLUDE "&folder_path.\map5.sas"; %map5(dept,loc); run; proc greplay tc=work.tempcat nofs; tdef nwtemp des="Five panel template" 1 / llx = 0 lly = 51 ulx = 0 uly = 100 urx = 33 ury = 100 lrx = 33 lry = 51 2 / llx = 34 lly = 51 ulx = 34 uly = 100 urx = 66 ury = 100 lrx = 66 lry = 51 3 / llx = 67 lly = 51 ulx = 67 uly = 100 urx = 100 ury = 100 lrx = 100 lry = 51 4 / llx = 0 lly = 0 ulx = 0 uly = 50 urx = 33 ury = 50 lrx = 33 lry = 0 5 / llx = 34 lly = 0 ulx = 34 uly = 50 urx = 66 ury = 50 lrx = 66 lry = 0; template nwtemp; list template; quit; ods pdf file="path.pdf" ; proc greplay igout=grafct gout=excat tc=tempcat nofs; template=nwtemp; treplay 1:1 2:2 3:3 4:4 5:5; quit; ods pdf close; Thanks, Sanjay
... View more