Re: JZOS on open systems question

2017-12-29 Thread Andrew Rowley
On 30/12/2017 12:08 PM, Paul Gilmartin wrote: I believe it would be less trouble to convert it with a COBOL program using the copybook to a portable format such as XML, CSV, or even fixed-field text before transmitting it. That seems to add a lot of processing for no gain. My experience (process

Re: JZOS on open systems question

2017-12-29 Thread Andrew Rowley
On 30/12/2017 11:15 AM, Frank Swarbrick wrote: Can JZOS be used off mainframe to process (yes, that's vague) a file that is a combination of ECBDIC fields, binary integer fields and packed-decimal fields? Basically, the file is defined by a (mainframe) COBOL copybook and would be transmitted

Re: catalog doubt

2017-12-29 Thread Lizette Koehler
Johnny it looks like you asked similar questions back in Nov. We need to understand your configuration better in order to help. 1) Is the Master cat different between the systems you are working with/ 2) is the HLQ in a usercat? If yes, then answer the following 4 questions 3) Is the user cat

Re: JZOS on open systems question

2017-12-29 Thread Kirk Wolf
Some parts of the JZOS jar can be used off of the mainframe, although I do not believe that IBM offers official support on other platforms. For example, the record generators, and com.ibm.jzos.fields runtime classes do work fine. The FileFactory class is designed to be agnostic as well, and RDWI

Re: JZOS on open systems question

2017-12-29 Thread Paul Gilmartin
On Fri, 29 Dec 2017 19:28:59 -0600, John McKown wrote: > > >for >mapping byte array fields into Java data types. > >​ > >​Later, it says that the

Re: JZOS on open systems question

2017-12-29 Thread John McKown
On Fri, Dec 29, 2017 at 6:15 PM, Frank Swarbrick < frank.swarbr...@outlook.com> wrote: > Can JZOS be used off mainframe to process (yes, that's vague) a file that > is a combination of ECBDIC fields, binary integer fields and packed-decimal > fields? Basically, the file is defined by a (mainframe

Re: catalog doubt

2017-12-29 Thread Mike Schwab
You must use DEFINE ALIAS for every mainframe master catalog you want to use it from. On Fri, Dec 29, 2017 at 7:13 PM, johnnydeep san wrote: > Hi all, > > i have XYZ dataset's (vsam and non-vsam) files on SYSA under usercatlog > "SYSA.ADCDCAT.TEST" . I would like to use all XYZ datasets on SYSB.

catalog doubt

2017-12-29 Thread johnnydeep san
Hi all, i have XYZ dataset's (vsam and non-vsam) files on SYSA under usercatlog "SYSA.ADCDCAT.TEST" . I would like to use all XYZ datasets on SYSB. I ran import connect job on SYSB after sharing the same volume's where XYZ are resides.But i could not fetch the datasets on new system directly , it

Re: JZOS on open systems question

2017-12-29 Thread Paul Gilmartin
On Sat, 30 Dec 2017 00:15:20 +, Frank Swarbrick wrote: >Can JZOS be used off mainframe to process (yes, that's vague) a file that is a >combination of ECBDIC fields, binary integer fields and packed-decimal fields? > Basically, the file is defined by a (mainframe) COBOL copybook and would be

JZOS on open systems question

2017-12-29 Thread Frank Swarbrick
Can JZOS be used off mainframe to process (yes, that's vague) a file that is a combination of ECBDIC fields, binary integer fields and packed-decimal fields? Basically, the file is defined by a (mainframe) COBOL copybook and would be transmitted in binary to a distributed platform to be process

Re: Problem creating file of combined records with SORT

2017-12-29 Thread Bill Ashton
Thanks, Kolusu; I will be leaving shortly, too, and will give this a try in the next week or so. I never imagined it would be so complex, but I will try to figure it out. Happy new year! Billy On Fri, Dec 29, 2017 at 12:58 PM, Sri h Kolusu wrote: > Bill, > > Use the following JCL which will giv

Re: Problem creating file of combined records with SORT

2017-12-29 Thread Sri h Kolusu
Bill, Use the following JCL which will give you the desired results //STEP0100 EXEC PGM=SORT //SYSOUT DD SYSOUT=* //SORTIN DD DISP=SHR,DSN=your input FB 80 byte file //SORTOUT DD SYSOUT=* //SYSINDD * OPTION COPY INREC IFOUTLEN=520, IFTHEN=(WHEN=(1,14,CH,EQ,C'>CUST

Re: Off topic - FTP client/server for android that supports the android SD card

2017-12-29 Thread Alan Young
Total Commander with the ftp plugin works for me on Android 4.4. However, you may be dealing with a version of Android where the external sdcard permissions were "locked down" by Google and/or the phone/tablet manufacturer. The application may need to be granted access to the sdcard or it has a

Re: Problem creating file of combined records with SORT

2017-12-29 Thread Bill Ashton
The original file is 80 bytes long, so you can copy this into an 80-byte file, and get rid of everything in the [ ] pair if you want. On Fri, Dec 29, 2017 at 11:22 AM, Bill Ashton wrote: > HI Kolusu, in the original post is an attached file showing the input > layout (data has been scrubbed) con

Re: Problem creating file of combined records with SORT

2017-12-29 Thread Bill Ashton
HI Kolusu, in the original post is an attached file showing the input layout (data has been scrubbed) containing only the relevant data. Here it is again for you. Let me know if that is not good enough. Billy On Fri, Dec 29, 2017 at 11:19 AM, Bill Ashton wrote: > Here is the error when I only u

Re: Problem creating file of combined records with SORT

2017-12-29 Thread Bill Ashton
Here is the error when I only use one IFTHEN: INREC IFOUTLEN=245, IFTHEN=(WHEN=(1,14,CH,EQ,C'C'>CUST MASTER$,'), PARSE=(%01=(ABSPOS=15,ENDBEFR=C'(',FIXLEN=50))), $ ICE107A 6 DU

Re: Problem creating file of combined records with SORT

2017-12-29 Thread Sri h Kolusu
Bill Ashton, If you have data on multiple records and you need to combine them to a single record, you need to use WHEN=GROUP to push the contents on to other records and then write out a single record. So if you can send the original input file on the mainframe, I can show you a way to do it

Problem creating file of combined records with SORT

2017-12-29 Thread Bill Ashton
Hello! I am trying to use DFSORT to extract some records from a transaction work file to be displayed in Microsoft Excel (and also on the mainframe). The data contains a lot of hierarchical information (Customer, Region, Location, and contact people), and I would like to create a single record for

Re: Off topic - FTP client/server for android that supports the android SD card

2017-12-29 Thread Walt Farrell
On Fri, 29 Dec 2017 14:44:20 +0200, Binyamin Dissen wrote: >Everyone that I have tried does not give access to the SD card where the big >files are. > >Any recommendations? I don't have access to an FTP server right now to test it, but ES File Explorer provides FTP support, and its other funct

Re: Off topic - FTP client/server for android that supports the android SD card

2017-12-29 Thread Jackson, Rob
I use the FtpCafe client, which supports it just fine for uploads and downloads. After connecting, on the LOCAL tab, you navigate to /sdcard (which maps to /storage/emulated/0 on my phone) and take it from there. I don't run a server on it. -Original Message- From: IBM Mainframe Disc

Re: How to find what performed an OMVS unmount?

2017-12-29 Thread Robert S. Hansel (RSH)
Peter, There are multiple RACF audit options that might come into play as discussed in our presentation on this topic. See (beware the line wrap): http://www.rshconsulting.com/RSHpres/RSH_Consulting__RACF_Monitoring_&_Reporting__August_2017.pdf Event Code 55 (UMNTFSYS) comes under Unix audit cl

Off topic - FTP client/server for android that supports the android SD card

2017-12-29 Thread Binyamin Dissen
Everyone that I have tried does not give access to the SD card where the big files are. Any recommendations? -- Binyamin Dissen http://www.dissensoftware.com Director, Dissen Software, Bar & Grill - Israel Should you use the mailblocks package and expect a response from me, you should preauth