Thank you I tried getting the value as follows, but it does not return any value. %let jobid = %sysget(LSB_JOBID); While i was searching through some blogs, following information was posted by some one %GSUB writes the server JOBID to the WORK.GSUB datasetWORK.GSUBHOLDS A SINGLE JOBID When i tried to get the job as follows, got the error "ERROR: File WORK.GSUB.DATA does not exist" %***get JobID; Data _null_; set gsub; call symputx('jobid', put(jobid,8.)); run; %let jobid=&jobid; are there any settings to be added/changed gridsubmitpgm to get access to WORK.GSUB.DATA Thank you
... View more