Hi Did not you simply "forget" loop and READSEQ? PRINT <filevariable> does not make much sense - it will NOT print file content ;)
Kind regards Pawel Wysłano z BlackBerry® -----Original Message----- From: Daniel Klein <[email protected]> Sender: [email protected] Date: Fri, 9 Mar 2012 10:40:07 To: <[email protected]> Reply-To: [email protected] Subject: Re: OPENSEQ not opening the file You probably need to add 'openseq_creates = true' in the '$JBCRELEASEDIR/config/Config_EMULATE' file under the appropriate emulation section. Either that or change the code to: OPENSEQ Y.SRC.DIR, Y.FILE.NAME TO F.SEQ.FILE ELSE CREATE F.SEQ.FILE ELSE NULL END At this point you can use any of the other sequential processing statements against the F.SEQ.FILE file variable. Dan On Thu, Mar 8, 2012 at 8:13 PM, Kiran <[email protected]> wrote: > Hi Group, > > I am working on AIX OS, and there is a issue with openseq command. > > Y.SRC.DIR = "CODE.BP" > Y.FILE.NAME = "TEST.FILE" > > OPENSEQ Y.SRC.DIR, Y.FILE.NAME TO F.SEQ.FILE THEN > PRINT F.SEQ.FILE > END > > When I try running the above snippet of code, nothing gets printed on > the screen. It appears like the file is not getting opened. > > Can somebody help me on this please? > > Thanks > Kiran. > > -- > IMPORTANT: T24/Globus posts are no longer accepted on this forum. > > To post, send email to [email protected] > To unsubscribe, send email to [email protected] > For more options, visit this group at > http://groups.google.com/group/jBASE?hl=en > -- IMPORTANT: T24/Globus posts are no longer accepted on this forum. To post, send email to [email protected] To unsubscribe, send email to [email protected] For more options, visit this group at http://groups.google.com/group/jBASE?hl=en -- IMPORTANT: T24/Globus posts are no longer accepted on this forum. To post, send email to [email protected] To unsubscribe, send email to [email protected] For more options, visit this group at http://groups.google.com/group/jBASE?hl=en
