× 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.



I don't use IFS to create a file for CSV file.

I use a flat Physical file and concatenate all input's fields separated with
comma. I always enclose the fields with " " to make sure comma(s) within
the field is(are) preserved (city/state address).

CtySt = Lakewood, NJ
ZipCd = 080701
TrAmt = 123456 (6.2)


Flatfld = '"' + %trim(CtySt) + '",="' + ZipCd + '","' +
%trim(%editc(TrAmt:'1')) + '"';

And it will look like this
"Lakewood, NJ",="08701","1,234.56"

Then I ftp the flat file using the following:
namefmt 1
ascii
put /qsys.lib/mylib.lib/myflatf.pf mycsvfile.csv


-----Original Message-----
From: midrange-l-bounces@xxxxxxxxxxxx
[mailto:midrange-l-bounces@xxxxxxxxxxxx] On Behalf Of Rowe, Sheri
Sent: Thursday, May 20, 2010 3:56 PM
To: Midrange Systems Technical Discussion
Subject: RE: CSV file problems

Yes, within the .csv all the item numbers are within "...i.e. "5E021"

Sheri Rowe System i Administrator


Timex Group Canada Inc.
445 Hood Road - Markham - Ontario - L3R 8H1 - Canada
T 905.477.8463 ext. 221 F 905.477.8470 www.timex.ca
P Please consider the environment before printing my e-mail


-----Original Message-----
From: BMay@xxxxxxxxx [mailto:BMay@xxxxxxxxx]
Sent: Thursday, May 20, 2010 3:21 PM
To: Midrange Systems Technical Discussion
Subject: RE: CSV file problems

Sheri,

In your CSV file, are the item numbers inclosed in double quotes?

Brian May
Project Lead
Management Information Systems
Garan, Incorporated
Starkville, Mississippi



"Rowe, Sheri" <srowe@xxxxxxxxx>
Sent by: midrange-l-bounces@xxxxxxxxxxxx
05/20/2010 02:11 PM
Please respond to
Midrange Systems Technical Discussion <midrange-l@xxxxxxxxxxxx>


To
"Midrange Systems Technical Discussion" <midrange-l@xxxxxxxxxxxx>
cc

Subject
RE: CSV file problems






Scott,

I have a question about CCSID. I created a CSV file in the IFS for
emailing. The raw data looks good, but when I pull it up in Excel 2 of
the item numbers look incorrect. When I check the format of the
incorrect cells in Excel, it is 'Scientific'. Other item numbers in the
same column that are correct, have a format of 'General'.

I tried creating the CSV with CCSID of 37 and 1208 and 1252 but it still
gives me incorrect data for 2 items.

The 2 item numbers are 5E021 and 5E011.

Is this purely an excel issue with CSV files, or is it something I can
fix from the iSeries?

When I import the file directly from the iSeries to Excel the 2 item
numbers in question are correct.

Sheri

-----Original Message-----
From: Scott Klement [mailto:midrange-l@xxxxxxxxxxxxxxxx]
Sent: Thursday, May 20, 2010 2:01 PM
To: Midrange Systems Technical Discussion
Subject: Re: CSV file problems

Pat,

A CCSID identifies a particular variation of ASCII or EBCDIC. It's just

a ID number for a particular (precise) character set.

Just like when you create a customer record in your database, you refer
to it by it's customer number (or account number). IBM did the same
sort of thing for character sets, they assigned a number to each one,
and they refer to it by that number.

Here are a bunch of them

37 = EBCDIC for USA (and various others)
273 = EBCDIC for Germany, Austria
285 = EBCDIC for UK
297 = EBCDIC for France
(you get the idea... there are lots of EBCDICs)
437 = An old flavor of ASCII for MS-DOS in the USA
819 = ISO-8859-1, an ISO standard flavor of ASCII covering most/all
Latin-1 characters
1252 = A (more or less) superset of ISO-8859-1 used for Latin-1
ASCII Microsoft Windows.
1208 = UTF-8 Unicode
1200 = UTF-16 Unicode

You say that you are outputting 437 right now... and that may be close
enough (for basic letters and numbers it'll be no problem) but certain
special characters may be mistranslated. Nobody really uses 437
anymore.

I'd suggest that 1208 is probably the right CCSID for Excel. Most
everything in Windows expects Unicode these days. But if you need a
single-byte character set, I'd say 1252 is more likely to be correct
than 437.

But, anyway... I hope you understand that CCSIDs aren't really
languages, they are just specific flavors of ASCII, EBCDIC or Unicode.
Just numbers to identify them.



As an Amazon Associate we earn from qualifying purchases.

This thread ...

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.