Difference between revisions of "Category:Service Procedures"

From MidrangeWiki
Jump to: navigation, search
(Summary)
(Summary)
Line 1: Line 1:
 
[[Category:Categories]]
 
[[Category:Categories]]
 
==Summary==
 
==Summary==
{{AN}} are the smallest (and only) executable portion of a [[service program]].  This category contains sample service procedures.
+
{{AN}} are the smallest (and only) executable part of a [[service program]].  This category contains sample service procedures.
 
{{stub}}
 
{{stub}}
  

Revision as of 15:57, 12 December 2018

Summary

Service Procedures are the smallest (and only) executable part of a service program. This category contains sample service procedures.

This article is a stub. You can help by editing it.


Justification

There excellent reasons for having service procedures—such as shareability and standardization of business rules. However, some service procedures (minus their error checking) are so small that one might question creating a service procedure at all. They might feel that simply employing the stripped-down code directly within their program code is the best way to go (saving the necessity of calling a separate routine—with the additional overhead that such action would require).

Rule of Thumb
Sometimes, having a service procedure is simply a means of making code more self-documenting (i.e., easier for others to understand).

To wit... Which would you rather see in an RPG program—this?

if %subst(myLongString:%len(myLongString)-4+1:4) = 'TEMP';
// do something
endif;

...or, this?

if GenUtl_RightString(myLongString:4) = 'TEMP';
// do something
endif;

It is the opinion of many that the second form is more readable and is self-documenting. Hence, the reason for some of these very small service procedures.