I'm trying to apply some additional parameters to filter down our list of templates to choose from when creating a contract, and am struggling to get the TNC (Template Name Contains) parameter to work. Has anyone used this successfull that can share an example of the syntax you used so I can see if I'm using it correctly? Conga Documentation doesn't include an example for this parameter unfortunately.
Using the TNC parameter I did not, but what I ended up doing is adding a field to the Conga Templates object where I could catagorize the templates and then added the following line to my button parameters:
&TemplateGroup={!IF(Opportunity.Conga_User_Role__c="Corporate","Sales,Marketing,Admin",Opportunity.Conga_User_Role__c)}
This way the templates designated for a single team are all that appear for users under than team role.
Hope this helps