Forum Discussion
psathyanarayan
7 years agoEmployee
@Rudradip, I think the issue is concatenating a pipeline variable and a regular variable which causes the syntax error. If you concatenate two regular variables it works fine. For example: $CURRENT_IDX$SUFFIX_BATCH
If you concatenate two pipeline variables, it will cause the syntax error:
$_IDX_ALIAS$_IDX_ALIAS
or even with a different syntax: ${_IDX_ALIAS}${_IDX_ALIAS} will cause the syntax error
I am copying @tstack and @cjhoward18 to comment on this as they may be able to share better insights into this.