Hi All,
I am doing a code in REXX, the Process of which is to find the count of all the "DSN" string in the given dataset and have to do some manipulations based on it.
In my rexx code, I initialised all the things and when i called a subroutine which has the code like the below
CALL cntstrgs
INSIDE THE SUBROUTINE
cntstrgs:
ADDRESS ISPEXEC view DATSET ('USER.XYZ')
addRESS ISREDIT
" F ALL "dsn" 1 12"
(cnt1) = FIND_COUNTS
BUT WHEN I try to view the dataset like above, it throws an error BDISPMAX and ISPP330.
I searched in the forum to resolve this issue,where few recommended to add some libraries.
And based on that suggestions in the old post, I have added all the ISPPLIB, ISPFLIB etc: but yet it throws the same error.
It would be of great help,if you guys provide your suggestion on the above.