How to make a copy of an ODS template


Template stores are kept in a file type called an item store. To make a copy of a template, use one of the below three approaches below.

edit styles.default as styles.test;
   end;
quit;

proc template;
   link styles.test to styles.default;
quit;


proc template;
   define style styles.test;
      parent=styles.default;
   end;
quit;

See also PROC TEMPLATE FAQ and Concepts.