My PL/I code has the following:
dcl my_output file stream output;
If I had to run this program from a JCL I'd assign a DD to match this 'my_output'. But this program runs online (called from another via plitdli).
Question is: how do I assign the resources (input and output) when the program runs online instead of batch?
Thanks a lot!