I have a grid report..I do not want to get the data displayed in the report where the value of the Status field is "Awaiting".. Any inputs are appreciated... Suggest me how to handle this
Discussion posts and replies are publicly visible
Just give default filter on the Status column in the report itself, or embed it in UI with a!queryProcessAnalytics and apply query on it.
If you are using a!queryentity() to get the grid report, you need to configure a filter inside a!query() such that field status<>"Awaiting". This will return all the records with status other than Awaiting.
Hope this helps.
I got it
Thank you