For an item in the DCT, I need to set it to the system time. I've tried this example from Interwoven's KnowledgeBase article 2331:
<text>
<iw_perl><![CDATA[
use Date::Manip;
iwpt_output(&UnixDate("today","%b%e%Y"));
]]></iw_perl>
</text>
This produces a BLANK text field! To simplify things, I also tried:
<text>
<iw_perl>
iwpt_output("hello");
</iw_perl>
</text>
This also produces a blank text field.

Two questions....
- is this the best way to get the system date?
- why is the text field not populating?