Valid in: | DATA step, PROC SQL, and SCL |
Requirements: | If specified, the locale must be loaded into memory as
part of the locale list.
The character variable that receives the return value must have a minimum length of 52. |
/* Incorrect use of function arguments */ dmsrvBatchJob('jobname');
/* Localhost is used for the host */ dmsrvBatchJob(jobname, '', 21036); /* Correct */
dmsrvBatchJob(jobname, dmsrvhostname, 21036);
/* Incorrect use of function arguments */ dmsrvBatchJob('jobname'); /* Port 21036 or 21037 is used */
dmsrvBatchJob('jobname', dmsrvhostname, 0); /* Correct */
dmsrvBatchJob('jobname', dmsrvhostname, 21036);