
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Join two active list
Hi,
I am tryng join the values of two active list into the new active list those are populated by two rules. In each list I used the Device CustomString2 field. I am trying the create a new rule that take the first value and second value with the local variables. I dont know how to do it.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Could you show us what you have so far? Maybe step through the content with screenshots?


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Hi,
You could use GetList variables to get both values from your AL s (one variable for each list) using a common field for mapping.
After that, create another variable to concatenate them and use this variable in the Add to List action of the rule, to add the value to the other list.
Regards,
Fabiano.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Hi,
Well, I have:
- 2 rules, each one take the targetUserName and deviceCustomString1 to add to Active List in the same fields, Example
*List 1
targetUserName deviceCustomString1
XXXXX 10.10.10.10
*List2
targetUserName deviceCustomString1
XXXXX 20.20.20.20
Then I need that in the List3:
targetUserName deviceCustomString1 deviceCustomString2
XXXXX 10.10.10.10 20.20.20.20

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
I created two global variables, but when I concatenated these, They willbe add in one field and I need two fields.


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Hi David,
Join rule does not fit in your request?
You can use a join rule with a safe aggregation time, so, when both events occur, you set their values in the AL you desire, each event string in eache AL's field.
In this approach, you do not even need the first two AL s, considering that you are using them just to feed the third one.
Regards,
Fabiano.