# DCedq.ctl:338:Collects Oracle Enterprise Data Quality Information # $Id: DCedq.ctl,v 1.4 2015/10/28 14:21:10 RDA Exp $ # ARCS: $Header: /home/cvs/cvs/RDA_8/src/scripting/lib/collect/OFM/DCedq.ctl,v 1.4 2015/10/28 14:21:10 RDA Exp $ # # Change History # 20151028 MSC Enhance the filtering capabilities. =head1 NAME OFM:DCedq - Collects Oracle Enterprise Data Quality Information =head1 DESCRIPTION This module collects Oracle Enterprise Data Quality-related information. The following reports can be generated and are regrouped under C: =head1 REPORTS =cut echo tput('bold'),'Processing OFM.EDQ module ...',tput('off') # Initialization var $HOME = ${D_HOME:''} var $TOC = '%TOC%' var $TOP = '[[#Top][Back to top]]' pretoc '1:Oracle Enterprise Data Quality' # Define global variables var %DUP var %FLT # Load the common macros run RDA:library() =head1 ORACLE HOME COLLECTIONS =head2 abbr - Abbreviations Displays the RDA abbreviations defined for the Oracle home collection. =cut debug ' Inside EDQ 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 version - Version Information Collects version information. =cut if ?$dir = nvl(testDir('d',catDir($HOME,'oracle.edq')),\ testDir('d',catDir($HOME,'oracle_edq'))) {debug ' Inside EDQ module, gathering version information' report version prefix {write '---+ Oracle Enterprise Data Quality Version Information' write '---## Information Taken from ',encode($fil) } if ?$fil = testFile('fr',catFile($dir,'version.properties')) call writeFile($fil) if isCreated(true) toc '2:[[',getFile(),'][rda_report][Version Information]]' =head2 Configuration Files Collects configuration files. =cut debug ' Inside EDQ module, gathering configuration files' pretoc '2:Configuration Files' call skip_files(catFile($dir,'version.properties')) call sort_files(3,0,grepDir($dir,'\.properties$','dir')) unpretoc } =head1 ORACLE WEBLOGIC SERVER DOMAIN COLLECTIONS Includes the Oracle WebLogic reports generated by the L module. =cut toc '%PUSH("%SPLIT%")%' toc '%PUSH("1+:Oracle WebLogic Server Overview")%' toc '%INCLUDE("OFM_WREQ_OFM_EDQ_WH_TF.toc")%' toc '%POP2%' toc '%PUSH("%SPLIT%")%' toc '%PUSH("1+:Oracle WebLogic Server Domain")%' toc '%INCLUDE("OFM_WREQ_OFM_EDQ_DOM_TF.toc")%' toc '%POP2%' unpretoc =head1 SEE ALSO L, L =begin credits =over 10 =item RDA 8.07: Robert Schweighardt. =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