Hello All,
I am looking for a list of all possible items that could show up in the ACTION column? I would like to put a drop down to allow users to filter on ACTION "types".
Thanks,
Frank
Hello All,
I am looking for a list of all possible items that could show up in the ACTION column? I would like to put a drop down to allow users to filter on ACTION "types".
Thanks,
Frank
Found this enum in the sdk docs:
You can probably import that to build your list of available actions.
I’d assume the jdk would be authoritative, but this doesn’t exactly match:
I might just do a select distinct
The other issue to be careful about is that you can use System.util.audit()
and send any string for the action.
Great Point Marcus. I think I will create a Named Query to grab all 'distinct' values in the audit log table and then populate my filter drop down with the result set so it is dynamic.
Thanks,
Frank