- Oct
- 364
- 17
In TCC 22, 32-bit a difference between TCC and cmd:
Set DEN_a-temp="Hello"
Echo %DEN_a-temp
TCC: -temp
CMD: %DEN_a-temp ( WAD )
Echo %DEN_a-temp%
TCC: -temp
CMD: "Hello"
In the actual usage the variable name stands for "a file with Insurance Denial records in the temporary-hold folder \a-temp". The folder is named "a-temp" so it will display first in File Manager. The data the variable actually holds is a path ending with a slash.
Set DEN_a-temp="Hello"
Echo %DEN_a-temp
TCC: -temp
CMD: %DEN_a-temp ( WAD )
Echo %DEN_a-temp%
TCC: -temp
CMD: "Hello"
In the actual usage the variable name stands for "a file with Insurance Denial records in the temporary-hold folder \a-temp". The folder is named "a-temp" so it will display first in File Manager. The data the variable actually holds is a path ending with a slash.