I want to add an Extended Attribute for files deployed through workflow, without adding an external task, for the purpose of last deployment date.
<property name="Eastartop">set:TeamSite/Metadata/WorkflowPublishedDate=$IW_SCRIPT(IDWorkflowPublishedDate)</property>
****$IW_SCRIPT(IDWorkflowPublishedDate)****
function getCurrentUTTimestamp() { var currentUTTimestampMillis = new Date().getTime(); return currentUTTimestampMillis.toString();};getCurrentUTTimestamp();
So I'm using "EA Start Op" at a particular task, and it's working. However the "Modified By:" property of the files attached to task is changing to the owner set for that task. i.e. $IW_USER
Is there anyway just to set EA without affecting "Modified By:", without using any external java code.