Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Programming > Cobol > Re: Validating ...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 5 of 32 Topic 4115 of 4196
Post > Topic >>

Re: Validating input file

by "Rick Smith" <ricksmith@[EMAIL PROTECTED] > May 13, 2008 at 11:22 AM

"jeff" <jmoore207@[EMAIL PROTECTED]
> wrote in message
news:29ae81a8-ee4c-4fdf-84c4-84baeb7f1292@[EMAIL PROTECTED]
>On May 13, 10:10 am, "Rick Smith" <ricksm...@[EMAIL PROTECTED]
> wrote:
>> "jeff" <jmoore...@[EMAIL PROTECTED]
> wrote in message
>>
>>
news:30d67234-2965-45ed-9b66-324739333c4e@[EMAIL PROTECTED]
>>
>> > I have a input rec coming from a customer that is defined as
>>
>> > FD DISCFILE.
>> > 01 DISC-REC PIC X(129).
>> > 01 DISC-REC2 REDEFINES DISC-REC.
>> > 03 DISC-RECR OCCURS 129 PIC X.
>>
>> > It is a comma-delimited file with 16 fields (15 commas). I need to
>> > check and make sure that each line is only 129 characters and I
assume
>> > 1 LF. What would be the best way to accomplish this?
>>
>> If this is truly a fixed-length record on disk, then the
>> LF should appear in the last position; if the file is "line
>> sequential" then the SELECT clause for the file
>> should reflect that and the record will be filled with
>> trailing spaces when it is read into the program. In other
>> words, the record, in memory, will always have
>> 128 characters and a LF or 129 characters, depending.
>
>It is a comma delimited file and can have blank fields

With Micro Focus, I might choose the following:

        input-output section.
        file-control.
            select discfile assign to ...
                organization line sequential.

The use of "line sequential" allows the reading of variable
length lines of text. When each "line" is read, the record,
in memory, will have each of the characters from the text
"line" followed by some number of spaces to fill out the
record; but will not have the LF (or new line) separator.

What compiler are you using? That will determine how
to set up the program to read the file.
 




 32 Posts in Topic:
Validating input file
jeff <jmoore207@[EMAIL  2008-05-13 06:37:11 
Re: Validating input file
jeff <jmoore207@[EMAIL  2008-05-13 07:02:32 
Re: Validating input file
"Rick Smith" &l  2008-05-13 10:10:46 
Re: Validating input file
jeff <jmoore207@[EMAIL  2008-05-13 07:19:17 
Re: Validating input file
"Rick Smith" &l  2008-05-13 11:22:00 
Re: Validating input file
Howard Brazee <howard@  2008-05-13 08:27:03 
Re: Validating input file
jeff <jmoore207@[EMAIL  2008-05-13 07:29:57 
Re: Validating input file
Howard Brazee <howard@  2008-05-13 09:05:10 
Re: Validating input file
Alain Reymond <arwebma  2008-05-13 17:15:12 
Re: Validating input file
"HeyBub" <he  2008-05-13 12:55:55 
Re: Validating input file
Howard Brazee <howard@  2008-05-13 09:44:30 
Re: Validating input file
"HeyBub" <he  2008-05-13 10:07:26 
Re: Validating input file
Howard Brazee <howard@  2008-05-13 09:20:32 
Re: Validating input file
jeff <jmoore207@[EMAIL  2008-05-13 08:12:00 
Re: Validating input file
"HeyBub" <he  2008-05-13 12:51:13 
Re: Validating input file
jeff <jmoore207@[EMAIL  2008-05-13 08:51:02 
Re: Validating input file
Howard Brazee <howard@  2008-05-13 10:17:53 
Re: Validating input file
"Rick Smith" &l  2008-05-13 12:46:06 
Re: Validating input file
jeff <jmoore207@[EMAIL  2008-05-13 09:21:54 
Re: Validating input file
jeff <jmoore207@[EMAIL  2008-05-13 10:03:50 
Re: Validating input file
"Rick Smith" &l  2008-05-13 13:38:03 
Re: Validating input file
jeff <jmoore207@[EMAIL  2008-05-13 10:07:31 
Re: Validating input file
jeff <jmoore207@[EMAIL  2008-05-13 10:42:37 
Re: Validating input file
"Rick Smith" &l  2008-05-13 14:24:42 
Re: Validating input file
"William M. Klein&qu  2008-05-13 23:14:07 
Re: Validating input file
Graham Hobbs <ghobbs@[  2008-05-13 21:37:46 
Re: Validating input file
Robert <no@[EMAIL PROT  2008-05-13 21:13:33 
Re: Validating input file
"William M. Klein&qu  2008-05-14 02:21:22 
Re: Validating input file
"Rick Smith" &l  2008-05-13 23:03:21 
Re: Validating input file
Robert <no@[EMAIL PROT  2008-05-13 21:35:08 
Re: Validating input file
Robert <no@[EMAIL PROT  2008-05-14 00:11:29 
Re: Validating input file
"Michael Mattias&quo  2008-05-14 08:38:24 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Sat Jul 26 4:03:17 CDT 2008.