CL/400 - I want to know about QRYSLT(Please see below explanation)
I am not well versed with code in CL/400, i know the concepts.
I want to know what is he doing in the below code. e.g usibng the symbols '|>' and '||' and '<|'
IF COND(&TODUE7 *NE '0000000') THEN(DO)
CHGVAR VAR(&QRYSL) VALUE(&QRYSL |> ' *AND (ODUDT *GE +
' || &FRDUE7 || ') *AND')
CHGVAR &QRYSL VALUE(&QRYSL |> '(ODUDT *LE ' || +
&TODUE7 || ')')
ENDDO
IF COND(&TOORD *NE ' ') THEN(DO)
CHGVAR VAR(&QRYSL) VALUE(&QRYSL |> ' *AND (ORDNO *GE +
"' || &FRORD || '") *AND')
CHGVAR &QRYSL VALUE(&QRYSL |> '(ORDNO *LE "' || +
&TOORD || '")')
ENDDO
*********************************
OPNQRYF FILE((SAWMOMPF)) QRYSLT(&QRYSL) +
KEYFLD((FITWH) (RATIO) (ORDNO))
I understand that he's building the query &QRYSL above, which to be used later in OPNQRYF. but am unable to understand what he's doing above with &QRYSL exactly.
any clarification would be greatly aPpreciated.



