Paul Boin > OS390-IEBUtils-0.01 > OS390::IEBUtils

Download:
OS390-IEBUtils-0.01.tar.gz

Annotate this POD

CPAN RT

Open  0
Report a bug
Source  

NAME ^

OS390::IEBUtils - IEBPTPCH and IEBUPDTE work-alikes.

SYNOPSIS ^

  use OS390::IEBUtils;

  my $obj = OS390::IEBUtils::IEBUPDTE;
  my ($name, $dataRef) = $obj->getNextMember();
  my $arrayRef = $obj->getMemberNames();

  my $obj = OS390::IEBUtils::IEBPTPCH;
  $obj->addFile(/$contents);

DESCRIPTION ^

Stub documentation for OS390::IEBUtils, created by h2xs. It looks like the author of the extension was negligent enough to leave the stub unedited.

Blah blah blah.

EXPORT

None by default.

OS390 INFO ^

On the mainframe, you can use the following step to dump PDS members to a sequential file. This should produce the input that OS390::IEBUtils::IEBUPDTE will expect to see on the PC side.

  //IEBPTPCH EXEC  PGM=IEBPTPCH                        
  //SYSPRINT DD SYSOUT=*                               
  //SYSIN    DD 
   PRINT TYPORG=PO,MAXFLDS=1,MAXNAME=999     
   RECORD FIELD=(80)                         
  //SYSUT1   DD DSN=HLQ.INPUT.PDS,DISP=SHR             
  //SYSUT2   DD DSN=HLQ.OUTPUT.SEQUENTIAL,                    
  //         DISP=(NEW,CATLG,DELETE),                  
  //         SPACE=(TRK,(9,9),RLSE),UNIT=SYSDA,        
  //         DCB=(RECFM=FB,LRECL=81,BLKSIZE=0)         

SEE ALSO ^

Mention other useful documentation such as the documentation of related modules or operating system documentation (such as man pages in UNIX), or any relevant external documentation such as RFCs or standards.

If you have a mailing list set up for your module, mention it here.

If you have a web site set up for your module, mention it here.

SPONSOR ^

This code has been developed under sponsorship of InterTech Training and Consulting. They can help you with a variety of OS390, OS/390, z/OS tasks, especially those relating to report distribution products.

http://www.intertechconsulting.net

AUTHOR ^

Paul Boin, <paul@boin.org>

COPYRIGHT AND LICENSE ^

Copyright (C) 2005 by Paul Boin

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.