When using the TableFile method to export table data to a file, the CRJSON output options (16, 17, 18) place the ending bracket on the last line of the JSON data, along with the EOF marker. Would it be possible to alter the output and place the EOF marker on a separate line? Similar to how the EOF marker is placed on a separate line with CSIXML options?
We are utilizing a third party product to ship data files and that product is ignoring the last line in the JSON files because the EOF marker is not on a seaprate line.
Thank you.
Examples:
CSIXML
<csixml>
<datarow></datarow>
<datarow></datarow>
<datarow></datarow>
</csixml>
EOF
CRJSON
Currently:
[{datarow},
{datarow},
{datarow}}]EOF
Suggsted:
[{datarow},
{datarow},
{datarow}}]
EOF