|
So... are you saying that *NoPass should never be used? ever? for any programs? I've created a few programs where the program was prototyped this way (*NoPass). "Luckily" I haven't experienced any problems. Michael Schutte Scott Klement <rpg400-l@scottkl ement.com> To Sent by: RPG programming on the AS400 / rpg400-l-bounces@ iSeries <rpg400-l@xxxxxxxxxxxx> midrange.com cc Subject 05/04/2006 02:40 Re: API CEEDOD and CEE0502 Missing PM operational descriptor. Please respond to RPG programming on the AS400 / iSeries <rpg400-l@midrang e.com> > D CEEDOD PR > D ParmNum 10i 0 CONST > D DescType 10i 0 > D DataType 10i 0 > D DescInfo1 10i 0 > D DescInfo2 10i 0 > D ParmLen 10i 0 > D FeedBack 12a OPTIONS(*NoPass) Doing this will cause the API to try to read the feedback structure from an area of memory that's undefined. This could cause data to be overwritten in areas of memory that don't belong to your program! This could cause strange errors like other programs in the job crashing, or operating system functions failing, or variables seeming to have "garbage" in them. Granted, in most cases, you'll be "lucky" and get unused memory. Since unused memory is normally set to x'00', it'll act just like *OMIT. Until one day, years from now, someone will run this code and be "unlucky" and get memory that something else is using. Please, please don't use *NOPASS for this. The correct code is OPTIONS(*OMIT) as Barbara put in her article, and as the OP originally posted. -- 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-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.