Micro Focus. Enterprise View. MVS Custom Agent - API

Size: px
Start display at page:

Download "Micro Focus. Enterprise View. MVS Custom Agent - API"

Transcription

1 Micro Focus Enterprise View MVS Custom Agent - API

2 Copyright 2008 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate, but reserves the right to make changes without notice at its sole discretion at any time. The software described in this document is supplied under a license and may be used or copied only in accordance with the terms of such license, and in particular any warranty of fitness of Micro Focus software products for any particular purpose is expressly excluded and in no event will Micro Focus be liable for any consequential loss. Animator, COBOL Workbench, EnterpriseLink, Mainframe Express, Micro Focus, Net Express, REQL and Revolve are registered trademarks, and AAI, Analyzer, Application Server, Application to Application Interface, AddPack, AppTrack, AssetMiner, CCI, DataConnect, Dialog System, Enterprise Server, Enterprise Server with MTO, EuroSmart, FixPack, LEVEL II COBOL, License Server, Mainframe Access, Mainframe Manager, Micro Focus COBOL, Micro Focus Studio, Micro Focus Server, Object COBOL, OpenESQL, Personal COBOL, Professional COBOL, Server Express, SmartFind, SmartFind Plus, SmartFix, SourceConnect, SupportLine, Toolbox, VS COBOL, WebSync, and Xilerator are trademarks of Micro Focus (IP) Ltd. IBM and CICS are registered trademarks, and IMS, DB2, DB2/390, DB2 Connect Enterprise Edition, DB2 Connect Personal Edition, COBOL for OS/390, Enterprise Systems Architecture/390, ESA/390, MVS, MVS/ESA, OS/390, S/390, System/390, VSE/ESA and MFS are trademarks, of International Business Machines Corporation. Netscape Enterprise Server is a trademark of Netscape Communications Corporation. Internet Information Server, Windows 95, Windows 98, Windows NT 4.0, Windows ME and Windows 2000 are registered trademarks of Microsoft Corporation. Pentium is a registered trademark of INTEL Corporation. Borland Database Engine and Midas are trademarks of Inprise Corporation. Oracle is a trademark of Oracle Corporation Inc. UNIX is a registered trademark of The Open Group. Solaris, Ultra Sparc and Java are trademarks of Sun Microsystems, Inc. Linux, GCC compiler, GNU CTAGS, GNU DIFF, Samba and KDE/GNOME refer to Open Source tools. This product includes modified versions of software developed by the Apache Software Foundation (as described on the Apache web site). The YGrep Search Engine is Copyright (c) Yves Roumazeilles. All other trademarks are the property of their respective owners. No part of this publication, with the exception of the software product user documentation contained on a CD-ROM, may be copied, photocopied, reproduced, transmitted, transcribed, or reduced to any electronic medium or machine-readable form without prior written consent of Micro Focus (IP) Ltd. Contact your Micro Focus

3 representative if you require access to the modified Apache Software Foundation source files. Licensees may duplicate the software product user documentation contained on a CD- ROM, but only to the extent necessary to support the users authorized access to the software under the license agreement. Any reproduction of the documentation, regardless of whether the documentation is reproduced in whole or in part, must be accompanied by this copyright statement in its entirety, without modification. U.S. GOVERNMENT RESTRICTED RIGHTS. It is acknowledged that the Software and the Documentation were developed at private expense, that no part is in the public domain, and that the Software and Documentation are Commercial Computer Software provided with RESTRICTED RIGHTS under Federal Acquisition Regulations and agency supplements to them. Use, duplication or disclosure by the U.S. Government is subject to restrictions as set forth in subparagraph (c)(1)(ii) of The Rights in Technical Data and Computer Software clause at DFAR et. seq. or subparagraphs (c)(1) and (2) of the Commercial Computer Software Restricted Rights at FAR , as applicable. Contractor is Micro Focus (IP) Ltd, 9420 Key West Avenue, Rockville, Maryland Rights are reserved under copyright laws of the United States with respect to unpublished portions of the Software.

4 4

5 5 Table of Contents 1. INTRODUCTION ABOUT THIS DOCUMENT WHO SHOULD USE THIS DOCUMENT HOW TO READ THE SYNTAX DIAGRAM APIS FOR INITIAL LOADING KPCCMI STANDARD INTERFACE Hierarchy Syntax diagram Parameter list Returned value Examples Command JCL KPCMANI - CHANGEMAN INTERFACE Hierarchy Syntax diagram Parameter list Returned value Examples Command JCL KPEDVRI - CA-ENDEVOR INTERFACE Hierarchy Syntax diagram Parameter list Returned value Examples Command JCL APIS FOR SYNCHRONIZATION PROCESS KPCCMS STANDARD INTERFACE Hierarchy Syntax diagram Parameter list Returned value Examples Command JCL KPCMANS CHANGEMAN INTERFACE Hierarchy Syntax diagram Parameter list... 21

6 Returned value Examples Command JCL KPEDVRS CA-ENDEVOR INTERFACE Hierarchy Syntax diagram Parameter list Returned value Examples Command JCL APIS FOR SOFTWARE LIFE CYCLE KPCCMU STANDARD INTERFACE Hierarchy Syntax diagram Parameter list Returned value Examples Command JCL KPCMANU - CHANGEMAN INTERFACE Hierarchy Syntax diagram Parameter list Returned value Examples Command JCL KPEDVRU - CA-ENDEVOR INTERFACE Hierarchy Syntax diagram Parameter list Returned value Examples Command JCL GLOSSARY... 36

7 7 1. Introduction This document contains information about the MVS Custom Agent API. You will learn what it does and how to work with it About this document This document provides syntax diagrams and describes the commands and subcommands included in MVS Custom Agents. It provides only reference material and assumes you are experienced in the use of the MVS environment and Enterprise View Who should use this document Anyone who has to create interfaces with MVS Custom Agents should read this document How to read the syntax diagram Syntax is described using the structure defined below. Read the syntax diagrams from left to right, from top to bottom. An italicized lower-case word indicates a variable No characters must be added between the parameter name and the following parenthesis Required items appear in bold text (Text) Optional items appear in normal text (Text) Repeatable items must be separated by a comma (xxx, yyy) The end of the command is indicated by the sequence of characters ( ;\ ) Example P01(<value>); P02(<value>); P03(<value01>,, <value20>,); P04(<value01>,,);\ P01. Is a mandatory parameter P02. Is an optional parameter P03. Is an optional parameter that lets you indicate up to 20 values P04. Is an optional parameter that lets you indicate multiple values ;\. Indicates the end of the command line

8 8

9 9 2. APIs for initial loading The process performs the first load into the AKP. Starting from the CCM component list, the process loads source information in order to inventory the customer software components. If necessary, you should provide a partial list to limit the loading. The output of the process is a list driving the inventory load.

10 KPCCMI Standard interface The standard interface lets you perform the initial load of the customer software. You must invoke the API for each software component in the component list.

11 Hierarchy KPCCMI Syntax diagram NAME(<Value>); LIBRARY(<Value>); EXTENSION(<Value>); DESTINATIONPATH(<Value01>,.., <Value10>,); ALIAS(<Value>); DESCRIPTION(<Value>); OBJECTCODES(<Value01>,.., <Value20>,);\ Parameter list NAME Source name LIBRARY PDS name containing the source EXTENSION Enterprise View extension used to identify the object type DESTINATIONPATH Set of codes used to compose the destination path ALIAS Object name. Only if it is different from the source name DESCRIPTION Description of the sources OBJECTCODES Set of codes related to changes Returned value At the end, the API sets the returned value in RETURN-CODE variable. The returned value could be: 0 Elaboration ended normally 4 Elaboration ended normally. Informative messages issued. 8 Elaboration ended abnormally. Error messages issued Examples Command NAME(KPPGM); LIBRARY(KBB.R53.CBL); EXTENSION(.CBLBAT); DESCRIPTION(Standard interface for software life cycle); DESTINATIONPATH(KBB,R50,CBL,);\ In this example, the custom interface invokes the API KPCCMI passing the command above. The command line indicates that KPPGM is a batch COBOL program and it is stored into the PDS called KBB.R53.CBL. The default reason for changes is 001 (inventory).

12 JCL //KPCCMI JOB (00001),EVZAG,MSGCLASS=A,CLASS=L,NOTIFY=USER, // TIME=NOLIMIT,REGION=0M //JOBLIB DD DISP=SHR,DSN=KBB.RxxPTF.LOAD // DD DISP=SHR,DSN=KBB.Rxx.LOAD // DD DISP=SHR,DSN=DSNxxx.SDSNLOAD // DD DISP=SHR,DSN=CEE.SCEERUN //LIST JCLLIB ORDER=(KBB.RxxPTF.PROC, KBB.Rxx.PROC) 1 2 //RUNPGM EXEC KREXCPGP,PROGRAM=KPCCMI,KENVNAME=KBB.KBTxxA, // KPARM='*CARD' //IMPSRC DD DISP=SHR,DSN=KBB.KBTxxA.IMPSRC //CARDIN DD * NAME(KPPGM); LIBRARY(KBB.R53.CBL); EXTENSION(.CBL); 4 DESCRIPTION(Standard interface for software life cycle); DESTINATIONPATH(KBB,R50,CBL,);\ 3 (//LIST JCLLIB ORDER=(KBB.RxxPTF.PROC, KBB.Rxx.PROC) - Library list of catalogued procedures in order to invoke MVS Custom Agents programs (//RUNPGM EXEC KREXCPGP,PROGRAM=KPCCMI, KENVNAME=KBB.KBTxxA,) - KREXCPGP is the procedure to invoke a MVS Custom Agents program with PARM (//RUNPGM EXEC KREXCPGP,PROGRAM=KPCCMI,KENVNAME=KBB.KBTxxA) Environment name (LIBRARY(KBB.R53.CBL);) API command must be indicated in DD called CARDIN KPCMANI - CHANGEMAN interface The CHANGEMAN interface performs the initial load of the customer software. You must invoke the API for each software component in the component list Hierarchy KPCCMI Standard interface KPCMANI

13 Syntax diagram NAME(<Value>); LIBRARY(<Value>); CMANLIB(<Value>); CMANLNG(<Value>); DESTINATIONPATH(<Value01>,.., <Value10>,); ALIAS(<Value>); DESCRIPTION(<Value>); OBJECTCODES(<Value01>,.., <Value20>,);\ Parameter list NAME Source name LIBRARY PDS name containing the source CMANLIB CHANGEMAN library type. In this case, the KTQCM file must be already loaded, to retrieve the correct extension to apply to the object CMANLNG CHANGEMAN language type. In this case, the KTQCM file must be already loaded, to retrieve the correct extension to apply to the object DESTINATIONPATH Set of codes used to compose the destination path ALIAS Object name. Only if it is different from the source name DESCRIPTION Description of the sources OBJECTCODES Set of codes related to changes Returned value At the end, the API sets the returned value in RETURN-CODE variable. The returned value could be: 0 Elaboration ended normally 4 Elaboration ended normally. Informative messages issued. 8 Elaboration ended abnormally. Error messages issued Examples Command NAME(KPPGM); LIBRARY(KBB.R53.CBL); CMANLIB(PGM); CMANLNG(CBL); DESTINATIONPATH(KBB,R50,CBL,);\ In this example, the custom interface invokes the API KPCMANI passing the command above. The type will be managed by the interface in order to identify the extension based on information stored in KTQCM file. You must load the file to create a link between CHANGEMAN and MVS Custom Agents. The default reason for changes is 001 (inventory).

14 JCL //KPCMANI JOB (00001),EVZAG,MSGCLASS=A,CLASS=L,NOTIFY=USER, // TIME=NOLIMIT,REGION=0M //JOBLIB DD DISP=SHR,DSN=KBB.RxxPTF.LOAD // DD DISP=SHR,DSN=KBB.Rxx.LOAD // DD DISP=SHR,DSN=DSNxxx.SDSNLOAD // DD DISP=SHR,DSN=CEE.SCEERUN //LIST JCLLIB ORDER=(KBB.RxxPTF.PROC, KBB.Rxx.PROC) 1 2 //RUNPGM EXEC KREXCPGP,PROGRAM=KPCMANI,KENVNAME=KBB.KBTxxA, // KPARM='*CARD' //IMPSRC DD DISP=SHR,DSN=KBB.KBTxxA.IMPSRC //CARDIN DD * NAME(KPPGM); LIBRARY(KBB.R53.CBL); EXTENSION(.CBL); 4 DESCRIPTION(Standard interface for software life cycle); DESTINATIONPATH(KBB,R50,CBL,);\ 3 (1) Library list of catalogued procedures in order to invoke MVS Custom Agents programs (2) KREXCPGP is the procedure to invoke a MVS Custom Agents program with PARM (3) Environment name (4) API command must be indicated in DD called CARDIN KPEDVRI - CA-ENDEVOR interface The CA-ENDEVOR interface performs the initial load of customer software. You must invoke the API for each software component in the component list Hierarchy KPCCMI Standard interface KPEDVRI Syntax diagram NAME(<Value>); LIBRARY(<Value>); EDVRTYPE(<Value>); DESTINATIONPATH(<Value01>,.., <Value10>,); ALIAS(<Value>); DESCRIPTION(<Value>); OBJECTCODES(<Value01>,.., <Value20>,);\

15 Parameter list NAME Source name LIBRARY PDS name containing the source EDVRTYPE CA-ENDEVOR object type. In this case, the KTQCM file must be already loaded, to retrieve the correct extension to apply to the object DESTINATIONPATH Set of codes used to compose the destination path ALIAS Object name. Only if it is different from the source name DESCRIPTION Description of the sources OBJECTCODES Set of codes related to changes Returned value At the end, the API sets the returned value in RETURN-CODE variable. The returned value could be: 0 Elaboration ended normally 4 Elaboration ended normally. Informative messages issued. 8 Elaboration ended abnormally. Error messages issued Examples Command NAME(KPPGM); LIBRARY(KBB.R53.CBL); EDVRTYPE(CBLBCH); DESTINATIONPATH(KBB,R50,CBL,);\ In this example, the custom interface invokes the API KPEDVRI passing the command above. The type will be managed by the interface in order to identify the extension based on information stored in KTQCM file. You must load the file to create a link between CA-ENDEVOR and MVS Custom Agents. The default reason for changes is 001 (inventory).

16 JCL //KPEDVRI JOB (00001),EVZAG,MSGCLASS=A,CLASS=L,NOTIFY=USER, // TIME=NOLIMIT,REGION=0M //JOBLIB DD DISP=SHR,DSN=KBB.RxxPTF.LOAD // DD DISP=SHR,DSN=KBB.Rxx.LOAD // DD DISP=SHR,DSN=DSNxxx.SDSNLOAD // DD DISP=SHR,DSN=CEE.SCEERUN //LIST JCLLIB ORDER=(KBB.RxxPTF.PROC, KBB.Rxx.PROC) 1 2 //RUNPGM EXEC KREXCPGP,PROGRAM=KPEDVRI,KENVNAME=KBB.KBTxxA, // KPARM='*CARD' //IMPSRC DD DISP=SHR,DSN=KBB.KBTxxA.IMPSRC //CARDIN DD * NAME(KPPGM); LIBRARY(KBB.R53.CBL); EXTENSION(.CBL); 4 DESCRIPTION(Standard interface for software life cycle); DESTINATIONPATH(KBB,R50,CBL,);\ 3 (1) Library list of catalogued procedures in order to invoke MVS Custom Agents programs (2) KREXCPGP is the procedure to invoke a MVS Custom Agents program with PARM (3) Environment name (4) API command must be indicated in DD named CARDIN

17 17 3. APIs for synchronization process The main process performs the environment update, capturing the source and promoting to the production environment. In some cases, this is not sufficient to find all real changes in the production environment. For example, compilations and changes performed in production environment directly might not be found. The synchronization process provides a report containing all non-aligned information and, in some specific cases, creates the proper actions to manage the situation itself. It uses the list extracted from the CCM to retrieve information about software components. These are transferred to a UNIX or Linux box to compare them with information stored in AKP.

18 KPCCMS Standard interface The standard interface stores information related to software components managed by CCM. You must invoke the API for each software component in the component list.

19 Hierarchy KPCCMS Syntax diagram NAME(<Value>); LIBRARY(<Value>); EXTENSION(<Value>); DESTINATIONPATH(<Value01>,.., <Value10>,); ALIAS(<Value>); USER(<Value>); LSTCHGDT(<Value>); VERSION(<Value>); DESCRIPTION(<Value>); OBJECTCODES(<Value01>,.., <Value20>,);\ Parameter list NAME Source name LIBRARY PDS name containing the source EXTENSION Enterprise View object type DESTINATIONPATH Set of codes used to compose the destination path ALIAS Object name. Only if it is different from the source name USER User identifier. User who made the last changes LSTCGHDT Last date of changes (like DB2 Timestamp format) VERSION Source version DESCRIPTION Description of the sources OBJECTCODES Set of codes related to changes Returned value At the end, the API sets the returned value in RETURN-CODE variable. The returned value could be: 0 Elaboration ended normally 4 Elaboration ended normally. Informative messages issued. 8 Elaboration ended abnormally. Error messages issued Examples Command NAME(KPPGM); LIBRARY(KBB.R53.CBL); EXTENSION(.CBLBAT); DESCRIPTION(Standard interface for software life cycle); DESTINATIONPATH(KBB,R50,CBL,);\ In the example, the custom interface invokes the API KPCCMS passing the command above. The command line indicates that KPPGM is a batch COBOL program; it is stored in the PDS called KBB.R53.CBL.

20 JCL //KPCCMS JOB (00001),EVZAG,MSGCLASS=A,CLASS=L,NOTIFY=USER, // TIME=NOLIMIT,REGION=0M //JOBLIB DD DISP=SHR,DSN=KBB.RxxPTF.LOAD // DD DISP=SHR,DSN=KBB.Rxx.LOAD // DD DISP=SHR,DSN=DSNxxx.SDSNLOAD // DD DISP=SHR,DSN=CEE.SCEERUN //LIST JCLLIB ORDER=(KBB.RxxPTF.PROC, KBB.Rxx.PROC) 1 2 //RUNPGM EXEC KREXCPGP,PROGRAM=KPCCMS,KENVNAME=KBB.KBTxxA, // KPARM='*CARD' //IMPSRC DD DISP=SHR,DSN=KBB.KBTxxA.IMPSRC //CARDIN DD * NAME(KPPGM); LIBRARY(KBB.R53.CBL); EXTENSION(.CBL); 4 DESCRIPTION(Standard interface for software life cycle); DESTINATIONPATH(KBB,R50,CBL,);\ 3 (1) Library list of catalogued procedures in order to invoke MVS Custom Agents programs (2) KREXCPGP is the procedure to invoke a MVS Custom Agents program with PARM (3) Environment name (4) API command must be indicated in DD called CARDIN 3.2. KPCMANS CHANGEMAN interface The CHANGEMAN interface stores information related to software components managed by CCM. You must invoke the API for each software component in the component list Hierarchy KPCMANS Syntax diagram NAME(<Value>); LIBRARY(<Value>); CMANLIB(<Value>); CMANLNG(<Value>); DESTINATIONPATH(<Value01>,.., <Value10>,); ALIAS(<Value>); USER(<Value>); LSTCHGDT(<Value>); VERSION(<Value>); DESCRIPTION(<Value>); OBJECTCODES(<Value01>,.., <Value20>,);\

21 Parameter list NAME Source name LIBRARY PDS name containing the source CMANLIB CHANGEMAN library type. In this case, the KTQCM file must be already loaded, to retrieve the correct extension to apply to the object CMANLNG CHANGEMAN language type. In this case, the KTQCM file must be already loaded, to retrieve the correct extension to apply to the object DESTINATIONPATH Set of codes will be used to compose the destination path ALIAS Object name. Only if it is different from the source name USER User identifier. User who made the last changes LSTCGHDT Last date of changes (like DB2 Timestamp format) VERSION Source version DESCRIPTION Description of the sources OBJECTCODES Set of codes related to changes Returned value At the end, the API sets the returned value in RETURN-CODE variable. The returned value could be: 0 Elaboration ended normally 4 Elaboration ended normally. Informative messages issued. 8 Elaboration ended abnormally. Error messages issued Examples Command NAME(KPPGM); LIBRARY(KBB.R53.CBL); CMANLIB(PGM); CMANLNG(CBL); DESTINATIONPATH(KBB,R50,CBL,);\ In this example, the custom interface invokes the API KPCMANS passing the command above. The type will be managed by the interface in order to identify the extension based on information stored in KTQCM file. You must load the file to create a link between CHANGEMAN and MVS Custom Agents.

22 JCL //KPCMANS JOB (00001),EVZAG,MSGCLASS=A,CLASS=L,NOTIFY=USER, // TIME=NOLIMIT,REGION=0M //JOBLIB DD DISP=SHR,DSN=KBB.RxxPTF.LOAD // DD DISP=SHR,DSN=KBB.Rxx.LOAD // DD DISP=SHR,DSN=DSNxxx.SDSNLOAD // DD DISP=SHR,DSN=CEE.SCEERUN //LIST JCLLIB ORDER=(KBB.RxxPTF.PROC, KBB.Rxx.PROC) 1 2 //RUNPGM EXEC KREXCPGP,PROGRAM=KPCMANS,KENVNAME=KBB.KBTxxA, // KPARM='*CARD' //IMPSRC DD DISP=SHR,DSN=KBB.KBTxxA.IMPSRC //CARDIN DD * NAME(KPPGM); LIBRARY(KBB.R53.CBL); EXTENSION(.CBL); 4 DESCRIPTION(Standard interface for software life cycle); DESTINATIONPATH(KBB,R50,CBL,);\ 3 (1) Library list of catalogued procedures in order to invoke MVS Custom Agents programs (2) KREXCPGP is the procedure to invoke a MVS Custom Agents program with PARM (3) Environment name (4) API command must be indicated in DD called CARDIN 3.3. KPEDVRS CA-ENDEVOR interface The CA-ENDEVOR interface stores information related to software components managed by CCM. You must invoke the API for each software component in the component list Hierarchy KPEDVRS

23 Syntax diagram NAME(<Value>); LIBRARY(<Value>); EDVRTYPE(<Value>); DESTINATIONPATH(<Value01>,.., <Value10>,); ALIAS(<Value>); USER(<Value>); LSTCHGDT(<Value>); VERSION(<Value>); DESCRIPTION(<Value>); OBJECTCODES(<Value01>,.., <Value20>,);\ Parameter list NAME Source nam LIBRARY PDS name containing the source EDVRTYPE CA-ENDEVOR object type. In this case, the KTQCM file must be already loaded, to retrieve the correct extension to apply to the object DESTINATIONPATH Set of codes used to compose the destination path ALIAS Object name. Only if it is different from the source name USER User identifier. User who made the last changes LSTCGHDT Last date of changes (like DB2 Timestamp format) VERSION Source version DESCRIPTION Description of the sources OBJECTCODES Set of codes related to changess Returned value At the end, the API sets the returned value in RETURN-CODE variable. The returned value could be: 0 Elaboration ended normally 4 Elaboration ended normally. Informative messages issued. 8 Elaboration ended abnormally. Error messages issued Examples Command NAME(KPPGM); LIBRARY(KBB.R53.CBL); EDVRTYPE(PGM); DESTINATIONPATH(KBB,R50,CBL,);\ In this example, the custom interface invokes the API KPEDVRS passing the command above. The type will be managed by the interface in order to identify the extension based on information stored in KTQCM file. You must load the file to create a link between CA-ENDEVOR and MVS Custom Agents.

24 JCL //KPEDVRS JOB (00001),EVZAG,MSGCLASS=A,CLASS=L,NOTIFY=USER, // TIME=NOLIMIT,REGION=0M //JOBLIB DD DISP=SHR,DSN=KBB.RxxPTF.LOAD // DD DISP=SHR,DSN=KBB.Rxx.LOAD // DD DISP=SHR,DSN=DSNxxx.SDSNLOAD // DD DISP=SHR,DSN=CEE.SCEERUN //LIST JCLLIB ORDER=(KBB.RxxPTF.PROC, KBB.Rxx.PROC) 1 2 //RUNPGM EXEC KREXCPGP,PROGRAM=KPEDVRS,KENVNAME=KBB.KBTxxA, // KPARM='*CARD' //IMPSRC DD DISP=SHR,DSN=KBB.KBTxxA.IMPSRC //CARDIN DD * NAME(KPPGM); LIBRARY(KBB.R53.CBL); EXTENSION(.CBL); 4 DESCRIPTION(Standard interface for software life cycle); DESTINATIONPATH(KBB,R50,CBL,);\ 3 (1) Library list of catalogued procedures in order to invoke MVS Custom Agents programs (2) KREXCPGP is the procedure to invoke a MVS Custom Agents program with PARM (3) Environment name (4) API command must be indicates into DD named CARDIN

25 25 4. APIs for software life cycle One of the main features that the product provides is up-to-date technical documentation. A process called Software Life Cycle performs the update. The product provides a synchronous process, invoked during the promote phase, and an asynchronous process, which should be scheduled daily. This lets you minimize the impact on customer procedures, and optimize resource usage.

26 KPCCMU Standard interface The standard interface performs the update of the AKP. You must invoke the API for each software component in the component list.

27 Hierarchy KPCCMU Syntax diagram NAME(<Value>); LIBRARY(<Value>); EXTENSION(<Value>); DESTINATIONPATH(<Value01>,.., <Value10>,);ALIAS(<Value>); ISTODELETE(<Value>); REASON(<Value>); DESCRIPTION(<Value>); CHANGECODES(<Value01>,.., <Value20>,); OBJECTCODES(<Value01>,.., <Value20>,);\ Parameter list NAME Source name LIBRARY PDS name containing the source EXTENSION Enterprise View object type DESTINATIONPATH Set of codes will be used to compose the destination path ALIAS Object name. Only if it is different from the source name ISTODELETE Indicates when the object must be removed from the knowledge base. Allowed values are: Y To delete N To process REASON Indicates the reason for changes. Allowed values are: 001 Inventory loading 101 Bug fixing 111 Enhancements project 121 Maintenance activities DESCRIPTION Description of the sources CHANGECODES Set of codes related to changes OBJECTCODES Set of codes related to object Returned value At the end, the API sets the returned value in RETURN-CODE variable. The returned value could be: 0 Elaboration ended normally 4 Elaboration ended normally. Informative messages issued. 8 Elaboration ended abnormally. Error messages issued.

28 Examples Command NAME(KPPGM); LIBRARY(KBB.R53.CBL); EXTENSION(.CBLBAT); DESCRIPTION(Standard interface for software life cycle); DESTINATIONPATH(KBB,R50,CBL,);\ In this example, the CCM invokes the application program interface KPCCMU passing the command above. It stores the change event in IMPSRC. The default reason for changes is 121 (maintenance) JCL //KPCCMU JOB (00001),EVZAG,MSGCLASS=A,CLASS=L,NOTIFY=USER, // TIME=NOLIMIT,REGION=0M //JOBLIB DD DISP=SHR,DSN=KBB.RxxPTF.LOAD // DD DISP=SHR,DSN=KBB.Rxx.LOAD // DD DISP=SHR,DSN=DSNxxx.SDSNLOAD // DD DISP=SHR,DSN=CEE.SCEERUN //LIST JCLLIB ORDER=(KBB.RxxPTF.PROC, KBB.Rxx.PROC) 1 2 //RUNPGM EXEC KREXCPGP,PROGRAM=KPCCMU,KENVNAME=KBB.KBTxxA, // KPARM='*CARD' //IMPSRC DD DISP=SHR,DSN=KBB.KBTxxA.IMPSRC //CARDIN DD * NAME(KPPGM); LIBRARY(KBB.R53.CBL); 4 EXTENSION(.CBL); REASON(101); DESCRIPTION(Standard interface for software life cycle); DESTINATIONPATH(KBB,R50,CBL,);\ 3 (1) Library list of catalogued procedures in order to invoke MVS Custom Agents programs (2) KREXCPGP is the procedure to invoke a MVS Custom Agents program with PARM (3) Environment name (4) API command must be indicates into DD named CARDIN

29 KPCMANU - CHANGEMAN interface The CHANGEMAN interface performs the update of the AKP. You must invoke the API for each software component in the component list Hierarchy KPCMANU Syntax diagram NAME(<Value>); LIBRARY(<Value>); CMANLIB(<Value>); CMANLNG(<Value>); DESTINATIONPATH(<Value01>,.., <Value10>,); ALIAS(<Value>); ISTODELETE(<Value>); REASON(<Value>); DESCRIPTION(<Value>); CHANGECODES(<Value01>,.., <Value20>,); OBJECTCODES(<Value01>,.., <Value20>,);\ Parameter list NAME Source name LIBRARY PDS name containing the source CMANLIB CHANGEMAN library type. In this case, the KTQCM file must be already loaded, to retrieve the correct extension to apply to the object CMANLNG CHANGEMAN language type. In this case, the KTQCM file must be already loaded, to retrieve the correct extension to apply to the object DESTINATIONPATH Set of codes used to compose the destination path ALIAS Object name. Only if it is different from the source name ISTODELETE Indicates when the object must be removed from the knowledge base. Allowed values are: Y To delete N To process REASON Indicates the reason for changes. Allowed values are: 001 Inventory loading 101 Bug fixing 111 Enhancements project 121 Maintenance activities DESCRIPTION Description of the sources CHANGECODES Set of codes related to changes OBJECTCODES Set of codes related to object

30 Returned value At the end, the API sets the returned value in RETURN-CODE variable. The returned value could be: 0 Elaboration ended normally 4 Elaboration ended normally. Informative messages issued. 8 Elaboration ended abnormally. Error messages issued Examples Command NAME(KPPGM); LIBRARY(KBB.R53.CBL); CMANLIB(PGM); CMANLNG(CBL); DESTINATIONPATH(KBB,R50,CBL,);\ In this example, the CCM invokes the application program interface KPCMANU passing the command above. It stores the change event in IMPSRC. The object type will be managed by the interface in order to identify the extension based on information stored in KTQCM file. You must load the configuration file to create a link between CHANGEMAN and MVS Custom Agents. The default reason for changes is 121 (maintenance).

31 JCL //KPCMANU JOB (00001),EVZAG,MSGCLASS=A,CLASS=L,NOTIFY=USER, // TIME=NOLIMIT,REGION=0M //JOBLIB DD DISP=SHR,DSN=KBB.RxxPTF.LOAD // DD DISP=SHR,DSN=KBB.Rxx.LOAD // DD DISP=SHR,DSN=DSNxxx.SDSNLOAD // DD DISP=SHR,DSN=CEE.SCEERUN //LIST JCLLIB ORDER=(KBB.RxxPTF.PROC, KBB.Rxx.PROC) 1 2 //RUNPGM EXEC KREXCPGP,PROGRAM=KPCMANU,KENVNAME=KBB.KBTxxA, // KPARM='*CARD' //IMPSRC DD DISP=SHR,DSN=KBB.KBTxxA.IMPSRC //CARDIN DD * NAME(KPPGM); LIBRARY(KBB.R53.CBL); 4 EXTENSION(.CBL); REASON(101); DESCRIPTION(Standard interface for software life cycle); DESTINATIONPATH(KBB,R50,CBL,);\ 3 (1) Library list of catalogued procedures in order to invoke MVS Custom Agents programs (2) KREXCPGP is the procedure to invoke a MVS Custom Agents program with PARM (3) Environment name (4) API command must be indicated in DD called CARDIN 4.3. KPEDVRU - CA-ENDEVOR interface The CA-ENDEVOR interface performs the update of the AKP. You must invoke the API for each software component in the component list Hierarchy KPEDVRU

32 Syntax diagram NAME(<Value>); LIBRARY(<Value>); EDVRTYPE(<Value>); DESTINATIONPATH(<Value01>,.., <Value10>,); ALIAS(<Value>); ISTODELETE(<Value>); REASON(<Value>); DESCRIPTION(<Value>); CHANGECODES(<Value01>,.., <Value20>,); OBJECTCODES(<Value01>,.., <Value20>,);\ Parameter list NAME Source name LIBRARY PDS name containing the source EDVRTYPE CA-ENDEVOR object type. In this case, the KTQCM file must be already loaded, to retrieve the correct extension to apply to the object DESTINATIONPATH Set of codes used to compose the destination path ALIAS Object name. Only if it is different from the source name ISTODELETE Indicates when the object must be removed from the knowledge base. Allowed values are: Y To delete N To process REASON Indicates the reason for changes. Allowed values are: 001 Inventory loading 101 Bug fixing 111 Enhancements project 121 Maintenance activities DESCRIPTION Description of the sources CHANGECODES Set of codes related to changes OBJECTCODES Set of codes related to objects Returned value At the end, the API sets the returned value in RETURN-CODE variable. The returned value could be: 0 Elaboration ended normally 4 Elaboration ended normally. Informative messages issued. 8 Elaboration ended abnormally. Error messages issued.

33 Examples Command NAME(KPPGM); LIBRARY(KBB.R53.CBL); EDVRTYPE(CBLBAT); DESTINATIONPATH(KBB,R50,CBL,);\ In this example, the CCM invokes the application program interface KPEDVRU passing the command above. It stores the change event in IMPSRC. The object type will be managed by the interface in order to identify the extension based on information stored in KTQCM file. You must load the configuration file to create a link between CA-ENDEVOR and MVS Custom Agents. The default reason for changes is 121 (maintenance) JCL //KPEDVRU JOB (00001),EVZAG,MSGCLASS=A,CLASS=L,NOTIFY=USER, // TIME=NOLIMIT,REGION=0M //JOBLIB DD DISP=SHR,DSN=KBB.RxxPTF.LOAD // DD DISP=SHR,DSN=KBB.Rxx.LOAD // DD DISP=SHR,DSN=DSNxxx.SDSNLOAD // DD DISP=SHR,DSN=CEE.SCEERUN //LIST JCLLIB ORDER=(KBB.RxxPTF.PROC, KBB.Rxx.PROC) 1 2 //RUNPGM EXEC KREXCPGP,PROGRAM=KPEDVRU,KENVNAME=KBB.KBTxxA, // KPARM='*CARD' //IMPSRC DD DISP=SHR,DSN=KBB.KBTxxA.IMPSRC //KTQCM DD DISP=SHR,DSN=KBB.KBTxxA.KTQCM //CARDIN DD * NAME(KPPGM); LIBRARY(KBB.R53.CBL); 4 EXTENSION(.CBL); REASON(101); DESCRIPTION(Standard interface for software life cycle); DESTINATIONPATH(KBB,R50,CBL,);\ 3 (1) Library list of catalogued procedures in order to invoke MVS Custom Agents programs (2) KREXCPGP is the procedure to invoke a MVS Custom Agents program with PARM (3) Environment name (4) API command must be indicates into DD named CARDIN

34 34

35 35

36 36 5. Glossary Change codes are a set of customer codes linked to the changes performed on the sources. For example the enhancement projects, the ticket, the outsourcer and so on. These codes could be used to arrange for specific analysis. Destination path MVS Custom Agent transfers all information about customer software to a UNIX or Linux box where the engine that will perform the analysis is installed. Environment name is the name indicated during the creation environment and is the same one you indicate to connect to the environment. Normally, it corresponds to the library prefix of the environment. Extension Each source is recognized based on its class, type and language provided by the change management tool. During the transfer, the product renames the source adding an extension to identify its classification. Object codes are a set of customer codes linked to the sources. For example the application, subapplication, development team and so on. These codes could be used to maintain specific views called organization views.

37 37

Micro Focus. Data Express. User Guide (Host)

Micro Focus. Data Express. User Guide (Host) 1 Micro Focus Data Express Copyright 2007-2008 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate, but reserves the

More information

Micro Focus. Data Express. Toolkit (Host)

Micro Focus. Data Express. Toolkit (Host) 1 Micro Focus Data Express Copyright 2007-2008 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate, but reserves the

More information

Micro Focus. Enterprise View. Multi Daemon User s Guide. Supported Environments

Micro Focus. Enterprise View. Multi Daemon User s Guide. Supported Environments Micro Focus Enterprise View Supported Environments Copyright 2008 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate,

More information

Micro Focus. Enterprise View. Dynamic Link Process Guide

Micro Focus. Enterprise View. Dynamic Link Process Guide Micro Focus Enterprise View Dynamic Link Process Guide Copyright 2007 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate,

More information

Micro Focus. Enterprise View. Migration Guide

Micro Focus. Enterprise View. Migration Guide Micro Focus Enterprise View Migration Guide Su Copyright 2008 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate, but

More information

Micro Focus. Enterprise View Portal. Report Wizard Guide Step by Step

Micro Focus. Enterprise View Portal. Report Wizard Guide Step by Step Micro Focus Enterprise View Portal Copyright 2008 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate, but reserves the

More information

Micro Focus. Data Express. Process User Guide

Micro Focus. Data Express. Process User Guide Micro Focus Data Express Copyright 2007-2008 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate, but reserves the right

More information

Micro Focus Data Express

Micro Focus Data Express Micro Focus Data Express Copyright 2003-2010 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate, but reserves the right

More information

Micro Focus Data Express

Micro Focus Data Express Micro Focus Data Express Copyright 2003-2010 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate, but reserves the right

More information

Micro Focus. Data Express. Life Cycle User Guide

Micro Focus. Data Express. Life Cycle User Guide Micro Focus Data Express Copyright 2007-2008 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate, but reserves the right

More information

Micro Focus. Data Express. Data Subset Extraction User Guide

Micro Focus. Data Express. Data Subset Extraction User Guide 1 Micro Focus Data Express Copyright 2007-2008 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate, but reserves the

More information

Micro Focus. Data Express. Messages User Guide

Micro Focus. Data Express. Messages User Guide Micro Focus Data Express Copyright 2007-2008 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate, but reserves the right

More information

Micro Focus. Enterprise View. MVS Custom Agent Process Guide

Micro Focus. Enterprise View. MVS Custom Agent Process Guide Micro Focus Enterprise View MVS Custom Agent Process Guide Copyright 2008 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and

More information

Micro Focus Data Express

Micro Focus Data Express Micro Focus Data Express Copyright 2009-2010 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate, but reserves the right

More information

Micro Focus Data Express. Getting Started with Distributed Data Stores

Micro Focus Data Express. Getting Started with Distributed Data Stores Micro Focus Data Express 4 Copyright 2009-2010 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate, but reserves the

More information

Micro Focus. Enterprise View. NLS Guide

Micro Focus. Enterprise View. NLS Guide Micro Focus Enterprise View NLS Guide Copyright 2008 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate, but reserves

More information

Metrics Publishing Utility

Metrics Publishing Utility Metrics Publishing Utility User s Guide Release 1.0 Copyright 2009 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate,

More information

Micro Focus. Enterprise View. Installing Enterprise View

Micro Focus. Enterprise View. Installing Enterprise View Micro Focus Enterprise View Installing Enterprise View Copyright 2010 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate,

More information

Optimal Trace. Enterprise Server User Guide. Release 5.3

Optimal Trace. Enterprise Server User Guide. Release 5.3 Optimal Trace Enterprise Server User Guide Release 5.3 Copyright 2009 Micro Focus (IP) Ltd. All Rights Reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate,

More information

Micro Focus. Data Express. Data Masking User Guide

Micro Focus. Data Express. Data Masking User Guide Micro Focus Data Express Copyright 2007-2008 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate, but reserves the right

More information

Micro Focus. Modernization Workbench. Installing MW Desktop Edition

Micro Focus. Modernization Workbench. Installing MW Desktop Edition Micro Focus Modernization Workbench Installing MW Desktop Edition Copyright 2010 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct

More information

Micro Focus. Data Express. Requirements and Installation Procedures

Micro Focus. Data Express. Requirements and Installation Procedures Micro Focus Data Express Requirements and Installation Procedures Copyright 2007-2008 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is

More information

Edition 1.1 PVCS. Dimensions. Content Manager Integration Guide

Edition 1.1 PVCS. Dimensions. Content Manager Integration Guide Edition 1.1 PVCS Dimensions Content Manager Integration Guide Copyright 2001 MERANT. All rights reserved. Printed in the U.S.A. DataDirect, INTERSOLV, Micro Focus, Net Express and PVCS are registered trademarks,

More information

'LDORJ6\VWHP. Issue 7c, August 2001 &KDUDFWHU0RGH8VHUV*XLGH

'LDORJ6\VWHP. Issue 7c, August 2001 &KDUDFWHU0RGH8VHUV*XLGH 'LDORJ6\VWHP Issue 7c, August 2001 &2%2/ Π'LDORJ6\VWHP &KDUDFWHU0RGH8VHUV*XLGH Copyright 2001 Micro Focus International Limited. All rights reserved. Micro Focus International Limited has made every effort

More information

Issue 8e, March HW([SUHVV Š GLDORJV\VWHPXVHUV JXLGH

Issue 8e, March HW([SUHVV Š GLDORJV\VWHPXVHUV JXLGH 'LDORJ6\VWHP Issue 8e, March 2002 1HW([SUHVV Š GLDORJV\VWHPXVHUV JXLGH Copyright 2002 Micro Focus International Limited. All rights reserved. Micro Focus International Limited has made every effort to

More information

Micro Focus. Modernization Workbench. Getting Started

Micro Focus. Modernization Workbench. Getting Started Micro Focus Modernization Workbench Getting Started Copyright 2010 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate,

More information

Issue 4, March HW([SUHVV Š GDWDEDVHDFFHVV

Issue 4, March HW([SUHVV Š GDWDEDVHDFFHVV 'DWDEDVH$FFHVV Issue 4, March 2002 1HW([SUHVV Š GDWDEDVHDFFHVV Copyright 2002 Micro Focus International Limited. All rights reserved. Micro Focus International Limited has made every effort to ensure that

More information

Oracle Tuxedo Mainframe Adapter for SNA

Oracle Tuxedo Mainframe Adapter for SNA Oracle Tuxedo Mainframe Adapter for SNA Release Notes Release 11g R1 August 2010 Tuxedo Mainframe Adapter for SNA Release Notes, Release 11g R1 Copyright 2007, 2010, Oracle and/or its affiliates. All rights

More information

Mainframe Adapter for TCP

Mainframe Adapter for TCP BEATuxedo Mainframe Adapter for TCP Release Notes Version 8.1 Document Revised: November 14, 2003 Part Number: 830-001005-009 Copyright Copyright 2003 BEA Systems, Inc. All Rights Reserved. Restricted

More information

DevPartner Studio. Installation Guide. Release 9.1.0

DevPartner Studio. Installation Guide. Release 9.1.0 DevPartner Studio Installation Guide Release 9.1.0 DevPartner Studio Professional Edition DevPartner Studio Enterprise Edition DevPartner for Visual C++ BoundsChecker Suite Copyright 2009 Micro Focus (IP)

More information

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need. Installing and Updating Local Software Packages 12c Release

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need. Installing and Updating Local Software Packages 12c Release Oracle Enterprise Manager Ops Center Installing and Updating Local Software Packages 12c Release 12.1.2.0.0 E37233-01 November 2012 This guide provides an end-to-end example for how to use Oracle Enterprise

More information

EView/390z Mainframe Discovery for ServiceNow Discovery for CMDB

EView/390z Mainframe Discovery for ServiceNow Discovery for CMDB EView/390z Mainframe Discovery for ServiceNow Discovery for CMDB Concepts Guide Software Version: 7.2 April 2018 Legal Notices Warranty EView Technology makes no warranty of any kind with regard to this

More information

Oracle Tuxedo Application Runtime for Batch

Oracle Tuxedo Application Runtime for Batch Oracle Tuxedo Application Runtime for Batch Installation Guide 12c Release 1 (12.1.1) August 2012 Oracle Tuxedo Application Runtime for Batch Installation Guide, 12c Release 1 (12.1.1) Copyright 2012,

More information

Adapter for Mainframe

Adapter for Mainframe BEA WebLogic Java Adapter for Mainframe Samples Guide Release 5.1 Document Date: August 2002 Copyright Copyright 2002 BEA Systems, Inc. All Rights Reserved. Restricted Rights Legend This software and

More information

About these Release Notes

About these Release Notes Pro*COBOL Release Notes 18c E84345-01 February 2018 Release Notes About these Release Notes This document contains important information about Pro*COBOL release 18c, version 18.1. It contains the following

More information

Oracle Enterprise Data Quality for Product Data

Oracle Enterprise Data Quality for Product Data Oracle Enterprise Data Quality for Product Data Hardware and Software Specification Release 5.6.2 E24167-01 July 2011 Oracle Enterprise Data Quality for Product Data Hardware and Software Specification

More information

Oracle Enterprise Manager Ops Center. Introduction. Creating Oracle Solaris 11 Zones Guide 12c Release 1 ( )

Oracle Enterprise Manager Ops Center. Introduction. Creating Oracle Solaris 11 Zones Guide 12c Release 1 ( ) Oracle Enterprise Manager Ops Center Creating Oracle Solaris 11 Zones Guide 12c Release 1 (12.1.0.0.0) E27336-01 April 2012 This guide provides an end-to-end example for how to use Oracle Enterprise Manager

More information

Oracle Enterprise Manager Ops Center. Introduction. Creating Oracle Solaris 11 Zones 12c Release 2 ( )

Oracle Enterprise Manager Ops Center. Introduction. Creating Oracle Solaris 11 Zones 12c Release 2 ( ) Oracle Enterprise Manager Ops Center Creating Oracle Solaris 11 Zones 12c Release 2 (12.2.2.0.0) E41230-04 February 2015 This guide provides an end-to-end example for how to use Oracle Enterprise Manager

More information

Oracle Communications Configuration Management

Oracle Communications Configuration Management Oracle Communications Configuration Management Planning Guide Release 7.2 E35436-01 October 2013 Oracle Communications Configuration Management Planning Guide, Release 7.2 E35436-01 Copyright 2011, 2013,

More information

Oracle Utilities Advanced Spatial and Operational Analytics

Oracle Utilities Advanced Spatial and Operational Analytics Oracle Utilities Advanced Spatial and Operational Analytics Release Notes Release 2.4.0.4 E36255-03 December 2012 Oracle Utilities Advanced Spatial and Operational Analytics Release Notes E36255-03 Copyright

More information

Micro Focus. Modernization Workbench. Getting Started

Micro Focus. Modernization Workbench. Getting Started Micro Focus Modernization Workbench Getting Started Copyright 2009 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate,

More information

Oracle Utilities Customer Care and Billing

Oracle Utilities Customer Care and Billing Oracle Utilities Customer Care and Billing Quick Install Guide Release 2.4.0 Service Pack 3 E37713-04 June 2015 Oracle Utilities Customer Care and Billing Installation Guide E37713-04 Copyright 2015 Oracle

More information

Introduction to Auto Service Request

Introduction to Auto Service Request Oracle Enterprise Manager Ops Center Enable and Test Auto Service Request 12c Release 3 (12.3.0.0.0) E59994-01 June 2015 This guide provides an end-to-end example for how to use Oracle Enterprise Manager

More information

StorageTek Enterprise Library Software

StorageTek Enterprise Library Software StorageTek Enterprise Library Software Read Me First Version 7.1 Part Number: E38239-01 November 2012 Submit comments about this document to STP_FEEDBACK_US@ORACLE.COM. ELS 7.1 Read Me First E38239-01

More information

Release for Microsoft Windows

Release for Microsoft Windows [1]Oracle Fail Safe Tutorial Release 4.1.1 for Microsoft Windows E57061-02 April 2015 Oracle Fail Safe Tutorial, Release 4.1.1 for Microsoft Windows E57061-02 Copyright 1999, 2015, Oracle and/or its affiliates.

More information

Oracle GoldenGate for Java

Oracle GoldenGate for Java Oracle GoldenGate for Java Release Notes 11g Release 1 (11.1.1) E18170-01 August 2010 Oracle GoldenGate for Java Release Notes current to 11g Release 1 (11.1.1) E18170-01 Copyright 2008, 2009, 2010 Oracle

More information

Oracle Enterprise Manager Ops Center

Oracle Enterprise Manager Ops Center Oracle Enterprise Manager Ops Center Creating and Administering a Boot Environment for Oracle Solaris 10 12c Release 3 (12.3.1.0.0) E60021 02 December 2015 This guide provides an end-to-end example for

More information

Materials Control Recipe Reduction based on Article Defaults

Materials Control Recipe Reduction based on Article Defaults Materials Control Recipe Reduction based on Article Defaults Copyright by: MICROS-FIDELIO GmbH Europadamm 2-6 D - 41460 Neuss Date: August 31 st 2006 Page 1 of 15 Copyright 2015, Oracle and/or its affiliates.

More information

About these Release Notes. This document contains important information about Pro*COBOL 12c Release 2 (12.2).

About these Release Notes. This document contains important information about Pro*COBOL 12c Release 2 (12.2). Pro*COBOL Release Notes 12c Release 2 (12.2) E85817-01 May 2017 Release Notes About these Release Notes This document contains important information about Pro*COBOL 12c Release 2 (12.2). It contains the

More information

Configuring Oracle Java CAPS Master Index (Repository) Connectivity and Environments

Configuring Oracle Java CAPS Master Index (Repository) Connectivity and Environments Configuring Oracle Java CAPS Master Index (Repository) Connectivity and Environments Part No: 8 9 March 0 Copyright 008, 0, Oracle and/or its affiliates. All rights reserved. License Restrictions Warranty/Consequential

More information

JavaFX. JavaFX System Requirements Release E

JavaFX. JavaFX System Requirements Release E JavaFX JavaFX 2.0.3 System Requirements Release 2.0.3 E20473-03 February 2012 JavaFX/JavaFX 2.0.3 System Requirements, Release 2.0.3 E20473-03 Copyright 2008, 2012, Oracle and/or its affiliates. All rights

More information

Oracle Enterprise Manager Ops Center

Oracle Enterprise Manager Ops Center Oracle Enterprise Manager Ops Center Discover and Manage SPARC T5 Series Servers and SPARC T7 Series Servers 12c Release 3 (12.3.2.0.0) E60000-03 July 2016 This guide provides an end-to-end example for

More information

About the P6 EPPM Importing and Exporting Guide

About the P6 EPPM Importing and Exporting Guide P6 EPPM Importing and Exporting Guide October 2018 Contents About the P6 EPPM Importing and Exporting Guide Scope This guide contains information about import and export formats and the process of importing

More information

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need. Hardware and Software Configuration

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need. Hardware and Software Configuration Oracle Enterprise Manager Ops Center Create Private Networks in a Virtual Datacenter 12c Release 3 (12.3.0.0.0) E60045-01 June 2015 This guide provides an end-to-end example for how to use Oracle Enterprise

More information

Siebel Application Deployment Manager Guide. Version 8.0, Rev. A April 2007

Siebel Application Deployment Manager Guide. Version 8.0, Rev. A April 2007 Siebel Application Deployment Manager Guide Version 8.0, Rev. A April 2007 Copyright 2005, 2006, 2007 Oracle. All rights reserved. The Programs (which include both the software and documentation) contain

More information

Oracle Enterprise Manager. 1 Introduction. System Monitoring Plug-in for Oracle Enterprise Manager Ops Center Guide 11g Release 1 (

Oracle Enterprise Manager. 1 Introduction. System Monitoring Plug-in for Oracle Enterprise Manager Ops Center Guide 11g Release 1 ( Oracle Enterprise Manager System Monitoring Plug-in for Oracle Enterprise Manager Ops Center Guide 11g Release 1 (11.1.3.0.0) E18950-03 November 2011 This document provides describes the System Monitoring

More information

Oracle Utilities Mobile Workforce Management

Oracle Utilities Mobile Workforce Management Oracle Utilities Mobile Workforce Management Quick Install Guide Release 2.0.1 E17821-02 July 2010 Oracle Utilities Mobile Workforce Management Quick Install Guide E17821-02 Copyright 2000, 2010, Oracle

More information

BEAWebLogic. Portal. Getting Started with Autonomy Search

BEAWebLogic. Portal. Getting Started with Autonomy Search BEAWebLogic Portal Getting Started with Autonomy Search Version 8.1 SP5 Document Revised: September 2005 Copyright Copyright 2005 BEA Systems, Inc. All Rights Reserved. Restricted Rights Legend This software

More information

1 Understanding the Cross Reference Facility

1 Understanding the Cross Reference Facility JD Edwards EnterpriseOne Tools Cross Reference Facility Guide Release 9.1 E21485-01 December 2011 The JD Edwards EnterpriseOne Tools Cross Reference Facility Guide contains the following topics: Section

More information

Mainframe Adapter for SNA

Mainframe Adapter for SNA BEATuxedo Mainframe Adapter for SNA Release Notes Version 8.1 Document Revised: November 14, 2003 Part Number: 825-001004-009 Copyright Copyright 2003 BEA Systems, Inc. All Rights Reserved. Restricted

More information

Oracle Linux. UEFI Secure Boot Signing Key Update Notice

Oracle Linux. UEFI Secure Boot Signing Key Update Notice Oracle Linux UEFI Secure Boot Signing Key Update Notice F12070-01 November 2018 Oracle Legal Notices Copyright 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation

More information

Materials Control. Daily Totals. Product Version Daily Totals. Document Title: Joerg Trommeschlaeger

Materials Control. Daily Totals. Product Version Daily Totals. Document Title: Joerg Trommeschlaeger MICROS Product Version 8.8.00.36.1478 : : : Date: 14.08.2014 Version No. of Document: 1.7 Copyright 2015, Oracle and/or its affiliates. All rights reserved. This software and related documentation are

More information

Unified Infrastructure Management Compatibility Matrix June 26, 2015

Unified Infrastructure Management Compatibility Matrix June 26, 2015 Unified Infrastructure Management Compatibility Matrix June 26, 2015 1 Unified Infrastructure Management Compatibility Matrix- CA Technologies Legal Notices Copyright 2013, CA. All rights reserved. Warranty

More information

Oracle Retail MICROS Stores2 Functional Document Sales - Receipt List Screen Release September 2015

Oracle Retail MICROS Stores2 Functional Document Sales - Receipt List Screen Release September 2015 Oracle Retail MICROS Stores2 Functional Document Sales - Receipt List Screen Release 1.36 September 2015 Oracle Retail MICROS Stores2 Functional Document Sales - Receipt List Screen, Release 1.36 Copyright

More information

Creating Resources on the ZFS Storage Appliance

Creating Resources on the ZFS Storage Appliance Oracle Enterprise Manager Ops Center Creating Non-Global Zones Using a SAN Storage Library 12c Release 3 (12.3.0.0.0) E65613-01 October 2015 This guide provides an end-to-end example for how to use Oracle

More information

Recipe Calculation Survey. Materials Control. Copyright by: MICROS-FIDELIO GmbH Europadamm 2-6 D Neuss Date: August 21 st 2007.

Recipe Calculation Survey. Materials Control. Copyright by: MICROS-FIDELIO GmbH Europadamm 2-6 D Neuss Date: August 21 st 2007. Recipe Calculation Survey Materials Control Copyright by: MICROS-FIDELIO GmbH Europadamm 2-6 D - 41460 Neuss Date: August 21 st 2007 Page 1 of 8 Copyright 2015, Oracle and/or its affiliates. All rights

More information

Oracle Enterprise Data Quality. 1 Overview. 2 Prerequisites. Siebel Connector Installation Guide 11g Release 1 ( )

Oracle Enterprise Data Quality. 1 Overview. 2 Prerequisites. Siebel Connector Installation Guide 11g Release 1 ( ) Oracle Enterprise Data Quality Siebel Connector Installation Guide 11g Release 1 (11.1.1.7) E47910-02 October 2013 When integrating a Siebel instance with Oracle Enterprise Data Quality Customer Data Services

More information

SunDual Port 4x QDR IB Host Channel Adapter PCIe ExpressModule

SunDual Port 4x QDR IB Host Channel Adapter PCIe ExpressModule SunDual Port 4x QDR IB Host Channel Adapter PCIe ExpressModule Product Notes Part No. 820-6540-12 April 2010, Revision A Copyright 2009, 2010, Oracle and/or its affiliates. All rights reserved. This software

More information

Oracle Utilities Smart Grid Gateway

Oracle Utilities Smart Grid Gateway Oracle Utilities Smart Grid Gateway Quick Installation Guide Release 2.0.0 Service Pack 9 E20524_09 May 2013 Updated July 2013 Oracle Utilities Smart Grid Gateway Quick Installation Guide E20524_09 Copyright

More information

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need. Creating vservers 12c Release 1 ( )

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need. Creating vservers 12c Release 1 ( ) Oracle Enterprise Manager Ops Center Creating vservers 12c Release 1 (12.1.4.0.0) E27357-02 June 2013 This guide provides an end-to-end example for how to use Oracle Enterprise Manager Ops Center. Introduction

More information

Oracle Cloud Using the Eventbrite Adapter. Release 17.3

Oracle Cloud Using the Eventbrite Adapter. Release 17.3 Oracle Cloud Using the Eventbrite Adapter Release 17.3 E69235-08 September 2017 Oracle Cloud Using the Eventbrite Adapter, Release 17.3 E69235-08 Copyright 2016, 2017, Oracle and/or its affiliates. All

More information

Oracle Cloud Using the Google Calendar Adapter. Release 17.3

Oracle Cloud Using the Google Calendar Adapter. Release 17.3 Oracle Cloud Using the Google Calendar Adapter Release 17.3 E68599-09 October 2017 Oracle Cloud Using the Google Calendar Adapter, Release 17.3 E68599-09 Copyright 2015, 2017, Oracle and/or its affiliates.

More information

GemBuilder for Java Release Notes

GemBuilder for Java Release Notes GemStone GemBuilder for Java Release Notes Version 3.1.3 November 2016 SYSTEMS INTELLECTUAL PROPERTY OWNERSHIP This documentation is furnished for informational use only and is subject to change without

More information

BEAWebLogic. Platform. 8.1 Supported Configurations: Microsoft Windows 2000 Professional on x86

BEAWebLogic. Platform. 8.1 Supported Configurations: Microsoft Windows 2000 Professional on x86 BEAWebLogic Platform 8.1 Supported Configurations: Microsoft Windows 2000 Professional on x86 Version 8.1 Document Revised: October 5, 2005 Copyright Copyright 2005 BEA Systems, Inc. All Rights Reserved.

More information

Nimsoft Monitor. proxy Guide. v3.1 series

Nimsoft Monitor. proxy Guide. v3.1 series Nimsoft Monitor proxy Guide v3.1 series Legal Notices Copyright 2012, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

IBM MQSeries Integrator Agent for CICS Transaction Server Enables MDp Customers to Move to Business Integration

IBM MQSeries Integrator Agent for CICS Transaction Server Enables MDp Customers to Move to Business Integration Software Announcement March 13, 2001 IBM MQSeries Integrator Agent for CICS Transaction Server Enables MDp Customers to Move to Business Integration Overview The MQSeries Integrator Agent for CICS Transaction

More information

Contents Overview... 5 Upgrading Primavera Gateway... 7 Using Gateway Configuration Utilities... 9

Contents Overview... 5 Upgrading Primavera Gateway... 7 Using Gateway Configuration Utilities... 9 Gateway Upgrade Guide for On-Premises Version 17 August 2017 Contents Overview... 5 Downloading Primavera Gateway... 5 Upgrading Primavera Gateway... 7 Prerequisites... 7 Upgrading Existing Gateway Database...

More information

What s New for Oracle Cloud Stack Manager. Topics: July Oracle Cloud. What's New for Oracle Cloud Stack Release

What s New for Oracle Cloud Stack Manager. Topics: July Oracle Cloud. What's New for Oracle Cloud Stack Release Oracle Cloud What's New for Oracle Cloud Stack Release 18.3.2 E83240-17 July 2018 What s New for Oracle Cloud Stack Manager Oracle Cloud Stack Manager is upgraded in Oracle Cloud data centers as soon as

More information

EView/390 Management for HP BSM. Operations Manager I

EView/390 Management for HP BSM. Operations Manager I EView/390 Management for HP BSM Operations Manager I Concepts Guide Software Version: A.07.00 June 2015 Copyright 2015 EView Technology, Inc. Legal Notices Warranty EView Technology makes no warranty of

More information

New Features in Primavera Professional 15.2

New Features in Primavera Professional 15.2 New Features in Primavera Professional 15.2 COPYRIGHT & TRADEMARKS Copyright 2015, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates.

More information

MySQL Port Reference

MySQL Port Reference MySQL Port Reference Abstract This document describes ports used by MySQL products and features in MySQL 5.7 and MySQL 8.0. For legal information, see the Legal Notices. For help with using MySQL, please

More information

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Microsoft BizTalk Server Release 12.1.0.1.0 E28546-04 February 2014 This document provides a brief description about the Microsoft

More information

PeopleSoft Fluid Required Fields Standards

PeopleSoft Fluid Required Fields Standards ORACLE CORPORATION PeopleSoft Fluid Required Fields Standards Fluid User Experience November 2015 PeopleSoft Fluid Required Fields Standards Copyright 2015, Oracle and/or its affiliates. All rights reserved.

More information

Copyright 1998, 2009, Oracle and/or its affiliates. All rights reserved.

Copyright 1998, 2009, Oracle and/or its affiliates. All rights reserved. Clearing Cache COPYRIGHT & TRADEMARKS Copyright 1998, 2009, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names

More information

StorageTek Enterprise Library Software

StorageTek Enterprise Library Software StorageTek Enterprise Library Software Read Me First Version 7.1 Part Number: E38014-01 November 2012 Submit comments about this document to STP_FEEDBACK_US@ORACLE.COM. Read Me First ELS 7.1 E38014-01

More information

Siebel CRM Integration to Oracle FLEXCUBE Universal Banking Implementation Guide. Version 1.0 (Siebel CRM Version 8.2), Rev.

Siebel CRM Integration to Oracle FLEXCUBE Universal Banking Implementation Guide. Version 1.0 (Siebel CRM Version 8.2), Rev. CRM Integration to Universal Banking Implementation Guide Version 1.0 ( CRM Version 8.2), Rev. A December 2011 Copyright 2005, 2011 and/or its affiliates. All rights reserved. This software and related

More information

Oracle Enterprise Manager Ops Center. Overview. What You Need. Create Oracle Solaris 10 Zones 12c Release 3 ( )

Oracle Enterprise Manager Ops Center. Overview. What You Need. Create Oracle Solaris 10 Zones 12c Release 3 ( ) Oracle Enterprise Manager Ops Center Create Oracle Solaris 10 Zones 12c Release 3 (12.3.0.0.0) E60027-01 June 2015 This guide provides an end-to-end example for how to use Oracle Enterprise Manager Ops

More information

Report Management and Editor!

Report Management and Editor! Quickly Find the Right Reports and Build New Reports with the Report Management and Editor! HOW DOES THE REPORT MANAGER AND EDITOR WORK? The Report Manager is a search and preview interface which helps

More information

OIPA System Requirements. Oracle Insurance Policy Administration - Life Release 8.1 E May 2009

OIPA System Requirements. Oracle Insurance Policy Administration - Life Release 8.1 E May 2009 OIPA System Requirements Oracle Insurance Policy Administration - Life Release 8.1 E14444-01 May 2009 Oracle Insurance Policy Administration Release V8.1 Copyright 2009, Oracle. All rights reserved. License

More information

Installing Enterprise Switch Manager

Installing Enterprise Switch Manager Installing Enterprise Switch Manager NN47300-300 Document status: Standard Document version: 0401 Document date: 26 March 2008 All Rights Reserved The information in this document is subject to change

More information

Oracle Cloud Using the Eventbrite Adapter with Oracle Integration

Oracle Cloud Using the Eventbrite Adapter with Oracle Integration Oracle Cloud Using the Eventbrite Adapter with Oracle Integration E85506-05 January 2019 Oracle Cloud Using the Eventbrite Adapter with Oracle Integration, E85506-05 Copyright 2017, 2019, Oracle and/or

More information

Unified Infrastructure Management Compatibility Matrix September 05, 2017

Unified Infrastructure Management Compatibility Matrix September 05, 2017 Unified Infrastructure Management Compatibility Matrix September 05, 2017 1 Unified Infrastructure Management Compatibility Matrix- CA Technologies Legal Notices Copyright 2017, CA. All rights reserved.

More information

Oracle. Engagement Cloud Using Service Request Management. Release 12

Oracle. Engagement Cloud Using Service Request Management. Release 12 Oracle Engagement Cloud Release 12 Oracle Engagement Cloud Part Number E73284-05 Copyright 2011-2017, Oracle and/or its affiliates. All rights reserved. Author: Joseph Kolb This software and related documentation

More information

Oracle Cloud Using the Microsoft Adapter. Release 17.3

Oracle Cloud Using the Microsoft  Adapter. Release 17.3 Oracle Cloud Using the Microsoft Email Adapter Release 17.3 E70297-10 December 2017 Oracle Cloud Using the Microsoft Email Adapter, Release 17.3 E70297-10 Copyright 2016, 2017, Oracle and/or its affiliates.

More information

Embarcadero Change Manager 5.1 Installation Guide. Published: July 22, 2009

Embarcadero Change Manager 5.1 Installation Guide. Published: July 22, 2009 Embarcadero Change Manager 5.1 Installation Guide Published: July 22, 2009 Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco,

More information

Oracle Cloud Using the Evernote Adapter. Release 17.3

Oracle Cloud Using the Evernote Adapter. Release 17.3 Oracle Cloud Using the Evernote Adapter Release 17.3 E69234-07 September 2017 Oracle Cloud Using the Evernote Adapter, Release 17.3 E69234-07 Copyright 2016, 2017, Oracle and/or its affiliates. All rights

More information

OKM Key Management Appliance

OKM Key Management Appliance Oracle Key Manager Network Configuration Guide for OKM and the SL4000 Library E88947-01 July 2017 The SL4000 Modular Library System requires only a single connection to Oracle Key Manager (OKM) rather

More information

BEA WebLogic. Adapter for Siebel. Release Notes

BEA WebLogic. Adapter for Siebel. Release Notes BEA WebLogic Adapter for Siebel Release Notes Release 7.0 Document Date: December 2002 Copyright Copyright 2002 BEA Systems, Inc. All Rights Reserved. Copyright 2002 iway Software. All Rights Reserved.

More information

Defining Constants and Variables for Oracle Java CAPS Environments

Defining Constants and Variables for Oracle Java CAPS Environments Defining Constants and Variables for Oracle Java CAPS Environments Part No: 821 2547 March 2011 Copyright 2008, 2011, Oracle and/or its affiliates. All rights reserved. License Restrictions Warranty/Consequential

More information

Oracle Cloud. Using the Google Calendar Adapter Release 16.3 E

Oracle Cloud. Using the Google Calendar Adapter Release 16.3 E Oracle Cloud Using the Google Calendar Adapter Release 16.3 E68599-05 September 2016 Oracle Cloud Using the Google Calendar Adapter, Release 16.3 E68599-05 Copyright 2015, 2016, Oracle and/or its affiliates.

More information