COBCH1673 辞書の値に互換性のない型がある

perform varying value 句が、辞書の定義と互換性のない型で指定されました。

次の例では、型binary-long の値で辞書が指定されましたが、perform varying value 句がそれを型stringとして参照しようとしました。型指定では、一致する型または互換性のある型を指定する必要があります。

...
declare myCollect as dictionary[binary-long, binary-long] *> the value specified as binary-long
perform varying value s as string through myCollect       *> and then referenced as string
 display s
end-perform
...