×
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.
On 2018-05-17 3:17 PM, Joe Pluta wrote:
Just for fun, Dan... when you do a DSPSRVPGM on CALIB/CA9800, and you
enter through the various screens, what are the procedure names on the
fifth screen (Procedure Exports, Display 5 of 10)? Does
EmployeeAuthorizationStatus show up there as expected?
I'm just wondering if your exported names somehow got upper-cased. I
always have a bear of a time getting case right.
An unquoted name in the EXPORT keyword of the binder source is assumed
to be uppercased. So if the service program got built successfully, the
external name of the procedure would be uppercase too.
Dan, to get the external name of the RPG procedure uppercased, code
EXTPROC(*DCLCASE) on the prototype. Or if you don't have a prototype,
code it on the PI.
dcl-pi EmployeeAuthorizationStatus EXTPROC(*dclcase);
Or, if you don't want to change the service program because other
programs are already using it, remove the quotes from the CALLPRC in the
CLLE module. Unquoted names in CALLPRC are also uppercase.
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.