Hi..
Are limits regarding CLLE parameters?
I have an CLLE program like this:
--->
CALL CPYTEST PARM('TEST' 'MYFILE')
but I have the values for my parameters like this in debug:
&PNOM = 'TEST MYFILE '
&PXML = 'MYFILE ' -- the first 34 characters, begin with the 35th position I have some null characters, filled with white
.. see picture attached.
Thanks
Are limits regarding CLLE parameters?
I have an CLLE program like this:
Code:
PGM PARM(&PNOM &PXML)
DCL VAR(&PNOM) TYPE(*CHAR) LEN(50)
DCL VAR(&PXML) TYPE(*CHAR) LEN(50)
DCL VAR(&VAR1) TYPE(*CHAR) LEN(100)
CHGVAR VAR(&VAR1) VALUE('/home/VOICUCOSM/' +
*TCAT &PXML *TCAT '.XML')
CPYTOIMPF FROMFILE(FTEST) TOSTMF(&VAR1) +
STMFCODPAG(*PCASCII) RCDDLM(*LF) +
STRDLM(*NONE)
CALL CPYTEST PARM('TEST' 'MYFILE')
but I have the values for my parameters like this in debug:
&PNOM = 'TEST MYFILE '
&PXML = 'MYFILE ' -- the first 34 characters, begin with the 35th position I have some null characters, filled with white
.. see picture attached.Thanks






Comment