|
You could let the OS pass the parms correctly by creating a command which calls you CL program. Then in your RPG II string the command together then execute the command via QCMDEXC.
RPG II always defines numbers as zoned decimal, and QCMDEXC expects a 15,5 packed parameter. That makes it tricky to use from RPG II.
The other problem with using QCMDEXC is that you can't receive values back in the parameters. Frequently when people call native programs from RPG II, they do it so that they can write some code in a modern language, but return the results back to a legacy program. QCMDEXC makes this impossible, since it can't return anything (at least, not directly)
So, I don't understand why you'd recommend QCMDEXC in this situation. If you have to monkey around with converting the zoned decimal numbers to packed numbers, anyway, why not just call the CL program directly?
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.