Previous Topic: Checkpoint Checker List Panel

Next Topic: Generate an Output List

Job APCKJCPT - Export Checkpoint Information

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.

MODE=n

Enter an E for export or an L for list. The default is E.

JOBNAME=name

Enter a fully qualified job name or a generic name by using the underscore (_) as a wildcard.

PGMNAME=name

Enter a fully qualified program name or a generic name by using the underscore (_) as a wildcard.

ELAPSED-TIME>=

Enter the session duration in minutes, 1 - 9999, to export data with an elapsed time greater than or equal to this amount.

IMPORTANCE>=

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