To export Checkpoint information from the database, use job APCKJCPT. This job creates a list or a file that can be exported for use in other systems; for example, EXCEL, or SAS. The data is exported from the database to a sequential file that can be used in other mainframe systems or file transferred to the PC.
//JOBCARD... //******************************************************************** //* PMA: APCBJCPT * //* MAINTENANCE: PMA TEAM * //* ACTION: CREATION OF A CHECK POINT LIST WITH USER SELECTION * //* FUNCTION: LIST OF EXPORT FILE WILL BE CREATED * //*------------------------------------------------------------------* //* COPYRIGHT (C) 2011 CA. All Rights Reserved. * //* Copyright (C) Trilog AG * //******************************************************************** //STEPTAB EXEC PGM=APCBACPT //* //STEPLIB DD DSN=prefix.PMA.LOAD, // DISP=SHR //APCIN DD DSN=prefix.PMA.CNTL(APCKCCPT), // DISP=SHR //APCBJOB1 DD DSN=prefix.PMA.KSDSJOB, // DISP=SHR //APCREP DD SYSOUT=* //APCEREP DD SYSOUT=*
The scope of the data to be exported must be defined by using input parameters in member APCKCCPT of the product CNTL library. These parameters are described in the following table. All parameters are combined with a logical AND.
Enter an E for export or an L for list. The default is E.
Enter a fully qualified job name or a generic name by using the underscore (_) as a wildcard.
Enter a fully qualified program name or a generic name by using the underscore (_) as a wildcard.
Enter the session duration in minutes, 1 - 9999, to export data with an elapsed time greater than or equal to this amount.
Enter the calculated importance, 1 - 9999, to export data with an importance greater than or equal to this amount.
The following example shows how to use the APCKCCPT parameters:
MODE=E JOBNAME=__R_____ PGMNAME=APC____ ELAPSED-TIME>=30 IMPORTANCE>=10
The following example shows Checkpoint Checker export parameters:
MODE=E JOBNAME=__R_____ PGMNAME=APC____ ELAPSED-TIME>=30 IMPORTANCE>=10
| Copyright © 2011 CA. All rights reserved. | Tell Technical Publications how we can improve this information |