|
---------- Forwarded message ----------
From: Brian Parkins <goodprophet.bp@xxxxxxxxx>
To: Rational Developer for IBM i <wdsci-l@xxxxxxxxxxxxxxxxxx>
Cc:
Bcc:
Date: Fri, 23 Oct 2020 12:41:16 +0100
Subject: Re: [WDSCI-L] Mixed case in object filters?
In order to achieve mixed-case procedure names, you use the RPGIV
EXTPROC keyword. (Otherwise the compiler converts the names to uppercase.)
I just did a little test using EXTPROC(*DCLCASE) and the RSE view
displays the (mixed-case) procedure names perfectly. (NOTE: I believe
*DCLCASE can only be with in free-format. Otherwise you'll have to
specify EXTPROC('MixedCase').)
In other words, the solution is with coding, not RSE.
Dcl-PR Proc1 Packed(5:0) ExtProc(*DclCase); >>>>>>> RSE
displays as 'Proc1'
Dcl-Parm Parm1 Date(*ISO) Value;
End-PR;
D Proc2 PR 5P 0 >>>>>>> RSE displays as 'PROC2'
D Parm2 D Datfmt(*ISO) Value
D Proc3 PR 5P 0 Extproc('Proc3') >>>>>>> RSE
displays as 'Proc3'
D Parm3 D Datfmt(*ISO) Value
HTH,
Brian.
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.