Batch invocation

A data set must be allocated to the following DD names when invoking the batch utility.

DD name Description
HCDIODFS Source IODF
HCDDECK Generated output data set

For CONFIGxx this must be a data set name of a partitioned data set.

HCDMLOG HCD Message Log data set
HCDCNTL Optional for specifying a list of operating systems, processors, or switches

Not applicable for building CONFIGxx member or JES3 inish data set

HCDTRACE Optional for capturing the trace if trace is activated.

Example 1: 

The following example shows a job to build a configuration data set containing processor configuration PROC1 including its CF connections to processor PROC2.

//BWINJOB  JOB (3259,RZ-28),'BWIN',NOTIFY=BWIN,CLASS=A,
//             MSGCLASS=Q,MSGLEVEL=(1,1),REGION=4M
//*
//* BUILD Processor configuration statement
//*
//BUILD  EXEC PGM=CBDMGHCP,PARM='CONFIG,PR,*'
//HCDIODFS DD   DSN=BWIN.IODF03,DISP=SHR
//HCDDECK  DD   DSN=BWIN.IODF.03.DECKS(PROC1),DISP=SHR
//HCDMLOG  DD   DSN=BWIN.HCD.LOG,DISP=OLD
//HCDCNTL  DD   *
PROC1
PROC2,CF
/*
//

Example 2: 

The following example shows a job to update CONFIG03 in data set SYS1.PARMLIB from processor configuration PROC1, partition LPAR1 and OS configuration MVS1 while saving the existing member under the name CONFBK03.

//BWINJOB  JOB (3259,RZ-28),'BWIN',NOTIFY=BWIN,CLASS=A,
//             MSGCLASS=Q,MSGLEVEL=(1,1),REGION=4M
//*
//* BUILD CONFIGxx
//*
//BUILD  EXEC PGM=CBDMGHCP,PARM='CONFIG,XX,03,PROC1,LPAR1,MVS1,U,CONFBK03'
//HCDIODFS DD   DSN=BWIN.IODF03,DISP=SHR
//HCDDECK  DD   DSN=SYS1.PARMLIB,DISP=SHR
//HCDMLOG  DD   DSN=BWIN.HCD.LOG,DISP=OLD
/*
//