Looking at my SAS code the other day I was trying to find a way to set the label of the program I was running.  I wanted to do this from within the code.  The ‘logic’ tab of the executed program had ‘%LET _CLIENTTASKLABEL=’ set to the running program name, but I wanted to actually set that value.  By default the program name is ‘Program’.  It would be nice if there were some code such as:

%SET CLIENTTASKLABEL='myProgramName';

…but alas, there is none that I am aware of, except to use VBscripting for automation (which for me seems a bit too much work for little benefit).  So I will keep setting the program names by hand.