Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

The 4th edition of the Campaign Community Lens newsletter is out now!
SOLVED

How to get the counts of records?

Avatar

Level 2

Hi, 

I need to count of records , for example, I have 3 transaction in my database activity after split I am getting total number of records show up on arrow (as normally we see) so now I need to get these counts and either put that number in temp schema or any excel file (for reporting purpose) please let me know, thanks for your support. 

 

GUPTAA

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hello @CSLTGUPTAA ,

 

You Add  javascript code activity and  enrichment activity after the split outbound transitions.

 

Eg.

_Manoj_Kumar_0-1595236378241.png

 

in your javascript activity, create an instance variable and store counts in it.

_Manoj_Kumar_1-1595236438336.png

Make sure to change the count1 to count2 in second javascript activity.

 

Then in the enrichment activity just call this count1 like this.

_Manoj_Kumar_2-1595236504606.png

 

You final output will look like this after the enrichment.

_Manoj_Kumar_3-1595236576033.png

 

 

Note: Count value will remains same for the rows.

 

Let me know if that helps.

 

 

 

3 Replies

Avatar

Correct answer by
Community Advisor

Hello @CSLTGUPTAA ,

 

You Add  javascript code activity and  enrichment activity after the split outbound transitions.

 

Eg.

_Manoj_Kumar_0-1595236378241.png

 

in your javascript activity, create an instance variable and store counts in it.

_Manoj_Kumar_1-1595236438336.png

Make sure to change the count1 to count2 in second javascript activity.

 

Then in the enrichment activity just call this count1 like this.

_Manoj_Kumar_2-1595236504606.png

 

You final output will look like this after the enrichment.

_Manoj_Kumar_3-1595236576033.png

 

 

Note: Count value will remains same for the rows.

 

Let me know if that helps.

 

 

 

Avatar

Level 2
Hi Manoj, thanks a lot, It worked well. Glad to have a quick solution from you,