On Tue, 2 Sep 2008 14:51:09 -0400, Lizette Koehler <[EMAIL PROTECTED]>
wrote:

>I am trying to figure out how to correct this issue. I am at z/OS V1.9.
>
>IGD01008I ***********************************************************
>IGD01008I ** A  L  L  O  C  A  T  I  O  N    F  A  I  L  E  D  ! ! **
>IGD01008I ***********************************************************
>IGD01008I ** DATA SET DOES NOT CONFORM TO PROD NAMING STANDARDS    **
>IGD01008I ** PLEASE CONTACT STORAGE MANAGEMENT FOR FURTHER DETAILS **
>IGD01008I MESSAGES ISSUED BY STORCLAS ROUTINE HAVE EXCEEDED BUFFER AREA.
NOT ALL MESSAGES WERE WRITTEN.
>
>
>
> According to the DFSMS manual I am only allowed 110 characters.
>
>However, I have the following coded
>----+----1----+----2----+----3----+----4----+----5----+----6----+----7---
>   WRITE '***********************************************************'
>   WRITE '** A  L  L  O  C  A  T  I  O  N    F  A  I  L  E  D  ! ! **'
>   WRITE '***********************************************************'
>   WRITE '** DATA SET DOES NOT CONFORM TO SYSTEM STANDARDS    *******'
>   WRITE '** PLEASE CONTACT STORAGE MANAGEMENT FOR FURTHER DETAILS **'
>   WRITE '***********************************************************'
>     EXIT CODE(22)
>    END
>
>Which is 299 characters (spaces counted).
>
>Is there a way around this so I can produce more lines?  Or do I have to
reduce my content until it is at or below 110 characters?
>

If it hurts, don't do it.  :-)

What's wrong with something like this:

WRITE '** DATA SET DOES NOT CONFORM TO SYSTEM STANDARDS.' +       
      '** CONTACT STORAGE MGMT IF NEEDED'             

They should already know the allocation failed by the IGD* messages.

Mark            
--
Mark Zelden
Sr. Software and Systems Architect - z/OS Team Lead
Zurich North America / Farmers Insurance Group - ZFUS G-ITO
mailto:[EMAIL PROTECTED]
z/OS Systems Programming expert at http://expertanswercenter.techtarget.com/
Mark's MVS Utilities: http://home.flash.net/~mzelden/mvsutil.html

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

Reply via email to