|
Jeff,shipped
Two questions...
1) What are you doing with the 35 fields
2) Are the 35 fields used in more than one place?
If you're performing business logic on the fields, consider putting
into it's own procedure in the file(s) service program.
Otherwise, say you're just outputting to a screen or report...and
these 35 are commonly used together then just have a DS that contains
the 35 fields.
HTH,
Charles
On Mon, Mar 1, 2010 at 12:28 PM, Jeff Crosby <jlcrosby@xxxxxxxxxxxxxxxx>
wrote:
Question on this approach:
What do you do when you need 35 or so fields from the item file?
I'm in program A. I have the item number. I need brand, pack, size,
description, category, class, last receipt date, qty received
today/WTD/MTD/YTD, qty on hand, qty reserved, last ship date, qty
thosetoday/WTD/MTD/YTD, vendor, vendor item number, etc, etc, etc. Do youhave
35 lines in Program A calling 35 $get... procedures? Do then put
35data.
$get... statements into a single procedure in Program A?kurt.anderson@xxxxxxxxxxxxxx
Thanks.
On Mon, Mar 1, 2010 at 11:36 AM, Kurt Anderson <
(with awrote:
Passing a data structure isn't heavy if it's passed by reference.
Personally, I create $get... and $set... procedures for every field
utility so it's not super time intensive to code).
In this way, I perceive the service program as kind of a cloud of
Iseems
rpg400-l-bounces@xxxxxxxxxxxx]reach up into the cloud when I need something.
-Kurt
-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx [mailto:
thenOn Behalf Of Bryce Martin
Sent: Monday, March 01, 2010 10:07 AM
To: RPG programming on the IBM i / System i
Subject: Re: File Read in Subprocedure WAS(Re: More on RPG style)
So if I use a procedure in a seperate service program to do the read
I have to pass a datastructure of all the fields basically? That
havelong?quite heavy doesn't it? Or do you have a param list that is a mile
correct?The read doesn't carry into the main line or to other procedures
Thanks
Bryce Martin
Programmer/Analyst I
570-546-4777
BMay@xxxxxxxxx
Sent by: rpg400-l-bounces@xxxxxxxxxxxx
03/01/2010 10:11 AM
Please respond to
RPG programming on the IBM i / System i <rpg400-l@xxxxxxxxxxxx>
To
RPG programming on the IBM i / System i <rpg400-l@xxxxxxxxxxxx>
cc
Subject
Re: File Read in Subprocedure WAS(Re: More on RPG style)
Bryce,
I have service programs doing exactly what you mention. What you
toparameter
do is have another procedure to do the setll (or maybe just a
flag). Also, you need to pass the data back and forth as parameters.
Brian May
Project Lead
Management Information Systems
Garan, Incorporated
Starkville, Mississippi
Bryce Martin <BMartin@xxxxxxxxxxxx>
Sent by: rpg400-l-bounces@xxxxxxxxxxxx
03/01/2010 09:07 AM
Please respond to
RPG programming on the IBM i / System i <rpg400-l@xxxxxxxxxxxx>
To
RPG programming on the IBM i / System i <rpg400-l@xxxxxxxxxxxx>
cc
Subject
File Read in Subprocedure WAS(Re: More on RPG style)
I like the readability of the dow ReadFile(); approach. But if I was
filedo that I'd want to have a service program that has all my file read
subprocedures together, that way I would only ever have to code the
can'tread 1 time for any given file or logical. Is this possible? I
willthink that it is, but maybe I'm wrong. If I setll in my program,
youthat translate over to an exported procedure call?
Thanks
Bryce Martin
Programmer/Analyst I
570-546-4777
rob@xxxxxxxxx
Sent by: rpg400-l-bounces@xxxxxxxxxxxx
03/01/2010 08:53 AM
Please respond to
RPG programming on the IBM i / System i <rpg400-l@xxxxxxxxxxxx>
To
RPG programming on the IBM i / System i <rpg400-l@xxxxxxxxxxxx>
cc
Subject
Re: More on RPG style
No, you're right. It's an evolutionary process.
First there was subroutines, and they were ok.
And a branch off of the evolutionary ladder was called programs, if
the(mightcame from the S/36 family tree you can remember NOT having them.
Then there was subprocedures and they are good. Local variables and
making your own bifs are good. Being able to pass in a number of
variables and getting a return variable helped to clarify.
Then there was service programs. Move your subprocedures to there
want to dispose of those global variables). This allows you to get
othermodularization of called programs but keep the bif type look and
doesn't.advantages.
Besides, I find this more readable
setll myfile;
dow ReadMyfile();
// process row
...
if recid<>'A';
iter;
endif;
EndDo;
Than
setll myfile;
read myfile; // priming read
dow not %eof(myfile);
// process row
if recid<>'A';
iter;
endif;
read myfile;
EndDo;
That, and the second example has an infinite loop while the first
could.And, if you want to move the recid <>'A' logic into ReadMyfile you
And, if you wanted to have ReadMyfile get data from other files, like
customeryour reading a transaction file and you wanted to bring in the
likename upon a break, you could.
Or, if you wanted to handle some really rare exceptions you could,
if<rpg400-l@xxxxxxxxxxxx>
there was an error from a mythical before read trigger.
Rob Berendt
--
Group Dekko Services, LLC
Dept 01.073
Dock 108
6928N 400E
Kendallville, IN 46755
http://www.dekko.com
From: David FOXWELL <David.FOXWELL@xxxxxxxxx>
To: RPG programming on the IBM i / System i
improveDate: 03/01/2010 05:48 AM
Subject: More on RPG style
Sent by: rpg400-l-bounces@xxxxxxxxxxxx
Hi,
I tend to divide my code into subprocedures in a program just to
readability, even when there is very little risk of that subprocedure
being called from anywhere else. Each subprocedure will correspond to
mailingdoesspecific task executed by the program.
Eg,
/FREE
IF not doThis ( )
RETURN
ENDIF;
IF NOT DoThat ( )
RETURN
ENDIF;
/END-FREE
In these cases I will use global variables unless not possible. That
leaves me with a load of one line prototype declarations in my code :
D doThis PR
D doThat PR
I've just discovered that this style seems to annoy at least one
programmer who prefers to see all the code in one main procedure and
embarassing.not like to see all those PR's PI's and returns, etc. Rather
subprocedures?
Am I justified in coding in this way or am I wrongly using
--
This is the RPG programming on the IBM i / System i (RPG400-L)
mailinglist
To post a message email: RPG400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/rpg400-l.
--
This is the RPG programming on the IBM i / System i (RPG400-L)
confidential,uselist
To post a message email: RPG400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/rpg400-l.
--- This message (including any attachments) is intended only for the
of the individual or entity to which it is addressed and may contain
information that is non-public, proprietary, privileged,
andintended
exempt from disclosure under applicable law. If you are not the
prohibited.recipient, you are hereby notified that any use, dissemination,
distribution, or copying of this communication is strictly
Ifmailing
you have received this communication in error, please notify us and
destroy this message immediately. ---
--
This is the RPG programming on the IBM i / System i (RPG400-L)
mailinglist
To post a message email: RPG400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/rpg400-l.
--
This is the RPG programming on the IBM i / System i (RPG400-L)
confidential,uselist
To post a message email: RPG400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/rpg400-l.
--- This message (including any attachments) is intended only for the
of the individual or entity to which it is addressed and may contain
information that is non-public, proprietary, privileged,
andintended
exempt from disclosure under applicable law. If you are not the
prohibited.recipient, you are hereby notified that any use, dissemination,
distribution, or copying of this communication is strictly
Ifmailing
destroyyou have received this communication in error, please notify us and
this message immediately. ---
--
This is the RPG programming on the IBM i / System i (RPG400-L)
listmailing
To post a message email: RPG400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/rpg400-l.
--
This is the RPG programming on the IBM i / System i (RPG400-L)
listmy
To post a message email: RPG400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/rpg400-l.
--
Jeff Crosby
VP Information Systems
UniPro FoodService/Dilgard
P.O. Box 13369
Ft. Wayne, IN 46868-3369
260-422-7531
www.dilgardfoods.com
The opinions expressed are my own and not necessarily the opinion of
listcompany. Unless I say so.list
--
This is the RPG programming on the IBM i / System i (RPG400-L) mailing
To post a message email: RPG400-L@xxxxxxxxxxxx--
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/rpg400-l.
This is the RPG programming on the IBM i / System i (RPG400-L) mailing
To post a message email: RPG400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/rpg400-l.
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.