Incrementing Year Fields in Flat Files to Test Year 2000 Compliance Brian Bouvier, Fireman's Fund Insurance Company, Novato, CA.

Size: px
Start display at page:

Download "Incrementing Year Fields in Flat Files to Test Year 2000 Compliance Brian Bouvier, Fireman's Fund Insurance Company, Novato, CA."

Transcription

1 Incrementing Year Fields in Flat Files to Test Year 2000 Compliance Brian Bouvier, Fireman's Fund Insurance Company, Novato, CA ABSTRACT One critical task to ensure correct handling of dates.in the 21" century is to parallel test SAS" programs that read flat files. In an environment with hundreds of user-written SAS programs each reading a different extract of a master file, ensuring proper parallel testing is a daunting task. This MVSutility allows end-users to "age" their own data whhout requiring knowledge of JCL or the SAS system and is customizable for use with any flat file. Once the year fields have been identified in the flat file, the utilhy increments all the year fields by a user-supplied amount and produces a new fde. This enables the end-user to produce as many versions of the extract as required to completely test their programs for years 1997,1999,2000,2001, and beyond. INTRODUCTION One of the requirements imposed on insurance companies by the various regulatory bodies is to provide various detailed reports showing premium and loss information. Each regulatory body has H's own data requirements that are independent from all of the others. To support these statutory reporting requirements, a collection of several hundred independent reporting programs have been developed using the SAS system. Each of these programs has a first step that selects specific data from the Corporate Master Files using FileAid and a second step that uses the SAS system to creates the actual report. The main test of the ability of these programs to handle dates after 1999 is to "age" or increment the input data as though the current year is 1999, 2000, 2001 or beyond. Many of these programs read the same Input files, but each select and compute with date fields slightly differently. We quickly discovered that it was impractical to create "generic" test data that could sufficiently demonstrate whether each of these programs was compliant with dates later than Also, since many of these programs are maintained by beginning and intermediate SAS users, ft also became clear that any method to create specific test data for each of the programs had to be user-friendly. Our solution was to develop a utllfty written in base SAS that is called by a CUST that prompts for the required information. Requirements We identified the following requirements for this utilfty: Rl The execution of the utility would introduce no change to the original file or record layout. R2 Does not require programming skill to invoke the utility. R3 The utilfty is easily customizable for a variety of fixed record layouts R4 The user will supply number of years to "age" or increment the data when the utility is invoked. R5 The utilhy will produce several "aged" files with different increments easily. R6 Any years in the data not successfully aged should not be changed. R7 The utilhy will provide a summary of unsuccessfully "aged" fields Requirement R5 allows the creation of several "aged" files so that many different future years can be created to completely test the program. Requirements R6 and R7 allow for fields that have missing values or have alphabetic values (such as NONE). DeSign The CLiST that invokes the utilfty and the SAS program statements are included in Figures 1 and 2. Each of the requirements is addressed in the design statements below. For each design statement, the specific requirement(s) being addressed is identified. Special techniques using the SAS system or SAS macros are also shown. 01 The utllfty reads the entire record as 200 byte blocks of character fields, then goes back and reads the year fields for that record. After incrementing the year fields, output the entire record as character fields, then overwrite the positions with the aged years (Rl) INPUT D2 //SAS Notice that the INPUT statement reads the entire record, then specifically, the year BLOCK.!. BL0CK2 PEFFYR PEXPYR TEFFYR DEFFYR DEXPYR ENTYR INCPYR CYCYR $1. A CLiST (see Figure 1) prompts you for Input Data Set Name and Number of Years to increment the date fields. The CLiST invokes the utility. CLiST passes information to the JCL, which passes tt to the SAS system using the SYSPARM option. (R2, R4) The EXEC statement in the JCL invokes the SAS System: The symbolic variable &AGE is obtained by the CLiST. EXEC SASV6, OPTIONS=SYSPARM=&AGE 03 Specify the locations of the year fields in as few places as possible. Use arrays and macro variables when possible. (R3) All of the year fields are specified using SAS Macro variables. Corresponding variables to hold the error counters are also defined. Each year field also appears in the INPUT statement and the OUTPUT statement. D4 Create output files with the same name as input files whh the extension: Y2K##, where ## is the number of years the dates have been incremented. Delete and overwrhe existing output files Irthey exist. (R5) 65

2 D5 The first step of the batch job submitted by the CLiST uses the IBM"' utility IDCAMS to delete the previous output data set if H exists. The symbolic variables passed from the CLiST are used in the output file name in the JCL. //PDAOTJT DD DSN=&INDSN.. Y2K&AGE, Check each position of each year field. If any position Is not numeric, do not change the field. (R6) The function INDEXC Is used to compare each position of each year field with the numbers 0 through 9. If it is not on the list, then flag the error. IF INDEXC(SUBSTR(YR VARS(I),J,1),' B9') = 0 THEN ERRVARS(I) = 1; The next SAS Macro-statements actually perform the Incrementatlon: "LET KODYEAR = KOD(YR_VlIRS( + &AGE,10**LBNGTE(YR ~(I»);*** LEADING ZERO FOR YBlIRS 01, 02, 03, ETC. ***; "LET PADYEAR = COMPRESS (, O' I I &MODYEAR); u* PUT THE YEAR BACK IN THE ORIGINAL FIELD *; YR_VARS(= SUBSTR (&PADYBAR, LENGTE(&PADYEARI-LBNGTB(YR_VlIRS(I+l, LENGTE(YR_VARS(; 06 For each field whh an invalid year, increment an error counter for that field. Provide counts of each invalid field In an error summary report. (R7) After the DATA Step that increments the year fields, the error file is summarized using the SUMMARY procedure and the results are ready to be reviewed. Instructions for use We created a simple procedure to help Insure that each program was tested appropriately: 8. Record time for conversion and completion date in the Y2K project database. DISCLAIMER The "Incrementing Year Fields in Flat Files to Test Year 2000 Compliance" software ("Software") is provided by Fireman's Fund Insurance Company to you on an "AS IS" basis. IN NO WAY SHALL FIREMAN'S FUND INSURANCE COMPANY BE LIABLE TO YOU FOR DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE FURNISHING, PERFORMANCE OR USE OF THE SOFTWARE PROVIDED BY FIREMAN'S FUND INSURANCE COMPANY TO YOU HEREUNDER. You agree to Indemnify and hold Fireman's Fund Insurance Company, Its parent, their subsidiary and affiliated companies, harmless from and against any and all fiabilities, losses, damages, costs and expenses (including reasonable atturneys' fees) associated with any claim or action arising from your possession or use of the Software. SAS is a registered trademark or trademark of SAS Institute Inc. in the USA and other countries. indicates USA registration. Other brand and product names are registered trademarks or trademarks of their respective companies. Brian K. Bouvier Fireman's Fund Insurance Company m San Marin Drive Novato, CA (415) BBouvier@ffic.com BBouyjer@oacbell.ne! 1. Record the life cycle phase as "in progress" in Y2K project database 2. Complete the reports as normal for the customers. Y2K compliance should not impact customer deadlines. 3. Test the unmodified reporting program with test data generated whh the utility using several time periods; e.g. age to 1999, 2000, 2001, If the program generates the same results with each of the test data files, no modifications are required. Mark In the program comments that the unit is Y2K compliant with no changes necessary 5. If the program generates different results with any of the test data sets, program modifications are required. Make required changes in program according to corporate standards. Our standard Is the "rule of 30". If a two-digit year is 30 or less, assign the century to be 20. If a two-digit year is 31 or greater, assign the century to be Test the modified program with the same "aged" data sets used with the unmodified program. Follow steps 4 and 5 until the test is successful. 7. Mark in comments that unit is Y2K compliant with "rule of 30" modifications as the method of compliance. 66

3 PROC 0 I*CONTROL MaG CONLIST LIST NOFLUSB THIS JOB WILL INCREMENT ALL THE YEAR FIELDS IN A PDA FILE ON DISK. USE ONLY THE 320 BYTE POAE.K102.A COMPATIBLE FILES WITH THIS UTILITY. SETIO: + WRITE WRITENR ENTER THE INPUT DATA SET NAME (FULLY QUALIFIED, NO APOSTROPHES) WRITE READ IlDSN ClcrEAR: + WRlTENR ENTER THE NUMBER OF YEARS TO INCREMENT => READ AGE IF (&AGE LT 0) OR (&AGE GT 999) THEN + DO WRITE YEARS TO INCREMENT IS INVALID, TRY AGAIN GOTO CI!KYEAR END &IlDSN.. Y2K&AGE WILL BE CREATED/REPLACED BY THIS JOB CSOS CHAR (K) &STR(/*JOBPAm() 1.=99,7=(0,20),HOID=ALL STEPCAMS EXEC PGM=IDCAMS SYSPRINT DD SYS~ SYSIN DD * &STR ( DELETE) &INDSN. Y2K&AGE PURGE llsas I/WORK llsaslist PDA PDADUT EXEC SASV6,OPTIONS=SYSPARH=&AGE DD SPACE=(6144,(10000,5000) ",ROUND) DD SYSOUT=A DD DS_&INDSN, PDA STRIP FILE DISP=SBR DD DS_&INDSN.. Y2K&AGE, AGED PDA STRIP FILE DISP=(,~TLG,DELETE),UNIT=SYSD@, LlIBEL=RETPD=365, DCB=(RECFH=FB,LRECL=320iBLKSIZ~0), SPACE=(320,(50,20),RLSE), AVGREC=K PRINT DD SYSOUT-~ $ORTPAm( DD * NOLIST *****SYSIN SPECIFIES THE ~TION OF THE UTILITY ********** SYSIN DD DSN=ACS5.SAS.SOURCE(AGEK102), FINIS DISP=SBR Figure 1 - CUST and JCL that invokes the "Incrementing Year Fields" utility_ 67

4 /********************************************************************* PROGRAM trumbl!r : NONE PROGRAM NAME : ACS5.SAS.SOURCE(AGEKl02) INCREMENTING YEAR FIELDS IN FLAT FILES TO TEST YEAR 2000 COMPLIANCE PROGlU>MMER NAKE : BRIAN K. BOWIBR DATE PROGRlIM WRI'l"l'EN: 06/06/97 FUNCTION/BRIEF DESCRIPTION : MACBINE-REMllIBLE RECORD LAYOUT (S) : NONE PARAMETERS PASSED TO THIS PROGRlIM trumbl!r OF YEARS TO AGE PASSED OSING SYSPARM INPUT FILES (INCLUDE DDNAMES) : FDA PDAE.K102.A FORMAT FILE OUTPUT FILES (INCLUDE DDNAKES) : PDAOOT PDAE.K102.A FORMAT FILE EXTERNAL SUBROUTINES CALLED (NAME - FUNCTION) NONE RETOlUI CODES 0'1'BR THAN ZERO (AND INTBRPRETATION) : NONE REVISION DATE : MH/DD/U REVISION REASON/DESCRIPTION REVISOR NAME : *********************************************************************/ OPTIONS SOURCE /* PRINTS THE PROGRAM STATEMENTS TO THE LOG */ PAGENO=l /* SETS FIRST PAGE trumbl!r TO 1 */ LS=79 /* SETS CHARACTERS PER PRINTED LINE */ PS=60; /* SETS LINES PBR PRINTED PAGE */ 'LET AGE=&SYSPARM; 'LET FOOT1-PROGRAM ACS5.SAS.SOORCE(AGEK102); 'LET YR VARS = PEFFYR PEXPYR TEFFYR DEFFYR DEXPYR ENTYR INCPYR CYCYR PEFFYRER PEXPYRER TEFFYRER DEFFYRER DEXPYRER ENTYRER INCPYRER CYCYRER DATA ERRORS /VIEW=ERRORS ; INFILE FDA ; FILE @ BLOCKl $200. BL0CK2 $120. PEFFYR $2. PEXPYR $2. TEFFYR $2. DEFFYR $2. DEXPYR $2. ENTYR $2. INCPYR $2. CYCYR $1. Figure 2a - "Incrementing Year Fields" SAS Source Statements (part 1) 68

5 I************.****ft** ft** 'It **** ft ** *. **** I /* CREATE ARRAYS FOR YEAR AND ERROR VARIABLES **/ 1********* *** *********** *** / ARRAY YR_VARS(*) &YR_VARS 1**** **** * * * * ** * * _*** */ '* CHECK AND INCREMl!NT ALL FIELDS IN ARRAY ** / /**.*************************** *************/ DO 1=1 TO DIM(YR_VARS) ; ERR VARS(I)=O; *** -DETERMINE IF TIlE YEAR FIELDS HAVE VALID NUMBERS **; DO J=1 TO LENGTH (YR VARS (I) ) ; IF INDEXC(SllBSTR(YR VARS(I),J,1), ' ') = 0 TIlEN ERR_VARS(I) = 1; 2ND; *** IF TIlE FIELD BAS ALL~, INCREMENT TIlE FIELD ***; IF ERR VARS(I) = 0 TIlEN DO; 'LET MDDYEAR = MOD(YR_~(I) + &AGE,10**LENGTH(YR_VARS(I»); **. LEADING ZERO FOR YURS 01., 02, 03, 2TC. ***; 'LET PADYEAR = COMFRESS (, 0 ' I I &MODYEAR); *** PUT TIlE COMPUTED YEAR BACK IN TIlE ORIGINAL FIELD *; YR_VARS(I)= SUBSTR(&PADYEAR, LENGTB(&PADYEAR)-LENGTH(YR VARS(I»+1, LENGTB(YR_VARS(I»); - END; END, /********* * ***********.************/ /* OUTPUT THE AGED RECORD TO TIlE FILE **/ 1* ******* * * *** * * * */ BLClCXl. BLOCK2 PEFFYR PEXPYR TEFFYR DEFFYR DEXPYR ENTYR $2. "@238 INCPYR CYCYR $1. PROC SUMMARY DATA=ERRORS Nll'AY MISSING PRINT SCM N MAXDEC=O; VAR &ERR VARS; TITLE1 'DAiE FIELDS NOT INCREMENTED' ; TITLE2 'SUIF OMBER OF RECORDS WITH NON-NtlMERIC VALtlES' ; TITLES 'N= TOTAL OMBER OF RECORDS IN INPUT FILE'; FOOTNOTEl "&FOO'l'l. " ; RUN ;ENDSAS; Figure 2b - "Incrementing Year Fields" SAS Source Statements (part 2) 69

IBM Education Assistance for z/os V2R1

IBM Education Assistance for z/os V2R1 IBM Education Assistance for z/os V2R1 Item: In-Stream Data in JCL Procedures and Includes Element/Component: JES3 Material is current as of June 2013 I n Agenda Trademarks Presentation Objectives Overview

More information

USING SAS SOFTWARE TO COMPARE STRINGS OF VOLSERS IN A JCL JOB AND A TSO CLIST

USING SAS SOFTWARE TO COMPARE STRINGS OF VOLSERS IN A JCL JOB AND A TSO CLIST USING SAS SOFTWARE TO COMPARE STRINGS OF VOLSERS IN A JCL JOB AND A TSO CLIST RANDALL M NICHOLS, Mississippi Dept of ITS, Jackson, MS ABSTRACT The TRANSLATE function of SAS can be used to strip out punctuation

More information

CA JCLCheck Workload Automation

CA JCLCheck Workload Automation CA JCLCheck Workload Automation Release Notes Version 12.0.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Intel Cache Acceleration Software for Windows* Workstation

Intel Cache Acceleration Software for Windows* Workstation Intel Cache Acceleration Software for Windows* Workstation Release 3.1 Release Notes July 8, 2016 Revision 1.3 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS

More information

Upgrading BankLink Books

Upgrading BankLink Books Upgrading BankLink Books Contents Upgrading BankLink Books... 4 Upgrading BankLink Books using the automatic upgrade 4 Upgrading BankLink Books when asked to upgrade 5 Upgrading BankLink Books Page 2 of

More information

Dino Explorer. MVS Data Collector for Mainframe Assessment

Dino Explorer. MVS Data Collector for Mainframe Assessment Dino Explorer MVS Data Collector for Mainframe Assessment Index of contents 1 - Introduction...3 2 - The Installation Guide...4 2.1 Step 1 Copy the dxplload.xmit to MVS...4 2.2 Step 2 Receive XMIT file...6

More information

TERMS OF USE FOR NAT TRAVERSAL FUNCTION TRIAL VERSION

TERMS OF USE FOR NAT TRAVERSAL FUNCTION TRIAL VERSION TERMS OF USE FOR NAT TRAVERSAL FUNCTION TRIAL VERSION THESE TERMS OF USE INCLUDE IMPORTANT LEGAL INFORMATION REGARD- ING YOUR ACCESS AND USE OF THIS FUNCTION. PLEASE READ THEM CARE- FULLY BEFORE PROCEEDING.

More information

Applications Development

Applications Development Paper 48-25 Using Batch MVS SAS To Send Email Via A UNIX Email Server Stephen M. Englert, Dun & Bradstreet Corporation, Murray Hill, NJ ABSTRACT Frequently, there are customers, internal or external to

More information

CA Software Change Manager for Mainframe

CA Software Change Manager for Mainframe CA Software Change Manager for Mainframe Reports Guide r12 This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational

More information

PDSUPDTE. 4. When the length of STRING2 is less than that of STRING1, blanks are inserted after the next pool of two blanks following STRING1.

PDSUPDTE. 4. When the length of STRING2 is less than that of STRING1, blanks are inserted after the next pool of two blanks following STRING1. PDSUPDTE PDSUPDTE is a batch card image tailoring procedure and is designed to change selected fields in JCL and control statements contained in libraries (Partitioned Datasets). Control statements can

More information

FLUENDO GENERIC EULA

FLUENDO GENERIC EULA FLUENDO GENERIC EULA FLUENDO S.A. Avenida Diagonal 579, 8th floor 08014 Barcelona Spain 1 END USER LICENSE AGREEMENT (EULA) FLUENDO LICENSE AGREEMENT BY FLUENDO, S.A. ( FLUENDO ) IMPORTANT - READ CAREFULLY

More information

Optimus.2 Ascend. Rev A August, 2014 RELEASE NOTES.

Optimus.2 Ascend. Rev A August, 2014 RELEASE NOTES. RELEASE NOTES Rev A August, 2014 Optimus.2 Ascend 951 SanDisk Drive, Milpitas, CA 95035 2014 SanDIsk Corporation. All rights reserved www.sandisk.com ESD Caution Handling Static electricity may be discharged

More information

CERTIFIED MAIL LABELS TERMS OF USE and PRIVACY POLICY Agreement

CERTIFIED MAIL LABELS TERMS OF USE and PRIVACY POLICY Agreement CERTIFIED MAIL LABELS TERMS OF USE and PRIVACY POLICY Agreement Welcome to Certified Mail Envelopes and Certified Mail Labels web sites (the Site ) a website, trademark and business name owned and operated

More information

INCLUDING MEDICAL ADVICE DISCLAIMER

INCLUDING MEDICAL ADVICE DISCLAIMER Jordan s Guardian Angels Terms and Conditions of Use INCLUDING MEDICAL ADVICE DISCLAIMER Your use of this website and its content constitutes your agreement to be bound by these terms and conditions of

More information

Debug DB2 COBOL stored procedure with IBM Developer for z Systems and IBM Debug for z Systems v14.1

Debug DB2 COBOL stored procedure with IBM Developer for z Systems and IBM Debug for z Systems v14.1 Debug DB2 COBOL stored procedure with IBM Developer for z Systems and IBM Debug for z Systems v14.1 By Olivier Gauneau - IBM IDz support February 16, 2018 1. CONTENTS 1. Pre-requisite... 2 a. JCL Procs...

More information

E-SRF. Security Signature Analysis. Release EKC Security Reporting Facility GENERAL AVAILABILITY. September 1, 2005 EKC Inc.

E-SRF. Security Signature Analysis. Release EKC Security Reporting Facility GENERAL AVAILABILITY. September 1, 2005 EKC Inc. E-SRF EKC Security Reporting Facility Security Signature Analysis Release 2.1.0 E-SRF V2R1M0 GENERAL AVAILABILITY September 1, 2005 EKC Inc. E-SRF is a proprietary product developed and maintained by EKC

More information

Terms of Use. Changes. General Use.

Terms of Use. Changes. General Use. Terms of Use THESE TERMS AND CONDITIONS (THE TERMS ) ARE A LEGAL CONTRACT BETWEEN YOU AND SPIN TRANSFER TECHNOLOGIES ( SPIN TRANSFER TECHNOLOGIES, STT, WE OR US ). THE TERMS EXPLAIN HOW YOU ARE PERMITTED

More information

JCL MOCK TEST JCL MOCK TEST III

JCL MOCK TEST JCL MOCK TEST III http://www.tutorialspoint.com JCL MOCK TEST Copyright tutorialspoint.com This section presents you various set of Mock Tests related to JCL Framework. You can download these sample mock tests at your local

More information

z/os 2.1 JES2 Symbol Services and Other New Services

z/os 2.1 JES2 Symbol Services and Other New Services z/os 2.1 JES2 Symbol Services and Other New Services Tom Wasik IBM Rochester, MN Thursday 4:30PM Session Number 14257 Trademarks The following are trademarks of the International Business Machines Corporation

More information

Moving a Large SAS System Into an MVS Production Environment The Trials and Tribulations

Moving a Large SAS System Into an MVS Production Environment The Trials and Tribulations Moving a Large SAS System Into an MVS Production Environment The Trials and Tribulations Bernard Gardocki and Stephen Rhoades IMS HEALTH Inc., Plymouth Meeting, Pa ABSTRACT It is not the role, or responsibility

More information

Using a Harness to control execution

Using a Harness to control execution On LinkedIn in July 2018 a question was raised as to the possibility of controlling the execution of a Job Step from within a COBOL program. The case presented was of a three step job where the second

More information

for Freescale MPC55xx/MPC56xx Microcontrollers V2.10 Quick Start

for Freescale MPC55xx/MPC56xx Microcontrollers V2.10 Quick Start for Freescale MPC55xx/MPC56xx Microcontrollers V2.10 Quick Start CodeWarrior Development Studio for MPC55xx/MPC56xx Microcontrollers, version 2.xx Quick Start SYSTEM REQUIREMENTS Hardware Operating System

More information

QUEST Procedure Reference

QUEST Procedure Reference 111 CHAPTER 9 QUEST Procedure Reference Introduction 111 QUEST Procedure Syntax 111 Description 112 PROC QUEST Statement Options 112 Procedure Statements 112 SYSTEM 2000 Statement 114 ECHO ON and ECHO

More information

Workflow Manager Endevor Attachment

Workflow Manager Endevor Attachment Workflow Manager Endevor Attachment Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http:www.microfocus.com Copyright Micro Focus. All rights reserved. MICRO FOCUS, the Micro Focus

More information

Workflow Manager - ENDEVOR Attachment

Workflow Manager - ENDEVOR Attachment Workflow Manager - ENDEVOR Attachment Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright 2013-2014 Micro Focus. All rights reserved. MICRO FOCUS

More information

Chapter 1 RUNNING A SIMPLE JOB. SYS-ED/ Computer Education Techniques, Inc.

Chapter 1 RUNNING A SIMPLE JOB. SYS-ED/ Computer Education Techniques, Inc. Chapter 1 RUNNING A SIMPLE JOB SYS-ED/ Computer Education Techniques, Inc. Objectives You will learn: z/os operating system and resource management. The role and functions of JCL. How to code basic JCL

More information

Transporting files between MVS and MVS or between MVS and a Workstation

Transporting files between MVS and MVS or between MVS and a Workstation Transporting files between MVS and MVS or between MVS and a Workstation author: Lionel B. Dyck Revision 1.207 May 07, 2003 If there is a need to transport any file from the IBM MVS computing systems to

More information

QPP Proprietary Profile Guide

QPP Proprietary Profile Guide Rev. 04 April 2018 Application note Document information Info Content Keywords Proprietary Profile, Server, Client Abstract The Proprietary Profile is used to transfer the raw data between BLE devices.

More information

WRITE SAS CODE TO GENERATE ANOTHER SAS PROGRAM

WRITE SAS CODE TO GENERATE ANOTHER SAS PROGRAM WRITE SAS CODE TO GENERATE ANOTHER SAS PROGRAM A DYNAMIC WAY TO GET YOUR DATA INTO THE SAS SYSTEM Linda Gau, ProUnlimited, South San Francisco, CA ABSTRACT In this paper we introduce a dynamic way to create

More information

IBM Education Assistance for z/os V2R1

IBM Education Assistance for z/os V2R1 IBM Education Assistance for z/os V2R1 Item: PARMDD Element/Component: BCP Scheduler Material is current as of June 2013 Agenda Trademarks Presentation Objectives Overview Usage & Invocation Interactions

More information

H-UC232S USB Serial Converter

H-UC232S USB Serial Converter H-UC232S USB Serial Converter FCC Warning This equipment has been tested and found to comply with the regulations for a Class B digital device, pursuant to Part 15 of the FCC Rules. These limits are designed

More information

Chapter 13. Synchronizing secondary index databases with a DEDB with FPA

Chapter 13. Synchronizing secondary index databases with a DEDB with FPA Chapter 13. Synchronizing secondary index databases with a DEDB with FPA Use the Resync function of FPA to synchronize secondary index databases with their primary DEDB database. Topics: v Functions of

More information

IP Switching Configuring Fast Switching Configuration Guide Cisco IOS Release 15SY

IP Switching Configuring Fast Switching Configuration Guide Cisco IOS Release 15SY IP Switching Configuring Fast Switching Configuration Guide Cisco IOS Release 15SY Configuring Fast Switching 2 Finding Feature Information 2 Information About Configuring Fast Switching 2 How to Configure

More information

Modbus Map: System Control Panel (SCP) Device

Modbus Map: System Control Panel (SCP) Device Modbus Map: System Control Panel (SCP) Device 503-0251-01-01 Revision A.1 UNINTENDED OPERATION WARNING The use of this product with Modbus communications requires expertise in the design, operation, and

More information

Terms & Conditions governing Samsung Smartphone Bundle Offer ( Offer ):

Terms & Conditions governing Samsung Smartphone Bundle Offer ( Offer ): Terms & Conditions governing Samsung Smartphone Bundle Offer ( Offer ): THIS DOCUMENT IS AN ELECTRONIC RECORD IN TERMS OF THE INFORMATION TECHNOLOGY ACT, 2000 AND RULES THERE UNDER AS APPLICABLE. THIS

More information

Managing Device Software Images

Managing Device Software Images Managing Device Software Images Cisco DNA Center 1.1.2 Job Aid Copyright Page THE SPECIFICATIONS AND INFORMATION REGARDING THE PRODUCTS IN THIS MANUAL ARE SUBJECT TO CHANGE WITHOUT NOTICE. ALL STATEMENTS,

More information

MySonicWall Secure Upgrade Plus

MySonicWall Secure Upgrade Plus June 2017 This guide describes how to upgrade a SonicWall or competitor appliance in MySonicWall using the Secure Upgrade Plus feature. Topics: About Secure Upgrade Plus Using Secure Upgrade Plus About

More information

How to Create a.cibd File from Mentor Xpedition for HLDRC

How to Create a.cibd File from Mentor Xpedition for HLDRC How to Create a.cibd File from Mentor Xpedition for HLDRC White Paper May 2015 Document Number: 052889-1.0 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS

More information

INTRODUCTION CHAPTER THE SHOCK OF JCL

INTRODUCTION CHAPTER THE SHOCK OF JCL 9228 Brown/JCL 01.k.qxd 5/1/02 11:39 AM Page 1 CHAPTER 1 INTRODUCTION 1.1 THE SHOCK OF JCL Your first use of JCL (Job Control Language) will be a shock. No doubt you have used personal computers costing

More information

Apple s Works With iphoto 2 Trademark License Agreement

Apple s Works With iphoto 2 Trademark License Agreement Apple s Works With iphoto 2 Trademark License Agreement This Works with iphoto 2 Trademark License Agreement ( Agreement ) is entered into by and between Apple Computer, Inc. at 1 Infinite Loop, Cupertino,

More information

Small Logger File System

Small Logger File System Small Logger File System (http://www.tnkernel.com/) Copyright 2011 Yuri Tiomkin Document Disclaimer The information in this document is subject to change without notice. While the information herein is

More information

How to Create a.cibd/.cce File from Mentor Xpedition for HLDRC

How to Create a.cibd/.cce File from Mentor Xpedition for HLDRC How to Create a.cibd/.cce File from Mentor Xpedition for HLDRC White Paper August 2017 Document Number: 052889-1.2 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE,

More information

An Introduction to SAS Macros

An Introduction to SAS Macros An Introduction to SAS Macros Expanded token SAS Program (Input Stack) SAS Wordscanner (Tokenization) Non-Macro (Tokens) SAS Compiler % and & Triggers Macro Facility Steven First, President 2997 Yarmouth

More information

Terms of Use for companies accessing MyStay Product Database via MyStay API

Terms of Use for companies accessing MyStay Product Database via MyStay API MyStay Product Database and My Stay Application Programming Interface (API) MyStay Product Database is a part of Visit Finland s website www.visitfinland.com. The purpose of the database is to enable the

More information

NOVPEK NetLeap User Guide

NOVPEK NetLeap User Guide NOVPEK NetLeap User Guide Document Number: 001-124-04 Rev. 1.0 1/2017 Property of NovTech, Inc. 2016. All Rights Reserved Contact Information: Home Page: Company: www.novtech.com Modules: www.novsom.com/#/products1/

More information

2013 Intel Corporation

2013 Intel Corporation 2013 Intel Corporation Intel Open Source Graphics Programmer s Reference Manual (PRM) for the 2013 Intel Core Processor Family, including Intel HD Graphics, Intel Iris Graphics and Intel Iris Pro Graphics

More information

Intel Cache Acceleration Software - Workstation

Intel Cache Acceleration Software - Workstation Intel Cache Acceleration Software - Workstation Version 2.7.0 Order Number: x-009 Contents INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED, BY

More information

Installing Service Pack Updater Archive for CodeWarrior Tools (Windows and Linux) Quick Start

Installing Service Pack Updater Archive for CodeWarrior Tools (Windows and Linux) Quick Start Installing Service Pack Updater Archive for CodeWarrior Tools (Windows and Linux) Quick Start SYSTEM REQUIREMENTS Hardware Operating System Disk Space Windows OS: PC with 1 GHz Intel Pentium compatible

More information

JCL MOCK TEST JCL MOCK TEST IV

JCL MOCK TEST JCL MOCK TEST IV http://www.tutorialspoint.com JCL MOCK TEST Copyright tutorialspoint.com This section presents you various set of Mock Tests related to JCL Framework. You can download these sample mock tests at your local

More information

Now Available in z/os V2R2 JES3: OUTDISP

Now Available in z/os V2R2 JES3: OUTDISP Now Available in z/os V2R2 JES3: OUTDISP David Jones IBM JES3 Development August 12, 2015 Session 17599 at 4:30 5:30 PM Trademarks The following are trademarks of the International Business Machines Corporation

More information

Introduction to the SAS/ACCESS Interface to IMS

Introduction to the SAS/ACCESS Interface to IMS 3 CHAPTER 1 Overview of the SAS/ACCESS Interface to IMS Introduction to the SAS/ACCESS Interface to IMS 3 Purpose of the SAS/ACCESS Interface to IMS 3 Using the SAS/ACCESS Interface to IMS 4 How the IMS

More information

In mainframe environment, programs can be executed in batch and online modes. JCL is used for submitting a program for execution in batch mode.

In mainframe environment, programs can be executed in batch and online modes. JCL is used for submitting a program for execution in batch mode. About the Tutorial Job Control Language (JCL) is the command language of Multiple Virtual Storage (MVS), which is the commonly used Operating System in the IBM Mainframe computers. JCL identifies the program

More information

Using Cross-Environment Data Access (CEDA)

Using Cross-Environment Data Access (CEDA) 93 CHAPTER 13 Using Cross-Environment Data Access (CEDA) Introduction 93 Benefits of CEDA 93 Considerations for Using CEDA 93 Alternatives to Using CEDA 94 Introduction The cross-environment data access

More information

orb2 for C/C++ Administrator Guide (z/os)

orb2 for C/C++ Administrator Guide (z/os) orb2 for C/C++ Administrator Guide (z/os) orb2 for C/C++ Administrator Guide (z/os) Subject Platform-specific instructions for installing, configuring and administering orb2. Software Supported orb2 for

More information

Symantec Enterprise Vault

Symantec Enterprise Vault Symantec Enterprise Vault Guide for Microsoft Outlook 2010/2013 Users 11.0 Light Outlook Add-In Symantec Enterprise Vault: Guide for Microsoft Outlook 2010/2013 Users The software described in this book

More information

Data Center Management Systems

Data Center Management Systems Data Center Management Systems The Expert JCL Manager - JED The Future of Automated JCL Management JED Highlights:(Partial list) The JED Process Operating Environments Supported JED Features and Functions

More information

IBM. User s Guide. NetView File Transfer Program Version 2 for MVS. Release 2.1 SH

IBM. User s Guide. NetView File Transfer Program Version 2 for MVS. Release 2.1 SH NetView File Transfer Program Version 2 for MVS IBM User s Guide Release 2.1 SH12-5656-04 NetView File Transfer Program Version 2 for MVS IBM User s Guide Release 2.1 SH12-5656-04 Note! Before using this

More information

Oracle Binary Code License Agreement for Java Secure Sockets Extension for Connected Device Configuration 1.0.2

Oracle Binary Code License Agreement for Java Secure Sockets Extension for Connected Device Configuration 1.0.2 Oracle Binary Code License Agreement for Java Secure Sockets Extension 1.0.3 for Connected Device Configuration 1.0.2 ORACLE AMERICA, INC. ("ORACLE"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND

More information

CA File Master Plus. Release Notes. Version

CA File Master Plus. Release Notes. Version CA File Master Plus Release Notes Version 9.0.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for

More information

Taking advantage of the SAS System on OS/390

Taking advantage of the SAS System on OS/390 Taking advantage of the SAS System on OS/390 Dave Crow Where I m from ---> Final: DUKE 77 UNC 75 The SAS System for OS/390! Getting started with Web Access! What s new in V8 and 8.1 of SAS! What s coming:

More information

Model-Based Design Toolbox

Model-Based Design Toolbox Model-Based Design Toolbox Quick-Start An Embedded Target for the S32K1xx Family of Processors Version 3.0.0 Target Based Automatic Code Generation Tools For MATLAB /Simulink /Stateflow Models working

More information

Summarizing Impossibly Large SAS Data Sets For the Data Warehouse Server Using Horizontal Summarization

Summarizing Impossibly Large SAS Data Sets For the Data Warehouse Server Using Horizontal Summarization Summarizing Impossibly Large SAS Data Sets For the Data Warehouse Server Using Horizontal Summarization Michael A. Raithel, Raithel Consulting Services Abstract Data warehouse applications thrive on pre-summarized

More information

Intel Dynamic Platform and Thermal Framework (Intel DPTF), Client Version 8.X

Intel Dynamic Platform and Thermal Framework (Intel DPTF), Client Version 8.X Intel Dynamic Platform and Thermal Framework (Intel DPTF), Client Version 8.X 8.1.10300.137 PV Release Release Notes March 2015 1 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS.

More information

SDLC INTELLECTUAL PROPERTY POLICY

SDLC INTELLECTUAL PROPERTY POLICY SDLC INTELLECTUAL PROPERTY POLICY Last Revised: 11/14/17 1. Introduction. This Intellectual Property Policy ( Policy ) governs intellectual property rights of the SDL Consortium ( SDLC ) and its Members

More information

Use the Status Register when the firmware needs to query the state of internal digital signals.

Use the Status Register when the firmware needs to query the state of internal digital signals. 1.50 Features Up to 8-bit General Description The allows the firmware to read digital signals. When to Use a Use the when the firmware needs to query the state of internal digital signals. Input/Output

More information

Controller Continuum. for Microcontrollers V6.3. Quick Start

Controller Continuum. for Microcontrollers V6.3. Quick Start Controller Continuum for Microcontrollers V6.3 Quick Start CodeWarrior Development Studio for Microcontrollers V6.x Quick Start SYSTEM REQUIREMENTS Hardware Operating System Disk Space PC with 1 GHz Intel

More information

Extranet Site User Guide for IATA Aircraft Recovery Portal (IARP) (Website Structure)

Extranet Site User Guide for IATA Aircraft Recovery Portal (IARP) (Website Structure) Extranet Site User Guide for IATA Aircraft Recovery Portal (IARP) (Website Structure) Version 5 11 May 2016 Copyright Information DISCLAIMER. The information contained in this publication is subject to

More information

CA Disk Backup and Restore CA RS 1609 Service List

CA Disk Backup and Restore CA RS 1609 Service List CA Disk Backup and Restore 12.5 1 CA RS 1609 Service List Release Service Description Type 12.5 RO90201 ARCHIVE U0100 ABEND DUE TO INCORRECT RCF KEYS PTF RO90374 DINXUFEX EXIT DOES NOT WORK WITH BACKUPCC

More information

USB Serial Converter

USB Serial Converter USB Serial Converter Copyright Statement No part of this publication may be reproduced in any form by any means without the prior written permission. Other trademarks or brand names mentioned herein are

More information

SolarWinds Management Pack Version 2.1

SolarWinds Management Pack Version 2.1 This PDF is no longer being maintained. Search the SolarWinds Success Center for more information. SolarWinds Management Pack Version 2.1 Requirements... 1 Upgrading... 1 Installing the SolarWinds Management

More information

OCTOSHAPE SDK AND CLIENT LICENSE AGREEMENT (SCLA)

OCTOSHAPE SDK AND CLIENT LICENSE AGREEMENT (SCLA) OCTOSHAPE SDK AND CLIENT LICENSE AGREEMENT (SCLA) This is a License Agreement (the "Agreement") for certain code (the Software ) owned by Akamai Technologies, Inc. ( Akamai ) that is useful in connection

More information

CA Application Quality and Testing Tools

CA Application Quality and Testing Tools CA Application Quality and Testing Tools Symbolic Guide Version 9.1.00 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the

More information

Appendix B WORKSHOP. SYS-ED/ Computer Education Techniques, Inc.

Appendix B WORKSHOP. SYS-ED/ Computer Education Techniques, Inc. Appendix B WORKSHOP SYS-ED/ Computer Education Techniques, Inc. 1 ISPF/PDF Environment 1. Log on to ISPF/PDF; different installations have different logon procedures. 1.1. The ISPF/PDF Primary Option Menu

More information

vendor guide CONNECTED DEVICES HELP CONTROL ELECTRICITY USE Smart Meter Connected Devices Service LOOK WHAT YOUR HOME S SMART METER CAN DO FOR YOU

vendor guide CONNECTED DEVICES HELP CONTROL ELECTRICITY USE Smart Meter Connected Devices Service LOOK WHAT YOUR HOME S SMART METER CAN DO FOR YOU vendor guide LOOK WHAT YOUR HOME S SMART METER CAN DO FOR YOU Updated June 2015* CONNECTED DEVICES HELP CONTROL ELECTRICITY USE ComEd is committed to offering information and options to customers so they

More information

Setting up the DR Series System on Acronis Backup & Recovery v11.5. Technical White Paper

Setting up the DR Series System on Acronis Backup & Recovery v11.5. Technical White Paper Setting up the DR Series System on Acronis Backup & Recovery v11.5 Technical White Paper Quest Engineering November 2017 2017 Quest Software Inc. ALL RIGHTS RESERVED. THIS WHITE PAPER IS FOR INFORMATIONAL

More information

SAS Clinical Data Integration Server 2.1

SAS Clinical Data Integration Server 2.1 SAS Clinical Data Integration Server 2.1 User s Guide Preproduction Documentation THIS DOCUMENT IS A PREPRODUCTION DRAFT AND IS PROVIDED BY SAS INSTITUTE INC. ON AN AS IS BASIS WITHOUT WARRANTY OF ANY

More information

USING EXISTING DATASETS

USING EXISTING DATASETS Chapter 2 USING EXISTING DATASETS SYS-ED/ Computer Education Techniques, Inc. Objectives You will learn: Coding DD statement parameters for existing datasets. Coding statements for tape datasets. Concatenating

More information

Symantec Enterprise Security Manager Baseline Policy Manual for CIS Benchmark. AIX 5.3 and 6.1

Symantec Enterprise Security Manager Baseline Policy Manual for CIS Benchmark. AIX 5.3 and 6.1 Symantec Enterprise Security Manager Baseline Policy Manual for CIS Benchmark AIX 5.3 and 6.1 Symantec Enterprise Security Manager Baseline Policy Manual for CIS Benchmark for AIX 5.3 and 6.1 The software

More information

Uni Hamburg Mainframe Summit 2010 z/os The Mainframe Operating. Part 6 z/os Concepts

Uni Hamburg Mainframe Summit 2010 z/os The Mainframe Operating. Part 6 z/os Concepts Uni Hamburg Mainframe Summit 2010 z/os The Mainframe Operating Part 6 z/os Concepts Redelf Janßen IBM Technical Sales Mainframe Systems Redelf.Janssen@de.ibm.com Course materials may not be reproduced

More information

PowerExchange Logger: Changing the Size of the Active Logs

PowerExchange Logger: Changing the Size of the Active Logs PowerExchange Logger: Changing the Size of the Active Logs 2008 Informatica Corporation Overview For PowerExchange Change Data Capture (CDC) data sources on MVS, the PowerExchange Logger writes captured

More information

Symantec Enterprise Security Manager Baseline Policy Manual for Security Essentials. Solaris 10

Symantec Enterprise Security Manager Baseline Policy Manual for Security Essentials. Solaris 10 Symantec Enterprise Security Manager Baseline Policy Manual for Security Essentials Solaris 10 Symantec ESM Baseline Policy Manual for Security Essentials for Solaris 10 The software described in this

More information

Modbus Map: Conext System Control Panel (SCP) Device

Modbus Map: Conext System Control Panel (SCP) Device Modbus Map: Conext System Control Panel (SCP) Device 503-0251-01-01 Revision A.3 UNINTENDED OPERATION WARNING The use of this product with Modbus communications requires expertise in the design, operation,

More information

True Scale Fabric Switches Series

True Scale Fabric Switches Series True Scale Fabric Switches 12000 Series Order Number: H53559001US Legal Lines and Disclaimers INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED,

More information

Cisco ASR 9000 Series Aggregation Services Router Netflow Command Reference, Release 4.3.x

Cisco ASR 9000 Series Aggregation Services Router Netflow Command Reference, Release 4.3.x Cisco ASR 9000 Series Aggregation Services Router Netflow Command Reference, Release 4.3.x First Published: 2012-12-01 Last Modified: 2013-05-01 Americas Headquarters Cisco Systems, Inc. 170 West Tasman

More information

CA TLMS Tape Management CA RS 1404 Service List

CA TLMS Tape Management CA RS 1404 Service List CA TLMS Tape Management 12.6 1 CA RS 1404 Service List Release Service Description Hiper 12.6 RO64006 CAG8259E OR CAT9999E ISSUED WITH TQS INSTALLED. RO64267 TLMS016 INCORRECT RULE TYPE FOR RULES WITH

More information

A-LOG. User s Manual. Version 3.8

A-LOG. User s Manual. Version 3.8 A-LOG User s Manual Version 3.8 Manual Order Number: ALG-380-020-1 This manual is applicable to A-LOG product at Version 3.8 release level. Unless otherwise stated in new editions of this manual or A-LOG

More information

Is Now Part of To learn more about ON Semiconductor, please visit our website at

Is Now Part of To learn more about ON Semiconductor, please visit our website at Is Now Part of To learn more about ON Semiconductor, please visit our website at www.onsemi.com ON Semiconductor and the ON Semiconductor logo are trademarks of Semiconductor Components Industries, LLC

More information

Intel Open Source HD Graphics Programmers' Reference Manual (PRM)

Intel Open Source HD Graphics Programmers' Reference Manual (PRM) Intel Open Source HD Graphics Programmers' Reference Manual (PRM) Volume 13: Memory-mapped Input/Output (MMIO) For the 2014-2015 Intel Atom Processors, Celeron Processors and Pentium Processors based on

More information

MERIDIANSOUNDINGBOARD.COM TERMS AND CONDITIONS

MERIDIANSOUNDINGBOARD.COM TERMS AND CONDITIONS MERIDIANSOUNDINGBOARD.COM TERMS AND CONDITIONS Introduction This document sets forth the terms and conditions ("Terms and Conditions") governing your use of the MeridianHealth.com Web site ("Web Site")

More information

VSAM Overview. Michael E. Friske Fidelity Investments. Session 11681

VSAM Overview. Michael E. Friske Fidelity Investments. Session 11681 VSAM Overview Michael E. Friske Fidelity Investments Session 11681 This Is a VSAM Overview Session This session is intended for those who know very little or nothing about VSAM. I will provide some basic

More information

MTIM Driver for the MC9S08GW64

MTIM Driver for the MC9S08GW64 Freescale Semiconductor Application Note Document Number: AN4160 Rev. 0, 8/2010 MTIM Driver for the MC9S08GW64 by: Tanya Malik Reference Design and Applications Group India IDC MSG NOIDA 1 Introduction

More information

BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding)

BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding) BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding) CLAUSE 13 ON-LINE BIDDING 13.1 ON-LINE BIDDING.1 Definitions: Owner means the party and/or their agent designated to receive on-line

More information

MS15: MQSeries for MVS/ESA Archive log housekeeping Version 1.1. User Guide. Document Number MS15. November 7, 2002

MS15: MQSeries for MVS/ESA Archive log housekeeping Version 1.1. User Guide. Document Number MS15. November 7, 2002 MS15: MQSeries for MVS/ESA Archive log housekeeping Version 1.1 User Guide Document Number MS15 November 7, 2002 Pete Siddall IBM UK Laboratories Ltd. Hursley Park email: pete_siddall@uk.ibm.com Take Note!

More information

What s New in SYSTEM 2000 Software for Version 1

What s New in SYSTEM 2000 Software for Version 1 What s New in SYSTEM 2000 Software for Version 1 SYSTEM 2000 Development and Technical Support E-mail: s2k@sas.com SAS Publishing The correct bibliographic citation for this manual is as follows: SAS Institute

More information

Introduction to VSAM. Session Presented by Michael E. Friske

Introduction to VSAM. Session Presented by Michael E. Friske Introduction to VSAM Session 12994 Presented by Michael E. Friske 1 Exactly What Is VSAM? Is it a mysterious black cloud? 2 3 Does VSAM Confuse, Frustrate, or Overwhelm You? VSAM - The Acronym V irtual

More information

Mainstar : Backup & Recovery Manager Suite

Mainstar : Backup & Recovery Manager Suite Mainstar : Backup & Recovery Manager Suite to Installation & Maintenance Guide SC23-6066-00 November 2006 Mainstar Software Corporation P.O. Box 4132 Bellevue, WA 98009 USA Tel 1-425-455-3589 Fax 1-425-455-1992

More information

Electric Sample Form No Agreement for Unmetered Low Wattage Equipment Connected to Customer-Owned Street Light Facilities

Electric Sample Form No Agreement for Unmetered Low Wattage Equipment Connected to Customer-Owned Street Light Facilities Pacific Gas and Electric Company San Francisco, California U 39 Revised Cal. P.U.C. Sheet No. 32135-E Cancelling Revised Cal. P.U.C. Sheet No. 27053-E Electric Sample Form No. 79-1048 Agreement for Unmetered

More information

DFSMS:Intermediate NaviQuest Streamlining SMS Work

DFSMS:Intermediate NaviQuest Streamlining SMS Work DFSMS:Intermediate NaviQuest Streamlining SMS Work Neal Bohling DFSMS Defect Support, IBM August 14, 2013 Session# 14157 Insert Custom Session QR if Desired. Goal of this Presentation / Agenda Provide

More information

HYCU SCOM Management Pack for F5 BIG-IP

HYCU SCOM Management Pack for F5 BIG-IP USER GUIDE HYCU SCOM Management Pack for F5 BIG-IP Product version: 5.5 Product release date: August 2018 Document edition: First Legal notices Copyright notice 2015-2018 HYCU. All rights reserved. This

More information

Intel Open Source HD Graphics, Intel Iris Graphics, and Intel Iris Pro Graphics

Intel Open Source HD Graphics, Intel Iris Graphics, and Intel Iris Pro Graphics Intel Open Source HD Graphics, Intel Iris Graphics, and Intel Iris Pro Graphics Programmer's Reference Manual For the 2015-2016 Intel Core Processors, Celeron Processors, and Pentium Processors based on

More information