I am writing a report in SQR which produces a CSV output file. While testing, I ran into an instance where the following string is used in one of my fields:
TABLE - 210" X 60" X 29", OAK,
I currently have double quotes surrounding the string. When I use this method, the output produced is this:
Col 1 |Col 2|Col 3
TABLE - 210 X 60" X 29" | OAK | ,
Obviously, the entire line should fit in the first column.
I understand that it's possible to use other delimiters, but would prefer to keep a comma delimiter. Does anyone know of a way to address this issue?
Here is a simplified version of current code:
Let $asset_descr = '"' || &dep_asset.descr || '"'
Let $string = $asset_descr
Write 1 from $string