Re: Integration issues with CounterAct
Moderator
Posts: 84
Registered: ‎06-21-2017
Moderator
Moderator
Posts: 69

Hello Marc,

 

The issue with the template. for a quick fix, do the following:

 

 

replace:

 

{
"name": "Copy discovery_data for other records",
"operation": "NOP",
"body_list": [
"${XC:COPY:{L:discovered_data}:{P:discovered_data}}"
]
},

 

with:

 

{ "name": "check_For_Discovery_Information", "operation": "CONDITION",
"condition": {"condition_type": "AND", "statements": [{"left": "$P::discovered_data}", "op": "!=", "right": ""}],
"eval": "${XC:COPY:{L:discovered_data}:{P:discovered_data}}"},"else_eval": "${XC:ASSIGN:{L:discoverer}:{S:.}}"},

 

the new step does the same thing as the replaced step except it checks if the discovery data is available and puts a place holder into the variable to keep an error from occurring.

 

Hope this helps,

Kevin Zettel