- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hi ,
If you check the workflow XML all continuous delivery saved between <notification> Tag. Inside Notification tag there is one field name as "scenario-cs" . This field saves the label of the delivery template which that continuous delivery contains.
So what you need to do is :
xmldata is [queryDef of xtk:workflow]
var activityXML = xmldata.workflow.activities.notification;
for each (var child in activityXML)
{
logInfo("Retrieve fields value ->"+child.@label)
}