How to save the SUBJECT of an EMAIL DELIVERY with an Update Data activity
Hi,
I would like to retrieve the subject of an email using with target dimensione the Recipient delivery log table.
Since the subject is an XML (calculated) field in the workflow I can retrieve it with a Query activity but I cannot save it in an Update date activy.
I should save the subject in this field Subject delivery of my destination table:
<attribute label="Subject Delivery" name="subjectDelivery" type="string"/>
ERROR ON UPDATE DATA ACTIVITY:
The node of path '/subjectDelivery' is not stored as an independent SQL field
I also tried to modify the scheme adding this XML attribute to the definition:
<attribute label="Subject Delivery" name="subjectDelivery" type="memo" xml="true"/>
ERROR ON UPDATE DATA ACTIVITY:
Element 'data' unknown
The subject is in the table nsm:delivery and is defined as below:
<element label="Email header parameters" name="mailParameters" xml="true">
...
<element desc="Message subject" label="Subject" localizable="true" name="subject"
type="CDATA"/>
...
</element>
May anyone tell me how can I solve this problem?