I'm trying to capture the LOG data's of the current day with a small snipet but it fails with some errors. Here is the code
and the response that i got./* REXX */
RC=ISFCALLS('ON')
ISFLINELIM="1000"
ADDRESS SDSF "ISFEXEC ISFLOG READ TYPE(SYSLOG)"
SAY RC
DO IX=1 TO ISFMSG2.0
SAY ISFMSG2.IX
END
DO IX=1 TO ISFLINE.0
SAY ISFLINE.IX
END
ISFCALLS('OFF')
Result:
. In this which one states the command position 8 and how to proceed. Can anyone guide me on this. Apologies if i'm wrong.12
ISF302E "ILLEGAL_CHAR" was seen in command position 8 where one of the followin
g was expected: /, QUOTED-STRING, UNQUOTED-STRING.
Thanks
Viswa