Simple Mapping Table Reference
I want to reference a mapping table I created: 'Student Department Mapping' so I can send an email to an account only if the operation attribute (mmcDepartment) contains a value within the table. Is this rule right? Doesn't seem right to me....
<do-for-each>
<arg-node-set>
<token-map src="Department" table="\[root]\IDM\SERVICES\DriverSet\Meta-Library\Student Mapping Table">
<token-op-attr name="mmcDepartment"/>
</token-map>
</arg-node-set>
<arg-actions>
<do-send-email-from-template notification-dn="Security\Default Notification Collection" template-dn="Security\Default Notification Collection\Email to personemail template">
<arg-string name="to">
<token-text xml:space="preserve">personemail@domain.org</token-text>
</arg-string>
<arg-string name="CN">
<token-dest-name/>
</arg-string>
<arg-string name="FullName">
<token-op-attr name="Full Name"/>
</arg-string>
</do-send-email-from-template>
</arg-actions>
</do-for-each>
|