Page 1 of 1

call rexx from clist

PostPosted: Tue Aug 01, 2017 10:46 pm
by yarnseeker
how do i call 1 rexxfrom within another clist. I've tried exec but that didn't seem to work.

Re: call rexx from clist

PostPosted: Tue Aug 01, 2017 11:34 pm
by Pedro
Are the rexx program and clist program in the same dataset?

show us your EXEC statement.

Re: call rexx from clist

PostPosted: Tue Aug 01, 2017 11:41 pm
by Pedro
If they are in the same data set, this works:

PROC 0
%HELLOX

Where HELLOX is a simple 'hello world' rexx program.

Re: call rexx from clist

PostPosted: Tue Aug 08, 2017 12:39 am
by yarnseeker
perfect. thanks!