Hi Erik
I agree - would be nice. But as an alternative until it is in place, here is a wee Powershell Script that you can add as the first Task in your job (i've named it 'Job Details - CLICK->'). It simply looks up a CSV file containing all of your Job and Contact details (or anything you want), and writes the contents into a nice (ish) table in your STDOUT field - just double click on the field and it shows the following:
============
JobName : Monitor Triggers*
ContactName : Andrew Payne
ContactPhone : 44111111111
ContactEmail :
me@vctest.comContactExtension : 123
Contact Department : The I.T Team
Job Description : This Job is very cleaver cos it does lots of very clever st
uff
============
It works by matching the Jobname with the first column in your CSV file (which should also be your Jobname).
I am by no means a Scripter and I'm only learning these things as I go along, but I'm sure you could do it with SQL as well. As we say in Scotland - there's more than one way to skin a cat :-)
Here is the PowerShell Script (all 4 lines of it!) - just change the variables to point to your Path and CSV Filename:
=============
$currjob = "{JOB(Active|Name)}"
$matchfile = "C:\@@Trigger\Profile\VCJobContact.csv"
$error.clear()
import-Csv $matchfile | Where-Object {$currjob -like $_.JobName}
=============
And here is my CSV file Content:
=============
JobName,ContactName,ContactPhone,ContactEmail,ContactExtension,Contact Department,Job Description
Monitor Triggers*,Andrew Payne,44111111111,me@vctest.com,123,The I.T Team,This Job is very cleaver cos it does lots of very clever stuff
=============
Cheers
Andy