To know the Application version before upgrade and current version
SELECT SUBSTR(snapshot_name,12,8)
FROM ad_snapshots
WHERE comments = ‘Preseeded’
AND REPLACE(SUBSTR(snapshot_name,12,8),’.’) =
(
SELECT max(to_number(replace(SUBSTR(snapshot_name,12,8),’.’)))
FROM ad_snapshots
WHERE comments = ‘Preseeded’
);
Use the following to know the current Oracle Apps Version.
———————————————————————
SELECT release_name FROM fnd_product_groups;
Leave a Reply
Want to join the discussion?Feel free to contribute!