It's often useful to know which table contains the data you're seeing in the system. This is helpful both for knowing where to get data for a report and for knowing which LU's API to call to make a change.
IFS Enterprise Explorer has the System Info tab for this, but this doesn't always show these details, particularly under the Solution Manager.
What we can do instead is make a change inside the application--in the relevant screen and field that we want to learn about--then look inside the database to see what recently got changed.
Step 1:
BEGIN
dbms_stats.flush_database_monitoring_info;
END;
/
Step2:
Make your change in the application.
Step 3:
-- (Again)
BEGIN
dbms_stats.flush_database_monitoring_info;
END;
/
Step 4:
-- As app owner, e.g. IFSAPP
SELECT *
FROM user_tab_modifications
WHERE timestamp = (SELECT MAX(timestamp) FROM user_tab_modifications);
Between steps 1 and 3, you'll want to work quickly to ensure only your changes get captured, either in a nonproduction environment or during off-hours when other users aren't making concurrent changes. Note that changes made by background jobs will also get captured.