Function Checks and calls up the build methods for all table objects
Example ABAP
s10buildcolumns(    columns = "kunnr,name1"    
	  foldername = "mycustomers" ).
Format ABAP
data:
  mycolumns type string,
  myfoldername type string.

  s10buildcolumns(
    exporting
      columns = mycolumns
      foldername = myfoldername ).
Parameters
Name Type Description
columns string
Comma separated list of column names
foldername string
Table name
Description The s10buildcolumns() method is automatically called by the S10 Framework when a table is displayed in HTML. For all objects of the table, s10build() is performed for the columns to be displayed.
Components S10 Framework