* IRS Form 990/EZ/PF Image List.

VARIABLE LABELS
EIN "Employer identification number."
FisYr "Fiscal year (ending year)"
NAME "Organization name."
STATE "Two-letter state abbreviation."
FileName "Unique image file name (string = [EIN]_[fiscal year ending yyyymm]_[Return Type Code])"
Latest "Latest=1 indicates return is from the most recent fiscal year reported by the organization (Note: an organization may have more than one return in any fiscal year - see LatestOne)"
LatestOne "LatestOne=1 indicates the single most recent return available from the organization (use to select the last available return filed by an organization for the latest fiscal year reported)."
.

.

SPSS input statement lines

GET DATA
/TYPE=TXT
/FILE="c: emp.csv"
/DELCASE=LINE
/DELIMITERS=","
/ARRANGEMENT=DELIMITED
/FIRSTCASE=2
/IMPORTCASE=ALL
/VARIABLES
FileName a40
Latest f15.0
LatestOne f15.0
EIN a9
IrsId a8
FilingCd a1
FisYr a4
Name a100
State a2
ASS_EOY f15.0
Pages f15.0
ImageStatus a1
. CACHE.
EXECUTE.
DATASET NAME temp WINDOW=FRONT.
.