× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Hi Mike,

This CSV utility is coded to be compatible with V4Rx (originally) which did not support CCSIDs in the IFS.  Since 1208 cannot be opened as a codepage, only as a CCSID, you get the conversion error.  It's very easy to fix.

Find this line of code (in the CSVR4 member, under the csv_open subprocedure):

   myCSV.fp = fopen(%trim(peFilename): 'r');

Change it to the following:

   myCSV.fp = fopen(%trim(peFilename): 'r, o_ccsid=0');

This tells it to use CCSID support rather than codepage support, which will fix the conversion error.  Then using a CCSID of 1208 should work fine.

Good luck!


On 6/19/2018 2:12 PM, Soucy, Michael wrote:

Yes, I am using this utility you wrote, running on V7R1 (We will be upgrading soon).

https://www.scottklement.com/csv/

Can you tell me which utility this is, and what the code looks like?



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.