×
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.
Well, there's no "call time" since I can't get a compile. But to clarify,
all the parameters are character, and the lengths match between the CLLE
program's declarations and the procedure's interface.
CLLE program:
Dcl &userID *char ( 10)
Dcl &ThisPgm *char ( 10)
Dcl &mEmp_Fnd *char ( 1)
Dcl &mGA_Fnd *char ( 1)
Dcl &gaLvl1Pgm *char ( 1)
Dcl &gaLvl2Fld *char ( 1)
Dcl &EmpEmail *char ( 50)
Service program:
dcl-pi EmployeeAuthorizationStatus;
EmployeeUserID char( 10) const;
Program char( 10) const;
found_MEMPLOYEE char( 1);
found_MGRPAUT char( 1);
ga_Lvl1CanUsePgm char( 1);
ga_Lvl2FieldUse char( 1);
ei_EmployeeEmail char( 50);
end-pi;
On Thu, May 17, 2018 at 3:05 PM, Jack Woehr <jwoehr@xxxxxxxxxxxxxxxxxxxxxxxx
wrote:
It's not enough for the names to match, at call time the argument types
must match.
As an Amazon Associate we earn from qualifying purchases.