|
Booth,
That worked out good.
Thanks,
Frank
"Booth Martin" <booth@xxxxxxxxxxxx>@midrange.com on 05/13/2005 05:17:29 PM
Please respond to RPG programming on the AS400 / iSeries
<rpg400-l@xxxxxxxxxxxx>
Sent by: rpg400-l-bounces@xxxxxxxxxxxx
To: "RPG programming on the AS400 / iSeries" <rpg400-l@xxxxxxxxxxxx>
cc:
Subject: Re: data structure arrays and record formats
darn... I meant unvoid_array to be a s, not a ds.
---------------------------------
Booth Martin
http://www.martinvt.com
---------------------------------
-------Original Message-------
From: RPG programming on the AS400 / iSeries
Date: 05/13/05 16:14:59
To: RPG programming on the AS400 / iSeries
Subject: Re: data structure arrays and record formats
Would this work?
=============================================================================
==============
fwk1 FAVSHCH UF E K DISK rename(recfmt:avshchr)
| *
| D avshchrec e ds extname(avshch)
| *
| D unvoid_array ds like(avshchrec) dim(999)
...
| c if %scan('UNVOID': fdescxh:1) > *zeros
| c eval x = x + 1
| c eval unvoid_array(x) = avshchrec
| c endif
---------------------------------
Booth Martin
http://www.martinvt.com
---------------------------------
-------Original Message-------
From: RPG programming on the AS400 / iSeries
Date: 05/13/05 15:45:27
To: RPG400-L@xxxxxxxxxxxx
Subject: data structure arrays and record formats
Hello,
How would you store a record format into a data structure array? In debug,
my code below shows '40404040' in each of the fields after I move the
record format into the array. The program is supposed to read the whole
file and store certain records into an array.
TIA,
Frank
=============================================================================
==============
fwk1 FAVSHCH UF E K DISK rename(recfmt:avshchr)
| *
| D avshchrec e ds extname(avshch) qualified
| *
| D unvoid_array ds qualified dim(999)
| D @ord# like(ord#xh)
| D @desc like(ord#xh)
| D @aram like(ord#xh)
| *
| D x s 3s 0
| *
| * Initialize unvoid_array index
| c eval x = *zeros
| *
| * Check Averitt Shipment Interface File - Charge Level(AVSHCH)
| * for Unvoided Shipments
| c *start setll avshch
| c dou %eof(avshch)
| c read avshch
| c if %eof(avshch)
| c leave
| c endif
| *
| * Check if Shipment has been Unvoided; Save to Array
| c eval found1 = *zeros
| c eval found1 = %scan('UNVOID':descxh:1)
| c if found1 > *zeros
| c eval x = x + 1
| c eval unvoid_array(x) = avshchrec
| c endif
| *
| c enddo
| * dou %eof(avshch)
| *
=========================================================================
--
This is the RPG programming on the AS400 / iSeries (RPG400-L) mailing list
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 AS400 / iSeries (RPG400-L) mailing list
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 AS400 / iSeries (RPG400-L) mailing list
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-2025 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.