Specify the column template to use for each variable. The COLUMNS= suboption places DATA step variables into columns that are defined in the table template. For example, the first column-specification specifies that the first column of the output object contains the values of the variable YEAR and that it uses the column template named Char_Var. GENERIC= must be set to ON, both in the table template and in each column assignment, in order for multiple variables to use the same column template.
columns=( char_var=year(generic=on) char_var=country(generic=on format=$cntry.) char_var=type(generic=on) num_var=kilotons(generic=on format=comma12.) ) );