# DCoam.ctl:361:Collects Oracle Access Manager Information # $Id: DCoam.ctl,v 1.7 2015/07/03 12:04:44 RDA Exp $ # ARCS: $Header: /home/cvs/cvs/RDA_8/src/scripting/lib/collect/OFM/DCoam.ctl,v 1.7 2015/07/03 12:04:44 RDA Exp $ # # Change History # 20150703 MSC Improve the documentation. =head1 NAME OFM:DCoam - Collects Oracle Access Manager Information =head1 DESCRIPTION This module collects Oracle Access Manager-related information. The following reports can be generated and are regrouped under C: =head1 REPORTS =cut echo tput('bold'),'Processing OFM.OAM module ...',tput('off') # Initialization var $ORACLE_HOME = ${D_ORACLE_HOME/P:''} var $TOC = '%TOC%' var $TOP = '[[#Top][Back to top]]' pretoc '1:Oracle Access Manager' # Load the common macros run OFM:WLSlib() =head1 ORACLE HOME COLLECTIONS =head2 abbr - Abbreviations Displays the RDA abbreviations defined for the Oracle home collection. =cut if ?testDir('d',catDir($ORACLE_HOME,'oam')) {debug ' Inside OAM module, collecting defined abbreviations' report abbr prefix {write '---+ Oracle Home Abbreviations' write '|*Abbreviation*|*Location*|' } var %hsh = getSymbols() loop $key (keys(%hsh)) write '|',$key,' |',$hsh{$key},' |' if isCreated(true) toc '2:[[',getFile(),'][rda_report][Abbreviations]]' =head2 Manifest Information Gathers the Oracle home manifest information. =cut debug ' Inside OAM module, getting Oracle home manifest information \ (can take time)' pretoc '2:Manifest Information' call dsp_manifest(3,$ORACLE_HOME) unpretoc } =head1 COMMON HOME INFORMATION Includes the reports generated by the L module about the common home. =cut toc '%PUSH("%SPLIT%")%' toc '%PUSH("1+:Common Product Home")%' toc '%INCLUDE("OFM_IREQ_OFM_OAM_CH_TF.toc")%' toc '%POP2%' =head1 ORACLE WEBLOGIC SERVER DOMAIN COLLECTIONS It includes all reports produced by the L module for the specified Oracle WebLogic Server domain. =cut toc '%PUSH("%SPLIT%")%' toc '%PUSH("1+:Oracle WebLogic Server Overview")%' toc '%INCLUDE("OFM_WREQ_OFM_OAM_WH_TF.toc")%' toc '%POP2%' toc '%PUSH("%SPLIT%")%' toc '%PUSH("1+:Oracle WebLogic Server Domain")%' toc '%INCLUDE("OFM_WREQ_OFM_OAM_DOM_TF.toc")%' toc '%POP2%' =head1 HCVE When requested, performs the preinstallation checks. =cut if ${B_HCVE_CHECKS} {debug ' Inside OAM module, executing the preinstallation checks' if check(getOsName(),\ 'aix', 'OFM:Aofm1111_aix',\ 'hpux', 'OFM:Aofm1111_hp',\ 'linux', 'OFM:Aofm1111_lin',\ 'solaris', 'OFM:Aofm1111_sol',\ cond(isCygwin(), 'OFM:Aofm1111_win',\ isWindows(), 'OFM:Aofm1111_win')) test TOOL:TLhcve(last) } unpretoc =head1 SEE ALSO L, L, L =begin credits =over 10 =item RDA 4.23: Colin Purdon. =item RDA 4.24: Greg Cook, Andrew Salt. =item RDA 8.04: Wes Root. =back =end credits =head1 COPYRIGHT NOTICE Copyright (c) 2002, 2016, Oracle and/or its affiliates. All rights reserved. =head1 TRADEMARK NOTICE Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners. =cut