-
Interfaces Interface Description com.ibm.dbb.build.IExecute2 As of release 2.0.2, useIExecute
.
-
Classes Class Description com.ibm.dbb.build.JCLExec As of release 2.0.1, replaced byJobExec
.Submit a JCL in a member of a data set, or a file on HFS, or an internal memory. Example of usage:
JCLExec exec = new JCLExec() exec.confDir('/var/dbb_1.0.1/conf') def rc = exec.dataset('USER.JCL').member('SAMPLE').execute() println "Job '${exec.getSubmittedJobId()}' was submitted successfully with maxRC = ${exec.maxRC}" exec.getAllDDNames().each({ ddName -> println "DD Name: $ddName" def file = new File("/u/user/sample/${ddName}.output") exec.saveOutput(ddName, file, null) })
-
Fields Field Description com.ibm.dbb.build.ScriptMappings.SCRIPT_MAPPING_KEY - UseDBB_SCRIPT_MAPPING_KEY
-
Constructors Constructor Description com.ibm.dbb.dependency.SearchPathImpactFinder(String, List<String>) As of release 2.0.2, replaced bySearchPathImpactFinder(String, String, List)