|
fkany@xxxxxxxxxxxxxxxxxx wrote: > > Is it possible to define an array variable in a CL program? I have an RPG > program that receives parms(some parms are arrays) and generates a couple > reports. I want to call a CL program that will OVRPRTF the generated > reports to an OUTQ, but I need to pass the array parms into the CL so that > it can execute the RPG program. I've looked in my CL book and CL > programming.pdf's but can't find anything on defining an array. I'm trying > to pass arrays defined as character. I asked a co-worker and they said > something about breaking the array up into fields and passing the all the > new fields. We're at V5R2. > Frank, if the CL just needs to pass on the array parameter, and doesn't actually need to use the array data, you can define the array parameter in CL as anything you want. Parameters are passed to CL by reference, and passed on from CL by reference, meaning that pointers are being passed around. If the CL program isn't ever going to use the parameter value, it doesn't matter what the CL program thinks the parameter-pointer is pointing at. (I usually define pass-through CL parameters as char(1), although that breaks my own rule that says "Never lie to the compiler".)
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.