× 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.




I have an RPG program which uses a procedure in a service program to
populate fields in the output file based on a key passed to the
procedure.

I may use the same procedure several times in a row to populate
different flags based on various keys, like so:
[SNIP]
CallFlag  = S_MKIUFD_getVerticalFlag(K#Comp:HLJYNB:HLFQNQ:'CAL');
EmailFlag = S_MKIUFD_getVerticalFlag(K#Comp:HLJYNB:HLFQNQ:'EML');
FaxFlag = S_MKIUFD_getVerticalFlag(K#Comp:HLJYNB:HLFQNQ:'FAX');
HTMLFlag = S_MKIUFD_getVerticalFlag(K#Comp:HLJYNB:HLFQNQ:'HTM');
MailFlag = S_MKIUFD_getVerticalFlag(K#Comp:HLJYNB:HLFQNQ:'MAI');
RentFlag = S_MKIUFD_getVerticalFlag(K#Comp:HLJYNB:HLFQNQ:'REN');


What does this subprocedure do, exactly? I know, it "populates fields in an output file based on a key" huh? Does it open/close files? What is it returning? What do you mean by "populates fields in an output file" even?

All I've been able to pick up from your message is that you call a subprocedure, and that you don't like the performance. Okay, great. What does the subprocedure actually do that might affect performance?

I've done some reading on Activation groups in the ILE Reference, but
it's made my head go wobbly.  I'm guessing maybe I should update my
service program and change the shared activation group attribute to
*Yes.

If you compiled the SRVPGM with ACTGRP(*CALLER), then why would activation groups make any difference in performance? Why would a shared activation group help? I'm missing your logic here.

Since ACTGRP(*CALLER) doesn't create an activation group, how can you share it? Why would you want to?

Seems to me that your subprocedure does something that's not efficient enough. Maybe you're opening/closing a file each time, but didn't do that befre you used a subprocedure. Maybe you're using VALUE variables or copying a big piece of data, and that's taking time.

You need to look at the code and figure out what could be slowing you down...

As an Amazon Associate we earn from qualifying purchases.

This thread ...

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.