Symptoms
When several & characters in a row are used in a JCL they are notescaped correctly.
Cause
For example: &&& is resolved to & instead of &&.This can result in JCL errors.
Resolution
Will be fixed in V9 SP8
Workaround:
--> replace logicaland : if [ $condition1 ] && [$condition2 ]
with alternate syntax : if[ $condition1 -a $condition2 ]