Save count from query in workflow | Community
Skip to main content
Chris_Thomas_So
August 24, 2017
Solved

Save count from query in workflow

  • August 24, 2017
  • 3 replies
  • 5794 views

Hi,

I am looking for an example of saving the record count in a Adobe Campaign query. I then want to save the count into a database table table. Can anyone point me in the direction of saving just the record count and not the actual records.

Thanks.

Regards

Chris

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by florentlb

Hi Chris,

Were you able to have a look at Jean-Serge's suggestions?

Let us know,

Florent

3 replies

Jean-Serge_Biro
Level 10
August 24, 2017

Hi Chris,

In a workflow, after the Query activity, an event variable vars.recCount is set with the result set count.
So you can use it in a Javascript activity to save the value in a dedicated table (report/historical table, for instance; or in xtk:options counter with JS method setOptions).

Or you can change the dimension with Change dimension activity, to use the insert / update integrated, with the value of recCount.


With the Javascript way, you have many choices to do so; please see the JSAPI documentation these availables methods:

1. Direct SQL instructions (update, insert) into your dedicated report tables:

sqlExec

execute
2. Using rather the Entity schemas (cleaner, but a bit less obvious):

set the entity properties then

xtk.session.Write

(or method save of the entity)

If your count doesn"t come from a Query activity but directly from a queryDef query written in your Javascript query, vars.recCount is not available so you must count with your result collection with length function.
resXXX.YYY.length()

Same system is valuable if you need to count several objects, in that case it is not vars.recCount or legnth that it is needed,  but a queryDef with count (group by) clauses; and then you put the count values in the dedicated report tables the same way, by using sqlExec or session.Write or save entity, based on the loop on the several count values.

By the way, you have created another ticket with same subject today as well, please keep only this one, close the other. Many thanks in advance for other readers.

Regards.
J-Serge

florentlb
florentlbAccepted solution
Level 10
September 1, 2017

Hi Chris,

Were you able to have a look at Jean-Serge's suggestions?

Let us know,

Florent

Chris_Thomas_So
September 5, 2017

Thank you for the response. Much appreciated. And apologies for the slow response.

Regards

Chris