× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



At the risk of being pedantic, CALLP is not obsolete; it's just optional in free format RPG, much like EVAL. If you're not coding free format, you have to use CALLP, and you can actually still use it in /free.

As to moving everything to service programs, that's kind of like moving everything to SQL. It's an option, but not necessarily required or even desired in every case. There's nothing structurally wrong with a program call; the operating system does it pretty well, especially when you don't set on LR.

Joe

If you talking about performance of CALL vs CALLP both making a program
there should be no difference at all. CALLP is just interpreted by the
compiler to generate CALL or CALLB code based on what you are calling.

Having said that, you should not be doing either one. CALL, CALLB and CALLP
are all obsolete. What you should be doing is prototyping the program
calls.

d CreateBFile...
d pr ExtPgm('ABCPGM')
d PR_CustomerNumber...
d 8a Const
d PR_Amount...
d 7p 2 Const
/Free

CreateBFile('A0001':
12.50 )

/End-Free

And, of course, if we push it up to the next level, if we are building new
code we shouldn't be doing program calls. We should be encapsulating our
business logic in service programs and making procedure calls.



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

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.