Quick Search:
 
 Oracle PL/SQL: Show installed modules Jump to:  
Category: >> Oracle PL/SQL >> Show installed modules  

<< lastnext >>

Snippet Name: Show installed modules

Description: Shows the Oracle Application modules installed and the versions of the modules.

Also see:
» Add PSOUG Search to SQL Developer
» Converting Rows to Columns
» Database Links: CURRENT_USER
» Instant Test Database with DCBA
» Show info on current context
» Lookup Oracle error messages
» Display and release DBMS_LOCK locks
» Display locks and latches
» Show rollback segment stats
» Show active transactions
» List supported INIT.ORA parameters
» Display database SGA statistics
» Measure the Buffer Cache Hit Ratio
» List security related profile informat...
» Find users with deadly privileges
» Audit User Logins (User Login Trigger)
» Block TOAD and other tools
» Kill Session
» Extents
» DBA Users
» DBA Tablespaces
» DBA triggers
» DBA Sessions
» DBA Roles
» DBA Objects
» DBA Links
» DBA Jobs
» Job Queue
» DBA Free Space
» Data Files

Comment: (none)

Language: PL/SQL
Highlight Mode: PLSQL
Last Modified: February 27th, 2009

/* Shows the Oracle Application modules installed          */
/* and the versions of the modules                         */
/* Status:                                                 */
/*  I ..... installed                                      */
/*  N ..... not installed                                  */
/*  S ..... shared                                         */
 
spool app_modules_oracle.rslt 
 
SET linesize 100;
SET pagesize 1000;
SET LONG 50;
SET echo off;
SET feedback off;
break ON "Status" ON "Short Name" ON "App"; 
 
SELECT status                                                       "Status",
       SUBSTR(B.APPLICATION_SHORT_NAME, 1, 10)                  "Short Name",
       SUBSTR(B.APPLICATION_ABBREV, 1, 3)                         "App",
       SUBSTR(B.DESCRIPTION, 1, 30)                                "Desc",
       SUBSTR(B.APPLICATION_PREFIX, 1, 6)                           "Prefix",
       SUBSTR(A.PRODUCT_VERSION, 1, 8)                             "Version",
       SUBSTR(TO_CHAR(A.CREATION_DATE, 'YYYY-MON-DD'), 1, 12)     "Installed",
       SUBSTR(TO_CHAR(A.LAST_UPDATE_DATE, 'YYYY-MON-DD'), 1, 12)     "Updated"
       FROM applsys.fnd_product_installations  A,
     applsys.fnd_application            B
WHERE A.APPLICATION_ID = B.APPLICATION_ID
ORDER BY 1, 2, 3;
 
SET echo ON;
SET feedback ON;
spool off;
SET LONG 80;
COMMIT;
 


 
   Home |    Search |    Code Library |    Sponsors |    Privacy |    Terms of Use |    Contact Us © 2003 - 2024 psoug.org