×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
Query the CO creation or DO deletion auditing entries.Via SQL or with the ACS tool.
Will give the full path in a field in clear.
Of course you need to have the auditing on.
i.e.
SELECT journal_code, journal_entry_type, object, object_type, X.*
FROM TABLE (
QSYS2.Display_Journal(
'QSYS', 'QAUDJRN', -- Journal library and name
JOURNAL_ENTRY_TYPES => 'DO' , -- Journal entry types
STARTING_TIMESTAMP => CURRENT TIMESTAMP - 1 HOURS -- Time window for search
) ) AS x
ORDER BY entry_timestamp DESC;
On Tuesday, May 27, 2025 at 04:23:39 PM GMT+2, Rob Berendt <robertowenberendt@xxxxxxxxx> wrote:
Which was exactly what he was trying to do.
I think the problem was that he was hoping it didn't require a decoder ring
to get to and was in the simple path name column. The path name only shows
the parent directory with the auditing turned on.
Seems a job for object auditing?
As an Amazon Associate we earn from qualifying purchases.