Hi,
I'm trying to build an URL for a specific Web page of a device.
I have some Input Data and Parameters to make this url:
This is basically working:
http://<ElementIP>/#/card[param:<elementname>,17402,SDI In 3.1A]
In my Service template I have a Input Filter to filter table rows.
The Input data is called "Slot Filter Input" and has value "3.1A"
http://<ElementIP>/#/card[param:<elementname>,17402,*[Property:Slot Filter Input]]
I think the "*" wildcard is causing the issue that the url is not okay
Hi John,
For the data the * is representing ‘SDI In’ from example above, is this data available in any of the table parameters? If so, you could add a parameter lookup in place of the *. If available with additional character, regex replace might work to get to the specific characters you need. (https://community.dataminer.services/question/regexreplace-parameter-in-a-row-source-child-shape/?hilite=regex)
Still I'm not able to get it to work, I found out that the "*" was not the issue.
works:
Link http://<ElementIP>/#/card[param:<elementname>,17402,SDI In 3.1A]
not works:
Link http://<ElementIP>/#/card[param:<elementname>,17402,[property:Slot Filter Input]]
"Slot Filter Input" in a input data field of my service.
The Link is attached to the Element in this service, it seems that it can not resolve "Slot Filter Input"
(I use now "SDI In 3.1A" as input data instead of "3.1A")
I’m using as a reference:
[param:DmaID/ElementID,ParameterID,TableRow]