The data set CLASSES contains the combinations of class variable values that PROC TABULATE uses to create the table.
data classes;
   input region division type;
   datalines;
1 1 1
1 1 2
4 4 1
4 4 2
;