Re: Print Option from Mainframe to Microsoft Note

2012-08-02 Thread Arthur Fichtl
hi, Jake, what about that: http://publib.boulder.ibm.com/infocenter/zos/v1r13/index.jsp?topic=%2Fcom.ibm.zos.r13.aokfa00%2Fpdfxmp.htm Transform an AFP MVS™ data set, specifying a form definition To transform the MVS data set USERX.AFP(MYFILE) into an output PDF file called myfile.pdf,

Re: InfoPrint Server Printway - Query

2012-08-02 Thread Jake anderson
Hi, Guess I need to Order(Priced one) : http://www-01.ibm.com/common/ssi/cgi-bin/ssialias?infotype=ddsubtype=smappname=ShopzSerieshtmlfid=897/ENUS5655-TF1 FMID Description HTFX111 Print Transform AFPxPDF I could Just see the AFP is just given for Z/OS 1.1, but Hopefully it should

Re: Why ain't there no XILL?

2012-08-02 Thread John Gilmore
Any standard logic text establishes that o AND, inclusive OR, and NOT are together universal, o NOR alone is universal, and o NAND alone is universal. Thus, in an obvious notation, XOR(a,b) =df (a | b) (¬(a b)) What is all the pother about? John Gilmore, Ashland, MA 01721 - USA

Re: Why ain't there no XILL?

2012-08-02 Thread Wayne Driscoll
I would assume the pother is because OIL and NIL are macros that provide or and and processing with serialization. Your notation fails to provide serialization. It should be relatively easy to create an XIL macro based on OIL or NIL however. ===

Re: Why ain't there no XILL?

2012-08-02 Thread Paul Gilmartin
Serialization, performance, auxiliary storage and a related hardware realization: On Aug 2, 2012, at 07:46, Wayne Driscoll wrote: I would assume the pother is because OIL and NIL are macros that provide or and and processing with serialization. Your notation fails to provide serialization.

Re: Why ain't there no XILL?

2012-08-02 Thread McKown, John
A weird way would be: _OR OPSYN OR OR OPSYN XR OIL ... OR OPSYN _OR This changes the OR instruction in the OIL macro into an XR instruction. Of course, this also ASSuMEs that OIL macro will never use more than one OR instruction. If you want, you can copy the OIL macro to your own MACLIB

Re: Rexx Exec Help Desperately Sought!

2012-08-02 Thread George Rodriguez
I am very happy to report that with everyone's help and the manual I was able to finish up this Rexx EXEC. The execution of XMITIP was accomplished with: XMITIP email_address CONFIG parm I honestly appreciate all the help! Thanks :-) * * *George Rodriguez* *Specialist II - IT Solutions*

Re: Why ain't there no XILL?

2012-08-02 Thread John Gilmore
David Crayford suggests that the pother to which I objected is perhaps: | Because it's not done in the hardware to make it self-documenting? which raises the question what he means by self-documenting. Machine instructions are not self-documenting. If z/Architecture instructions were

Re: Listserv Archives via Web

2012-08-02 Thread Mary Anne Matyaz
Is something wrong with the archives from the web? It seems better today. MA -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Re: Why ain't there no XILL?

2012-08-02 Thread McKown, John
There are now XIHF and XILF to do an Xor of the high 32 bits or the low 32 bit (respectively) with an immediate fullword. Curiously, there are NIHF, NILF for fullword aNd Immediate fullword. But there are also NIHH, NIHL, NILH, NILL to do halfword and immediates to bits 0..15, 16..31, 32..47,

Re: File Processing

2012-08-02 Thread Lizette Koehler
Ron, Are you using BUFNO or other type of buffering to help this process? Is it a straight sequential read or how are processing the records? What is the abend? Is it an MVS abend or application abend? Sometimes tuning the JCL or process can avoid abends - depending on what they are.

Re: File Processing

2012-08-02 Thread Sam Siegel
On Thu, Aug 2, 2012 at 11:05 AM, Ron Thomas ron5...@gmail.com wrote: The current abend is SOC7 module needs to run in production. The input file is comming from a third party vendor and some reason the data isn the file is corrupted, the program might get abended. We need a process to work

Re: File Processing

2012-08-02 Thread Farley, Peter x23353
Ron, Your application people MUST first add checks in their program(s) for valid numeric data (ALWAYS do this when reading data supplied by outside vendors and customers; trust but verify is the golden rule) and automatically skip those records. Another good practice for bad data records is

Re: File Processing

2012-08-02 Thread Steve Comstock
On 8/2/2012 12:45 PM, McKown, John wrote: Oh, I forgot to mention that you can use LE functions to trap the abend, writean error message, and continue. There are some basic examples in the SCEESAMP data set. For COBOL, look at IGZTCHDL, IGZTDIV, IGZTDIVS, IGZTDIVU, IGZTDIVZ, IGZTHAND (very

Auditors Don't Know Squat!

2012-08-02 Thread zOSdude
Our auditors (Feds) say we need to apply all new PTF's within 30 days of availability. I'm speechless. Does anyone have the patience to form a cogent argument without laughing, crying, or tying one on? I told my boss that if I did that, we'd be about as stable as a windows PC. Thanks, Greg

Re: File Processing

2012-08-02 Thread John Gilmore
John McKown writes begin extract Why not fix your processing program to not abend? In COBOL, try verifying the record data before processing it. Perhaps a IF NOT NUMERIC type test. end extract and it would be impossible to disagree with the substance of this recommendation. There are, however,

Re: File Processing

2012-08-02 Thread McKown, John
I believe in validity processing. I.e. SALARY 0 AND 100 type things, unless done by the data source (such as DB2 validity constraints). So adding an IS NUMERIC doesn't seem like much of an addition to me. I've used ON units in PL/I to trap errors. Does the latest COBOL have verbs to trap

Re: Auditors Don't Know Squat!

2012-08-02 Thread Jerry Whitteridge
Establish a Burn In system to apply the PTF's to. Then age them as appropriate for your systems and roll out. That way you have satisfied your Auditor as well as giving you a test bed for the PTF's. If it really makes your system unstable you will have the documentation to pass back to the

Re: Auditors Don't Know Squat!

2012-08-02 Thread Conlin, Pete
Hi Greg, Invite the auditor to approve a presentation at a professional conference to show the steps and consequences of such a policy. Should this be a problem, assign the auditors full responsibility for problems due to PE'd PTFs that would otherwise have been caught using your current

Re: Listserv Archives via Web

2012-08-02 Thread Mark Zelden
On Thu, 2 Aug 2012 12:21:25 -0500, Elardus Engelbrecht elardus.engelbre...@sita.co.za wrote: Mary Anne Matyaz wrote: Is something wrong with the archives from the web? It seems better today. Yup. The whole listserv.ua.edu was slow, slower, slowest during the last few days. Even the Google

Re: Auditors Don't Know Squat!

2012-08-02 Thread R.S.
W dniu 2012-08-02 21:11, zOSdude pisze: Our auditors (Feds) say we need to apply all new PTF's within 30 days of availability. I'm speechless. Does anyone have the patience to form a cogent argument without laughing, crying, or tying one on? Well, your auditor are right. It would be better to

Re: Auditors Don't Know Squat!

2012-08-02 Thread McKown, John
-Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of R.S. Sent: Thursday, August 02, 2012 3:45 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Auditors Don't Know Squat! W dniu 2012-08-02 21:11, zOSdude pisze: Our auditors (Feds)

Using NOTE and POINT simulation macros on CMS?

2012-08-02 Thread Thomas David Rivers
I'm having some issues with using the OS Simulation macros NOTE and POINT under VM/CMS. I've been scouring documentation to try and discover just what the CMS differences are... But, at the moment, I'm trying to simply do a BSAM OPEN (for READ)... Then, a NOTE to record the starting TTR of the

Re: Using NOTE and POINT simulation macros on CMS?

2012-08-02 Thread McKown, John
I don't know, but isn't it necessary to reset the DCBOREOF bit in the DCB field DCBORBYT? I would have thought that even z/OS would need that. But I've never tried to READ once I had gotten an EOF. -- John McKown Systems Engineer IV IT Administrative Services Group HealthMarkets(r) 9151

NASPA

2012-08-02 Thread scott
Is NASPA (National Association of Systems Programmers) still a worthwhile organization to belong to? Just looked at their recent online publication and it really lacks of what once was. -- For IBM-MAIN subscribe / signoff /

Re: Using NOTE and POINT simulation macros on CMS?

2012-08-02 Thread Paul Gilmartin
OS simulation is dreadfully deficient. On 2012-08-02 15:00, Thomas David Rivers wrote: Then, a POINT to return to the beginning of the file, using the TTR retrieved from just after the OPEN (with +1 added because the NOTE occurs after OPEN but before any READ.) I believe that NOTE is

Re: Using NOTE and POINT simulation macros on CMS?

2012-08-02 Thread Anne Lynn Wheeler
paulgboul...@aim.com (Paul Gilmartin) writes: OS simulation was implemented only to the extent necessary to support (some of) the supported utilities. For example, PDS member statistics (the user info area) were deemed unnecessary and not implemented. ISPF/VM goes to outrageous gyrations

Re: File Processing

2012-08-02 Thread Clark Morris
On 2 Aug 2012 16:24:06 -0700, in bit.listserv.ibm-main you wrote: My initial reaction is that this might be just an application (design) problem. Someone thought it would never grow to get this big. If it were vsam, you might consider the DB2 VSAM transparency. But in the case of this being a

Re: Using NOTE and POINT simulation macros on CMS?

2012-08-02 Thread Paul Gilmartin
The Strategic Interactive Platform: On Thu, 2 Aug 2012 19:44:25 -0400, Anne Lynn Wheeler wrote: ... later when company declared CMS strategic interactive platform (and abondoned TSO for that purpose) ... there was quite a bit of efforts getting CMS running on MVS. it was operational but