Hello,
I am trying to query the BroadLog for a specific subject line using querdef. What should the javascript code/query look like? The field I am trying to query is located here:
nms:broadLogRcp/delivery/mailParameters/subject
Thanks!
Views
Replies
Total Likes
<queryDef operation="select" schema="nms:broadLogRcp" xtkschema="xtk:queryDef">
<select>
<node expr="[delivery/mailParameters/subject]"
label="Subject (Delivery/Email header parameters)"/>
</select>
<sysFilter>
<condition>fill the condition you want</condition>
</sysFilter>
</queryDef>
Views
Replies
Total Likes
Thanks. And then how do I view the results? Right now, in the journal it says:
Activity 'js': Transition 'done': The target activity is not specified
Views
Replies
Total Likes
Views
Replies
Total Likes
Hi ,
var queryDemo = xtk.queryDef.create(
<queryDef operation="select" schema="nms:broadLogRcp" xtkschema="xtk:queryDef">
<select> <node expr="[delivery/mailParameters/subject]" label="Subject (Delivery/Email header parameters)" alias="@subject"/>
</select>
<sysFilter>
<condition>fill the condition you want</condition> </sysFilter>
</queryDef>
);
To see the result after above code add below code
var output = queryDemo.ExecuteQuery();
for each(var rec in output)
{
logInfo(" Subject line "+ rec.@subject)
}
Thanks
Views
Replies
Total Likes
Hi Kapil, I have tried doing the same like below:-
var query = xtk.queryDef.create(
<queryDef schema="temp:enrich" operation="select">
<select>
<node expr="@deliveryID"/>
</select>
</queryDef>)
var res = query.ExecuteQuery();
for each(var element in res){
delivery = NLWS.nmsDelivery.load(element.@deliveryID)
subject = delivery.mailParameters.subject;
logInfo("delivery =" + element.@deliveryID + "Subject= " + subject);
sqlExec("update "+vars.tableName +" set ssubjectLine='"+subject+"'");
}
I can get the log Info of the deliveries of the subject line. But I am not able to load the data to the variable that I have created in the previous enrichment activity, which is the sqlExec code just after the logInfo in the above script.
Requesting for an help.
Thanks,
Adithya
Views
Replies
Total Likes
Hello ,
Can you please take a look at
There are certain limitations while working with xml fields in QueryDef and loading the data of the subject into the variable could be a limitation.
--
Adhiyan
Views
Likes
Replies
Views
Likes
Replies