Using the Message viewer to find specific value in trace set in BPL
I have a BPL that I set up a trace to check if the ProcRsltStatus Order is 1. Because the trace is set up in the BPL, I am having issues in searching traces that have the 1 in the message viewer. Any idea how I can limit my search to only the ones with ProcRsltStatus Order::1? Thanks in advance.
Product version: IRIS 2021.2
You can run a SQL Query like this:
SELECT * FROM ENS_UTIL.LOG WHERE Type = 'Trace' AND Text=...
This worked! Thank you @Oliver Wilms
You can also search directly in the event log from the Management Portal
There you also get a link to the session trace.
Enrico
@Enrico Parisi thank you for your response. However, I think it only works if the trace had been set up on the component and not in the BPL. I tried out your suggestion and it didn't work unfortunately as I could not select the BPL in the Source Config Item drop down menu.
If it's in the table, then can be viewed in the event log. All that page does is run a query against ENS_UTIL.LOG and display the result.
From your screenshot the source config item should be ....RsltRouter, if not found in the list (I don't know why), you can just type it or omit it.
Thank you @Enrico Parisi. This also worked. I followed your instructions to type in the name of the router since it wasn't appearing in the drop-down menu.