I noticed that following the Live Data Macro documentation on filtering LiveData tables does not work as expected. For instance, the documentation states that the LiveData macro call should be written as:
filters="doc.location=help"
(with doc.
as for LifeTable)
However, in my case, the call for LiveData only works with:
filters="location=help"
(without doc.
)
Another point of confusion is the meaning of “URL query string” in the Parameters section of the documentation. Example:
filters="location=PageA/PageB"
This does not only return MySpace/…PageA/PageB…
, but also MySpace/…PageA/…/PageB…
. If I only want to retrieve MySpace/…PageA/PageB…
, I need to modify the filter from an URL notation to a page reference notation:
filters="location=PageA.PageB"
So, is this an issue with the documentation, the implementation, or did I misunderstand something?