
| Features: |
|
proc template;
define tagset Tagsets.newloc / store = Sasuser.Templat;
notes 'This is the Location Report Template';
define event basic;
end;
define event doc;
start:
put '' nl nl;
put '' nl;
put '' nl;
put '' nl;
ndent;
finish:
xdent;
put nl;
put '';
end;
define event system_title;
put '';
put VALUE;
put '';
put nl nl;
end;
define event header;
start:
trigger country /if cmp(LABEL, 'EmpCountry');
end;
define event data;
start:
trigger frequency /if cmp(name, 'Frequency');
end;
define event country;
put '' nl ;
ndent ;
put '' ;
put VALUE ;
put '' nl ;
end;
define event frequency;
put '' ;
put VALUE ;
put '' nl ;
xdent ;
put '' nl ;
end;
output_type = 'xml';
default_event = 'basic';
indent = 2;
split = '';
nobreakspace = '';
mapsub = '/</>/&/';
map = '<>&';
stacked_columns=off;
end;
run;proc template;
define tagset Tagsets.newloc / store = Sasuser.Templat;
notes 'This is the Location Report Template';
define event basic;
end;
define event doc;
start:
put '' nl nl;
put '' nl;
put '' nl;
put '' nl;
ndent;
finish:
xdent;
put nl;
put '';
end;
define event system_title;
put '';
put VALUE;
put '';
put nl nl;
end;
define event header;
start:
trigger country /if cmp(LABEL, 'EmpCountry');
end;
define event data;
start:
trigger frequency /if cmp(name, 'Frequency');
end;
define event country;
put '' nl ;
ndent ;
put '' ;
put VALUE ;
put '' nl ;
end;
define event frequency;
put '' ;
put VALUE ;
put '' nl ;
xdent ;
put '' nl ;
end;
output_type = 'xml';
default_event = 'basic';
indent = 2;
split = '';
nobreakspace = '';
mapsub = '/</>/&/';
map = '<>&';
stacked_columns=off;
end;
run;proc template; define tagset Tagsets.newloc / store = Sasuser.Templat; notes 'This is the Location Report Template'; define event basic; end; define event doc; start: put '' NL NL; put '' NL; put '' NL; put '' NL; ndent; finish: xdent; put NL; put ''; end; define event system_title; put ''; put VALUE; put ''; put NL NL; end; define event header; start: trigger country /if cmp( LABEL, 'EmpCountry'); end; define event data; start: trigger frequency /if cmp( name, 'Frequency'); end; define event country; put '' NL; ndent; put ''; put VALUE; put '' NL; end; define event frequency; put ''; put VALUE; put '' NL; xdent; put '' NL; end; map = %nrstr('<>&'); mapsub = %nrstr('//&/'); nobreakspace = ' '; split = ''; indent = 2; default_event = 'basic'; output_type = 'xml'; stacked_columns = OFF; end; run;