To populate setup sheets with information about toolpaths and tools in an NC program, use the following functions in the relevant .html template:
- Number of toolpaths in an NC program:
${number_nctoolpaths(entity('ncprogram', ncprogram.name))}
- Number of tools in an NC program:
${number_nctools(entity('ncprogram', ncprogram.name))}
- Names of tools in an NC program:
${join(list_nctools(entity('ncprogram', ncprogram.name)), ',')}
Note: The function join separates the list of tool names with a delimiter, in this case a comma.