Our full technical support staff does not monitor this forum. If you need assistance from a member of our staff, please submit your question from the Ask a Question page.


Log in or register to post/reply in the forum.

TableFile CRJSON (16, 17, 18)


ggrewe Sep 26, 2019 04:48 PM

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

Log in or register to post/reply in the forum.