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



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)
 |    *

=========================================================================



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:

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.