Parameter list changes between calling and called program

2013-03-15 Thread jan de decker
Hi list, I am struggling with a curious phenomenom: Program YEMI0070 builds a parameter list for program YEXC using macro YEIOWTOD. The last things YEIOWTOD does is to point register 1 to the parameter list and BALR into YEXC. This created ABEND's. I dumped just before the BALR and the

Re: IBM @ CeBIT 2013

2013-03-15 Thread Robert Gmail
For those who are wondering this is NOT spam Just a cute short Sent from my iPad On 2013-03-15, at 2:44, Juergen Keller wrote: > http://www.youtube.com/watch?v=zLKBeZLDnR0 > > -- > For IBM-MAIN subscribe / signoff / archive

Re: Parameter list changes between calling and called program

2013-03-15 Thread Steve Comstock
On 3/15/2013 4:56 AM, jan de decker wrote: Hi list, I am struggling with a curious phenomenom: Program YEMI0070 builds a parameter list for program YEXC using macro YEIOWTOD. The last things YEIOWTOD does is to point register 1 to the parameter list and BALR into YEXC. This created AB

Re: DS6800 problem (?)

2013-03-15 Thread Shmuel Metz (Seymour J.)
In , on 03/14/2013 at 07:00 PM, Mike Schwab said: >One thing that TDMF complained about was wrong cylinder numbers in >the CCHHR header. What do you mean by "CCHR header"? HA? R0? -- Shmuel (Seymour J.) Metz, SysProg and JOAT Atid/2 We don't car

Re: z890 into the Plex (Compliance w/z10 CF and z9 and up members?)

2013-03-15 Thread Marna WALLE
Patrick, Check out the migration action "Migrate to a System z10 server" in your friendly z/OS Migration book, in the section called "Restrictions". From that migration action: System z10 in a sysplex: The z9 EC and z9 BC are the last servers to support active participation in the same Paralle

Re: z890 into the Plex (Compliance w/z10 CF and z9 and up members?)

2013-03-15 Thread R.S.
Just to clarify and simplify: z990 or z890 can coexist with z10 in the sysplex. (correct me if I'm wrong) -- Radoslaw Skorupka Lodz, Poland W dniu 2013-03-15 13:57, Marna WALLE pisze: Patrick, Check out the migration action "Migrate to a System z10 server" in your friendly z/OS Migration

Re: Query for Destination z article -- mainframes back to the future

2013-03-15 Thread Tom Marchant
On Thu, 14 Mar 2013 19:28:07 -0500, Ed Gould wrote: >Phil: > >My memory is a bit foggy here but IIRC a megabyte in 370 memory was >$10,000 . That may have been true at some time in its life. In the early 1970s when I was working at Wayne State, we had a model 65 that was later converted to (or

Re: Parameter list changes between calling and called program

2013-03-15 Thread Lizette Koehler
I would like a little more detail. 1) Can you past the abend and registers? 2) What level of z/OS? 3) I assume all programs are assembler. If not, what are the languages involved? 4) How are all of them linked? Rent, Reuse, etc... 5) Any LE calls involved? Like CEEPIPI or other interfaces? 6) A

Re: IBM-MAIN Digest - 13 Mar 2013 to 14 Mar 2013 (#2013-73) USS "date" command, subtract one day

2013-03-15 Thread William Schoen
Another rexx example using the system's time zone /* rexx yesterdy */ call syscalls 'ON' numeric digits 10 cvt=storage(10,4) cvttz=storage(d2x(c2d(cvt)+304),4) tz=format(c2d(cvttz,4)*1.048576,,0) address syscall 'time' address syscall 'gmtime' retval-86400+tz 'tm.' say tm.tm_year''right(tm.tm_

Re: Query for Destination z article -- mainframes back to the future

2013-03-15 Thread John Gilmore
Semiconductor memory was introduced to the market as somewhat cheaper and more reliable than ferrite-core memory (although the greater reliability did not really obtain originally), and Fairchild of course manufactured the semiconductors that it used in its own semiconductor memory and sold to IBM,

Re: USS "date" command, subtract one day

2013-03-15 Thread Joel C. Ewing
Are there semantic rules in shell scripts covering whether multiple usages of "date" return consistent values (as there are for date/time functions within a single REXX statement)? If not, any script with multiple "date" commands like the "long" example given will potentially fail if the midn

Re: IBM @ CeBIT 2013

2013-03-15 Thread Ed Gould
On Mar 15, 2013, at 1:44 AM, Juergen Keller wrote: http://www.youtube.com/watch?v=zLKBeZLDnR0 Sorry I am missing the reference to the Blue Sheep... ANyone? Ed -- For IBM-MAIN subscribe / signoff / archive access instruction

Re: IBM-MAIN Digest - 13 Mar 2013 to 14 Mar 2013 (#2013-73) USS "date" command, subtract one day

2013-03-15 Thread Elardus Engelbrecht
William Schoen wrote: >Another rexx example using the system's time zone Thanks. Your example is indeed fast and furious! ;-D >tz=format(c2d(cvttz,4)*1.048576,,0) Any background info about this magic number 1.048576? Thanks again. This one I will keep forever. ;-D Groete / Greetings Elardus E

Re: USS "date" command, subtract one day

2013-03-15 Thread Paul Gilmartin
On Fri, 15 Mar 2013 09:36:41 -0500, Joel C. Ewing wrote: >Are there semantic rules in shell scripts covering whether multiple >usages of "date" return consistent values (as there are for date/time >functions within a single REXX statement)? If not, any script with No. But the format string for

BPXBATCH copy to mvs-ds FSUM6259

2013-03-15 Thread Monika Amiss
Dear Group, I have a strange behavior. In the first step I call an Shellscript which does a cp /user/tmp.txt "//'TEST.DATASET'". The TEST.DATASET ist predefined and empty. If I run only Step01 everything is Okay, the TEST.DATASET is filled with the data. But if I run it with STEP01 an

Re: IBM-MAIN Digest - 13 Mar 2013 to 14 Mar 2013 (#2013-73) USS "date" command, subtract one day

2013-03-15 Thread Paul Gilmartin
On Fri, 15 Mar 2013 10:25:16 -0500, Elardus Engelbrecht wrote: > >Any background info about this magic number 1.048576? > In an IBM Redbook, IIRC, this coeffecient was once called, repugnantly, a megamicroseond. This could be justified, again repugnantly, by terminology in IBM glossaries. -- gil

Re: IBM-MAIN Digest - 13 Mar 2013 to 14 Mar 2013 (#2013-73) USS "date" command, subtract one day

2013-03-15 Thread Elardus Engelbrecht
Paul Gilmartin wrote: >In an IBM Redbook, IIRC, this coeffecient was once called, repugnantly, a >megamicroseond. This could be justified, again repugnantly, by terminology in IBM glossaries. Thanks for your magic comment. I finally found it by using mega-microsecond as a search argument. htt

Re: BPXBATCH copy to mvs-ds FSUM6259

2013-03-15 Thread Paul Gilmartin
On Fri, 15 Mar 2013 16:33:36 +0100, Monika Amiss wrote: > > I have a strange behavior. In the first step I call an Shellscript which does > a >cp /user/tmp.txt "//'TEST.DATASET'". >The TEST.DATASET ist predefined and empty. >If I run only Step01 everything is Okay, the TEST.DATASET is fill

Re: BPXBATCH copy to mvs-ds FSUM6259

2013-03-15 Thread Paul Gilmartin
On Fri, 15 Mar 2013 16:33:36 +0100, Monika Amiss wrote: >Dear Group, > > I have a strange behavior. In the first step I call an Shellscript which does > a >cp /user/tmp.txt "//'TEST.DATASET'". >... > cp: FSUM6259 target file "//'TEST.DATASET'": EDC5061I An error occurred when > atte

2013 VM Workshop - Call for Presentations (closes April 15)

2013-03-15 Thread Mike Walter
Cross-posted to the IBMVM, Linux-390, and IBM-MAIN discussion lists. The 2013 VM Workshop will be conducted JUNE 20-22 at Indiana University-Purdue University Indianapolis in beautiful downtown Indianapolis, IN. Session are planned from about 9AM Thursday June 20, through about 2PM Saturday,

Unix System Services

2013-03-15 Thread gsg
Not familiar with USS, so I have a dumb question. What is the normal setup for USS? Is the norm to have the LPARs under the root? How do you setup your USS environment? -- For IBM-MAIN subscribe / signoff / archive access ins

Re: BPXBATCH copy to mvs-ds FSUM6259

2013-03-15 Thread Monika Amiss
Hello Paul, thanks for your reply. The cp is Part of a long shell script. In syslog/syslogd I found no messages. With best regrads Monika -Ursprüngliche Nachricht- Von: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] Im Auftrag von Paul Gilmartin Gesendet: Freitag, 1

Copying HFS Files

2013-03-15 Thread Leonard Sasso
What program can be used to copy a HFS file to a MVS Data Set? Thank You. Len Sasso RDC Applications Management - System Administrator, Senior Professional Backup QMR CSC 327 Columbia Turnpike, Rensselaer NY 12144 National Infrastructure Services (NIS) | t: 518.257-4209 | m: 518.894-0879 | f:

Data privacy, Testing, etc.

2013-03-15 Thread Robert
(with the ok from the list owner) I thought it may be interesting for some of you to read a series of blog posts concerning how Testing, Data privacy, Data Management and how they all fit together http://robertdataprivacytesting.blogspot.ca/ N

Re: DS6800 problem (?)

2013-03-15 Thread Mike Schwab
The Count - Key - Data portions of one block of data on a CKD device. 2 bytes cylinder, 2 bytes head (track), 1 byte record within track. On Thu, Mar 14, 2013 at 9:57 PM, Shmuel Metz (Seymour J.) wrote: > In > , > on 03/14/2013 >at 07:00 PM, Mike Schwab said: > >>One thing that TDMF complain

Re: Copying HFS Files

2013-03-15 Thread Lizette Koehler
Batch process or under ispf? Look at option 3.17 in ispf Dfdss. Or. Fdr? Lizette -Original Message- >From: Leonard Sasso >Sent: Mar 15, 2013 9:46 AM >To: IBM-MAIN@LISTSERV.UA.EDU >Subject: Copying HFS Files > >What program can be used to copy a HFS file to a MVS Data Set? > > >Thank Y

Re: Copying HFS Files

2013-03-15 Thread Leonard Sasso
Batch process, Dfdss. Thank You. Len Sasso RDC Applications Management - System Administrator, Senior Professional Backup QMR CSC 327 Columbia Turnpike, Rensselaer NY 12144 National Infrastructure Services (NIS) | t: 518.257-4209 | m: 518.894-0879 | f: 518.257-4300 | lsa...@csc.com | www.csc.c

Re: BPXBATCH copy to mvs-ds FSUM6259

2013-03-15 Thread Paul Gilmartin
On Fri, 15 Mar 2013 17:35:50 +0100, Monika Amiss wrote: > > thanks for your reply. The cp is Part of a long shell script. In > syslog/syslogd I found no messages. > I may be missing other pieces of the puzzle. But can you elimate STEP02 in your job, then in your "long shell script" invoke a Re

Re: IBM-MAIN Digest - 13 Mar 2013 to 14 Mar 2013 (#2013-73) USS "date" command, subtract one day

2013-03-15 Thread Kirk Talman
deja vu all over agian http://www.mail-archive.com/ibm-main@bama.ua.edu/msg86982.html IBM Mainframe Discussion List wrote on 03/15/2013 11:33:44 AM: > From: Paul Gilmartin > > On Fri, 15 Mar 2013 10:25:16 -0500, Elardus Engelbrecht wrote: > > > >Any background info about this magic number 1.

Re: Copying HFS Files

2013-03-15 Thread Paul Gilmartin
On Fri, 15 Mar 2013 12:46:36 -0400, Leonard Sasso wrote: >What program can be used to copy a HFS file to a MVS Data Set? > Often I use IEBGENER with PATH and FILEDATA options on SYSUT1. (Later mention of dfdss and fdr suggest I misunderstand "HFS file".) -- gil

Re: Copying HFS Files

2013-03-15 Thread Leonardo Vaz
You could use the omvs command cp: http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/bpxza5b0/CP?SHELF=EZ2ZBK0K&DT=20100625104946 -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Leonard Sasso Sent: Friday, March 15, 2013 12:4

Re: Copying HFS Files

2013-03-15 Thread John McKown
IMO, the simplest way is to use IEBGENER. //COPYUNIX EXEC PGM=IEBGENER //SYSPRINT DD SYSOUT=* //SYSIN DD DUMMY //SYSUT1 DD PATH='/path/to/unix.file', // PATHOPTS=(ORDONLY), // RECFM=?,LRECL=?,BLKSIZE=?, // FILEDATA=TEXT //SYSUT2 DD DSN=NEW.ZOS.DSN, // RECFM=?,LRECL=?,BLKSIZE=?, // SPACE=(CYL,(1,20

Re: Copying HFS Files

2013-03-15 Thread Paul Gilmartin
On Fri, 15 Mar 2013 17:26:16 +, Leonardo Vaz wrote: >You could use the omvs command cp: >http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/bpxza5b0/CP?SHELF=EZ2ZBK0K&DT=20100625104946 > But in a multi-step job, beware the hazards mentioned in the "FSUM6259" thread in progress here.

Re: IBM Mainframe (1980's) on You tube

2013-03-15 Thread Frank Swarbrick
This reminds me of something I've wondered.  Are they any non-IBM products that support the Common Cryptographic Architecture? > > From: Todd Arnold >To: IBM-MAIN@LISTSERV.UA.EDU >Sent: Thursday, March 14, 2013 8:42 AM >Subject: Re: IBM Mainframe (1980's) on Yo

Re: Unix System Services

2013-03-15 Thread Neubert, Kevin
Rather than asking you questions about your environment, you probably want to take a look at UNIX System Services Planning (GA22-7800), Chapter 7. Sharing file systems in a sysplex, Illustrating file systems in single system and sysplex environments. It's about 5 pages with illustrations and sh

Re: USS "date" command, subtract one day

2013-03-15 Thread Joel C. Ewing
On 03/15/2013 10:29 AM, Paul Gilmartin wrote: On Fri, 15 Mar 2013 09:36:41 -0500, Joel C. Ewing wrote: single date. For example, if consistency is not guaranteed, the test for day "01" may run while the date is last day of month, and subsequent code which presumes "not day 01" may run aft

Re: IBM-MAIN Digest - 13 Mar 2013 to 14 Mar 2013 (#2013-73) USS "date" command, subtract one day

2013-03-15 Thread Joel C. Ewing
Of course in light of unit standards that have been in effect since 1998, the correct terminology would be to refer to the unit's position of the high-order word of the TOD as corresponding to a "mebimicrosecond" to correctly convey the [still repugnant] mix of binary and decimal multipliers.

Re: IMS - how can I force the OLDS purge

2013-03-15 Thread Cardillo, Gregory
Binyamin, ITschak described how to SWITCH OLDS - though under supported IMS releases, /SWI OLDS would be preferred as you don't need to have a database to take offline... but I'm not sure that is what you are trying to do... The only time IMS will indicate a PURGE of the OLDS is during abnormal

2013 VM Workshop attendee registration is open!

2013-03-15 Thread Mike Walter
2013 Workshop: June 20-22 2013 will be at Indiana University-Purdue University Indianapolis (Indianapolis, IN) WHO: z/VM, and Linux on System z Friends WHAT: Location, travel, lodging from (very reasonably priced!) brand new dorm rooms in a former hotel up to nearby hotels, registration,

mfnetdisk new URL

2013-03-15 Thread Shai H
HI, The old site: www.mfnetdisk.com The new site: https://sites.google.com/site/zosnetdisk More change will be done to the new site in google to make it better compare to what it is now. Comments are welcome. Currently both sites are operational but soon only the Google site MFNetDisk will be op

Re: IBM Mainframe (1980's) on You tube

2013-03-15 Thread Phil Smith
Frank Swarbrick wrote: >This reminds me of something I've wondered. Are they any non-IBM products >that support the Common Cryptographic Architecture? Define "support". Lots of products use ICSF. Lots of products use various CCA-provided services, on various platforms. So...what do you really

Re: z890 into the Plex (Compliance w/z10 CF and z9 and up members?)

2013-03-15 Thread Marna WALLE
Yes, that is correct. -Marna WALLE z/OS System Install IBM Poughkeepsie -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Re: Query for Destination z article -- mainframes back to the future

2013-03-15 Thread R.S.
AFAIR I read about memory prices in some book about mainframes. According to the book the ferrite memore cost was 1.3 USD per BYTE at the beginning of S/360 and quickly dropped to 1.0 USD/BYTE. So, 1MB was over million dollars. BTW: At the time of CP/M (late 70's/erarly 80's) cost of 64kB RAM wa

Re: Copying HFS Files

2013-03-15 Thread Rob Schramm
Ocopy Rob Schramm On Mar 15, 2013 2:00 PM, "Paul Gilmartin" wrote: > On Fri, 15 Mar 2013 17:26:16 +, Leonardo Vaz wrote: > > >You could use the omvs command cp: > > > http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/bpxza5b0/CP?SHELF=EZ2ZBK0K&DT=20100625104946 > > > But in a multi

Re: Parameter list changes between calling and called program

2013-03-15 Thread Brian Westerman
When you call the second program, is that the one that gets the abend? If so, what is the abend code, plus what makes you think it's the data in reg1 that is giving you the abend? Brian -- For IBM-MAIN subscribe / signoff / ar