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


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


The DEFINE HEADER statement creates the header template Bar.


The TEXT statement specifies the text "Ship Date" 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 ShipDate;
         dataname=Ship_Date;
         define header bar;
            text "Ship Date";
         end;
         header=bar;
      end;