Create the column template Country. The DEFINE COLUMN statement creates the column template Country.


The DEFINE HEADER statement creates the header template Bar.


The DATANAME= column attribute specifies the name of the column Country in the data component to associate with the column template Country.


The TEXT statement specifies the text to use in the header.


The first END statement ends the header template.


The HEADER statement declares Bar as the header in the table.


The second END statement ends the column template.


      define column country;
         dataname=country; 
         define header bar;
            text "Country";
         end;
         header=bar;
      end;