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



Please don't promote the use of MODS ... it is an ancient and error prone technique that it would have been nice to dump from the compiler completely.

Arrays or DS arrays are a much better alternative in every sense.

More to the point your code won't work. You have created 28 instances of a DS each of which contains all 28 fields.



On Mar 12, 2021, at 11:44 AM, Panduranga Nayak <nayakpanduranga@xxxxxxxxx> wrote:

Maybe multiple occurrence data structure like below? You can change the
occurrence by using *%occur(Containers) = 1*


D Containers DS OCCUR(28);
SlOthCtr1 Char(40) Overlay(Containers);
SlOthCtr2 Char(40) Overlay(Containers : *Next);
SlOthCtr3 Char(40) Overlay(Containers : *Next);
SlOthCtr4 Char(40) Overlay(Containers : *Next);
SlOthCtr5 Char(40) Overlay(Containers : *Next);
SlOthCtr6 Char(40) Overlay(Containers : *Next);
SlOthCtr7 Char(40) Overlay(Containers : *Next);
SlOthCtr8 Char(40) Overlay(Containers : *Next);
SlOthCtr9 Char(40) Overlay(Containers : *Next);
SlOthCtr10 Char(40) Overlay(Containers : *Next);
SlOthCtr11 Char(40) Overlay(Containers : *Next);
SlOthCtr12 Char(40) Overlay(Containers : *Next);
SlOthCtr13 Char(40) Overlay(Containers : *Next);
SlOthCtr14 Char(40) Overlay(Containers : *Next);
SlOthCtr15 Char(40) Overlay(Containers : *Next);
SlOthCtr16 Char(40) Overlay(Containers : *Next);
SlOthCtr17 Char(40) Overlay(Containers : *Next);
SlOthCtr18 Char(40) Overlay(Containers : *Next);
SlOthCtr19 Char(40) Overlay(Containers : *Next);
SlOthCtr20 Char(40) Overlay(Containers : *Next);
SlOthCtr21 Char(40) Overlay(Containers : *Next);
SlOthCtr22 Char(40) Overlay(Containers : *Next);
SlOthCtr23 Char(40) Overlay(Containers : *Next);
SlOthCtr24 Char(40) Overlay(Containers : *Next);
SlOthCtr25 Char(40) Overlay(Containers : *Next);
SlOthCtr26 Char(40) Overlay(Containers : *Next);
SlOthCtr27 Char(40) Overlay(Containers : *Next);
SlOthCtr28 Char(40) Overlay(Containers : *Next);


On Fri, Mar 12, 2021 at 11:21 AM Kevin Bucknum <Kevin@xxxxxxxxxxxxxxxxxxx>
wrote:

Of the top of my head something like this?
Dcl-DS *N;
SlOthCtr1;
SlOthCtr2;
SlOthCtr3;
SlOthCtr4;
SlOthCtr5;
SlOthCtr6;
SlOthCtr7;
SlOthCtr8;
SlOthCtr9;
SlOthCtr10;
SlOthCtr11;
SlOthCtr12;
SlOthCtr13;
SlOthCtr14;
SlOthCtr15;
SlOthCtr16;
SlOthCtr17;
SlOthCtr18;
SlOthCtr19;
SlOthCtr20;
SlOthCtr21;
SlOthCtr22;
SlOthCtr23;
SlOthCtr24;
SlOthCtr25;
SlOthCtr26;
SlOthCtr27;
SlOthCtr28;
Containers Char(40) Dim(28) Pos(1);
End-Ds;

On Fri, 2021-03-12 at 16:10 +0000, (WalzCraft) Jerry Forss wrote:

Hi All,


I know this is a simple question but is escaping me at the moment.


I have a file that contains fields SLOTHCTR1 - SLOTHCTR28, each 40 char.


I want to have these loaded into an array because I need to change some,
print label, change again, print and so on.


Changing by index would be immensely less coding then changing the field
directly.


This is basically what I what it to look like.


Dcl-DS *n;

Containers Dim(28);

SlOthCtr1 Char(40) Overlay(Containers);

SlOthCtr2 Char(40) Overlay(Containers : *Next);

SlOthCtr3 Char(40) Overlay(Containers : *Next);

SlOthCtr4 Char(40) Overlay(Containers : *Next);

SlOthCtr5 Char(40) Overlay(Containers : *Next);

SlOthCtr6 Char(40) Overlay(Containers : *Next);

SlOthCtr7 Char(40) Overlay(Containers : *Next);

SlOthCtr8 Char(40) Overlay(Containers : *Next);

SlOthCtr9 Char(40) Overlay(Containers : *Next);

SlOthCtr10 Char(40) Overlay(Containers : *Next);

SlOthCtr11 Char(40) Overlay(Containers : *Next);

SlOthCtr12 Char(40) Overlay(Containers : *Next);

SlOthCtr13 Char(40) Overlay(Containers : *Next);

SlOthCtr14 Char(40) Overlay(Containers : *Next);

SlOthCtr15 Char(40) Overlay(Containers : *Next);

SlOthCtr16 Char(40) Overlay(Containers : *Next);

SlOthCtr17 Char(40) Overlay(Containers : *Next);

SlOthCtr18 Char(40) Overlay(Containers : *Next);

SlOthCtr19 Char(40) Overlay(Containers : *Next);

SlOthCtr20 Char(40) Overlay(Containers : *Next);

SlOthCtr21 Char(40) Overlay(Containers : *Next);

SlOthCtr22 Char(40) Overlay(Containers : *Next);

SlOthCtr23 Char(40) Overlay(Containers : *Next);

SlOthCtr24 Char(40) Overlay(Containers : *Next);

SlOthCtr25 Char(40) Overlay(Containers : *Next);

SlOthCtr26 Char(40) Overlay(Containers : *Next);

SlOthCtr27 Char(40) Overlay(Containers : *Next);

SlOthCtr28 Char(40) Overlay(Containers : *Next);

End-Ds;


That way I can change the fields by changing the Containers(x);


What should this look like?




Subject to Change Notice:


WalzCraft reserves the right to improve designs, and to change
specifications without notice.


Confidentiality Notice:


This message and any attachments may contain confidential and privileged
information that is protected by law. The information contained herein is
transmitted for the sole use of the intended recipient(s) and should "only"
pertain to "WalzCraft" company matters. If you are not the intended
recipient or designated agent of the recipient of such information, you are
hereby notified that any use, dissemination, copying or retention of this
email or the information contained herein is strictly prohibited and may
subject you to penalties under federal and/or state law. If you received
this email in error, please notify the sender immediately and permanently
delete this email. Thank You


WalzCraft PO Box 1748 La Crosse, WI, 54602-1748

<http://www.walzcraft.com<http://www.walzcraft.com>>

www.walzcraft.com<http://www.walzcraft.com>

Phone: 1-800-237-1326



[https://www.medtronsoftware.com/img/MedtronMinilogo.bmp] Kevin Bucknum
Senior Programmer Analyst
MEDDATA / MEDTRON
120 Innwood Drive
Covington LA 70433
Local: 985-893-2550
Toll Free: 877-893-2550
https://www.medtronsoftware.com



CONFIDENTIALITY NOTICE

This document and any accompanying this email transmission contain
confidential information, belonging to the sender that is legally
privileged. This information is intended only for the use of the
individual or entity named above. The authorized recipient of this
information is prohibited from disclosing this information to any other
party and is required to destroy the information after its stated need has
been fulfilled. If you are not the intended recipient, or the employee of
agent responsible to deliver it to the intended recipient, you are hereby
notified that any disclosure, copying, distribution or action taken in
reliance on the contents of these documents is STRICTLY PROHIBITED. If you
have received this email in error, please notify the sender immediately to
arrange for return or destruction of these documents.
--
This is the RPG programming on IBM i (RPG400-L) mailing list
To post a message email: RPG400-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/rpg400-l.

Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related
questions.

Help support midrange.com by shopping at amazon.com with our affiliate
link: https://amazon.midrange.com



--
--/Panduranga Nayak
--
This is the RPG programming on IBM i (RPG400-L) mailing list
To post a message email: RPG400-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/rpg400-l.

Please contact support@xxxxxxxxxxxxxxxxxxxx for any subscription related questions.

Help support midrange.com by shopping at amazon.com with our affiliate link: https://amazon.midrange.com


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

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.