Forum Discussion
Arunraj1515
Nov 21, 2022Copper Contributor
How to get Test Case Tags and Test Case Steps
Hi Team, 1. Is there any way to get data from "STEPS" Field under Test Case using API or OData Feed or Someother way. I am trying to connect with PowerBI and extract all the data under "Steps" Fi...
SaumilkumarShah
Nov 30, 2022Brass Contributor
Find all hotels with the tag "wifi" in at least one room (where each room has tags stored in a Collection(Edm.String) field):
odata-filter-exprCopy
$filter=Rooms/any(room: room/Tags/any(tag: tag eq 'wifi'))
refer below link for more info:
https://learn.microsoft.com/en-us/dynamics-nav/using-filter-expressions-in-odata-uris
odata-filter-exprCopy
$filter=Rooms/any(room: room/Tags/any(tag: tag eq 'wifi'))
refer below link for more info:
https://learn.microsoft.com/en-us/dynamics-nav/using-filter-expressions-in-odata-uris