home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / protocol / ibm / 726 < prev    next >
Encoding:
Internet Message Format  |  1992-09-11  |  1.3 KB

  1. Path: sparky!uunet!cs.utexas.edu!qt.cs.utexas.edu!yale.edu!jvnc.net!darwin.sura.net!zaphod.mps.ohio-state.edu!sdd.hp.com!hplabs!ucbvax!VM.MARIST.EDU!HARRY
  2. From: HARRY@VM.MARIST.EDU ("A. Harry Williams")
  3. Newsgroups: comp.protocols.ibm
  4. Subject: re: ind$file running on cms reading os files
  5. Message-ID: <IBM-NETS%92091113495116@BITNIC.EDUCOM.EDU>
  6. Date: 11 Sep 92 17:37:12 GMT
  7. References: <LENBOYLE@CCVM.SUNYSB.EDU>
  8. Sender: daemon@ucbvax.BERKELEY.EDU
  9. Reply-To: BITNIC IBM-NETS List <IBM-NETS%BITNIC.BITNET@cmsa.Berkeley.EDU>
  10. Distribution: world
  11. Organization: Marist College
  12. Lines: 21
  13.  
  14. On Fri, 11 Sep 1992 11:06:20 EDT Leonard Boyle said:
  15. >We have a user that is link to an MVS disk from cms. They are trying to
  16. >use IND$FILE to transfer an sequential file from the OS-disk to their
  17. >PC.
  18. >
  19. >The problem is that they do not know the DD to use to connect the IND$FILE
  20. >program with the input file. Can anyone help with this info.
  21.  
  22. I'm not sure it can be done.  The TSO and CMS versions are separate products.
  23.  
  24. One way might be to use the FILEDEF command to re-direct a 'fn ft fm'
  25. to a dsn.  Below is relevant portion of exec from Dave Merrifield from
  26. U of Ark.
  27.  
  28.  
  29. /* Define the OS file, and then invoke the editor */
  30. 'FILEDEF SYSIN DISK OSEDIT FILE' diskmode 'DSN' dsname
  31. If rc^=0 then Exit rc
  32. 'XEDIT OSEDIT FILE'
  33. 'FILEDEF SYSIN CLEAR'
  34. Exit
  35.