home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / bit / listserv / ibmmain / 2967 < prev    next >
Encoding:
Text File  |  1993-01-08  |  2.2 KB  |  41 lines

  1. Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
  2. Subject: (no subject given)
  3. Path: sparky!uunet!paladin.american.edu!auvm!CORNELLC.CIT.CORNELL.EDU!TJF
  4. Return-Path: <@VM1.CC.UAKRON.EDU:IBM-MAIN@RUTVM1.BITNET>
  5. Message-ID: <IBM-MAIN%93010807481859@RUTVM1.RUTGERS.EDU>
  6. Newsgroups: bit.listserv.ibm-main
  7. Date:         Fri, 8 Jan 1993 07:21:24 EST
  8. Sender:       IBM Mainframe Discussion list <IBM-MAIN@RICEVM1.BITNET>
  9. From:         Gary Buhrmaster <TJF@CORNELLC.CIT.CORNELL.EDU>
  10. Lines: 29
  11.  
  12. JES2 4.2 tends to only use the extended OUTPUT JCL information to build
  13. its header pages.  That information is passed in the output processing
  14. section of the NJE headers.  You could make a mod to RSCS or JES to
  15. move the 8 character NJE DEPT and BUILDING information to an output
  16. processing section, or change the JES2 to use the basic (8 character)
  17. fields.  The sample exit 1 supplied with JES2 (in SAMPLIB) could
  18. probably be modified to do what you want.  Some keywords (such as ROOM)
  19. are extracted from the JCT if the extended information is not provided,
  20. but DEPT or BUILDING are not specially handled.
  21.  
  22. The real culprit here, in my opinion, is RSCS, in that it does not
  23. directly supporting the building of output processing sections from TAG
  24. information.  From the VM side, the output processing section
  25. information is taken only from the XAB, and unless you have PSF (or
  26. write yourself a PIPEs exec), you normally don't create an XAB.  RSCS
  27. will never build an output processing section from TAG information (or
  28. merge it, which would be even more desirable).  DEPT and BUILDING are
  29. only one example of the more general problem of using the equivalent of
  30. extended OUTPUT JCL to prepare output for processing.  And many of the
  31. OUTPUT keywords do not even have NJE header equivalents, which means
  32. that building an output processing section is a requirement to pass the
  33. information.  It would be nice if RSCS would support an extended DEPT
  34. field if I specify it, and place it in the output processing section.
  35. Of course then you run into the TAG limit of 130 characters very
  36. quickly (such as with 4 fields of 60 characters each for the ADDRESS
  37. field).  Perhaps it is time to abandon TAG for new options and just
  38. start using the XABs.
  39.  
  40. Gary
  41.