Hi all!
I have a problem, when try to setup query like this:
Table: xkt:workflows
XML memo contains ‘<GroupGuidType_operation="none" externalGuid="5d0db763-4191-e664-ad08-de26b2a3faab"/>’
My query returns 1 result ( only the current workflow where the search is being made ), but I know for sure ...
Hi all!
I'm trying to update the lastModified field for a Delivery template:
var query = xtk.queryDef.create(
<queryDef schema={vars.targetSchema} operation="select">
<select>
<node expr="@id"/>
</select>
</queryDef>);
var result = query.ExecuteQuery();
for each (var res in result) {
var del...
Hi Ishan,
Thanks for your answer.
Here it is:
<!-- recompute stats and indicators -->
<method name="RecomputeStats" static="true">
<help>Recompute delivery and tracking statistics for a delivery action.</help>
<parameters>
<param desc="Delivery identifier" inout="in" name="deliveryId" type="long"...
Hello!
Could you please explain how the system gets these values?
[indicators/@success]
[indicators/@sent]
I read https://experienceleague.adobe.com/docs/campaign-classic/using/reporting/reports-on-deliveries/indicator-calculation.html?lang=en#delivery-summary-1 , but I want to know how it wo...
Hi Marcel!
Thanks for your answer.
It's very helpful.
This is my script, it's working correctly.
var delivery = NLWS.xtkQueryDef.create({queryDef: {schema: vars.targetSchema , operation: 'select',select: {node: [{expr: '@id'},]}}}); var results = delivery.ExecuteQuery();
for each (var res in r...
Hi!
I want mass update sender and reply address for delivery templates.
But this information is only in XML memo.
So how I can do it? Via JavaScript or something else?