Operation Details
Description: Entity operation to check if the template name already exists.
Sterotype: ns
SQL
SELECT
  COUNT(*)
INTO
  :numberOfRecords 
FROM
  DocumentTemplate 
WHERE 
  (
    upper(name) LIKE :name 
  )