Hi.
I use PL1 3.9 for zos.
I have a procedure PREPRO and the call to this procedure into a INCLUDE MEMBER:
%DCL DCL_MTH ENTRY EXTERNAL;
%ACT DCL_MTH;
DCL_MTH(GS1185,3,'METHODE 1',1,MID1,PAGE1,
'METHODE 2',2,MID1,PAGE1,
'METHODE 3',1,MID1,PAGE1);
%DCL_MTH:PROC($TP,$NB,$MT001,$SC001,$MID001,$PAGE001,
$MT002,$SC002,$MID002,$PAGE002,
$MT003,$SC003,$MID003,$PAGE003,
$MT004,$SC004,$MID004,$PAGE004);
...
%END DCL_MTH;
I try to move this procedure into a other INCLUDE member for isolate the statement call and the code of this procedure PREPRO.
But when i try this operation, i have many error of compil.
Can you help me ?
U8JK_Robert_Ohlen