5 pts.
 RPG free form
Need to do a straight call, not a callp, is there a way to do this in free form?

Software/Hardware used:
ASKED: August 15, 2008  2:05 PM
UPDATED: August 18, 2008  2:45 PM

Answer Wiki:
Hello, Website with how to use the Free Form... http://search400.techtarget.com/tip/0,289483,sid3_gci1220190,00.html# ********************* To do a program or procedure call in /Free, you must use a prototyped call. Although this may initially seem like more effort, it's really pretty straightforward once you understand how to set it up. It has some advantages, and is the modern way of calling a program or procedure. <pre>CALLP SomeProcedure(Parameter1: Parameter2);</pre> You can even omit the CALLP operation code, as it isn't necessary. <pre>SomeProcedure(Parameter1: Parameter2);</pre> And it allows you to assign the return value of a procedure to a variable, making for a cleaner syntax: <pre>SomeVariable = SomeProcedure(Parameter1: Parameter2) ;</pre> CWC
Last Wiki Answer Submitted:  August 18, 2008  2:45 pm  by  Tpinky   4,165 pts.
All Answer Wiki Contributors:  Tpinky   4,165 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _