Because you did not do a simple cut and paste from your report data set into the reply box a lot of alignment has gone. I have tried to re-assemble the alignment so that the report looks like it does in your browse session. The liens were too long so I cut out the last field (phone number of requestor) as it was irrelevant to your problem and now everything fits. If you had done the original cut and paste into the reply box, added code tags and previewed your post you could have seen what editing needed to be done.
I can now see that all you want is to ignore lines that do not have a package name in the first field and parse the detail lines to split it into the fields you want.
The simplest PARSE statement is:
PARSE VAR detail_line appl_name package_number . install_date .
You then simply concatenate the 3 extracted fields to create your output line.
However, I would have thought that it would be better to have a header line with the date and time that you extracted the data from the report and a trailer line with the count of records written.
The problem I have is that people can explain things quickly but I can only comprehend slowly.
Regards
Nic