IDMS

  • 1.  T063 abend in CA IDMS release 17.0 tape GJH01B

    Posted Nov 12, 2011 10:16 PM
    We implemented a revised DC-COBOL yesterday and started getting T063 abends. The newest Messages and Codes (volume 1) manual I have is from rels 16 and doesn't (seem to) have this abend code.

    I assume it's in the rels 17. If so, could someone reply with the description? PSW is zeroes so I assume the error is occurring at initial load time.

    110911 11.55.22 IDMS DC027007 V10 T511961 TASK:ADS2 PROG:PTEL2770 ABENDED WITH CODE T063

    Alex McLellan - Ford of Canada Production Support (IT)


  • 2.  RE: T063 abend in CA IDMS release 17.0 tape GJH01B

    Posted Nov 13, 2011 01:21 AM
    Alex:

    There was an APAR for IDMS release 15.0 for this error, I am not sure if there is a release 16 or release 17 version of this APAR?

    [color=#0008f6]++APAR (QO88748)
    DESC (LE/370 programs abend T03C while in ESTAE processing.)
    /* ---------------------------------------------------------------- */
    /* PRODUCT: CA-IDMS/DB CORE-MVS/VSE/VM/MSP/BS2000 */
    /* RELEASE: 15.0 */
    /* DATE: 31 MAY 2007 */
    /* HYPER: NO */
    /* */
    /* STARTRAK PROBLEM PRODUCT NAME: IDMSDC PROBLEM NUMBER: 2949 */
    /* STARTRAK PROBLEM PRODUCT NAME: IDMSDC PROBLEM NUMBER: 2950 */
    /* ---------------------------------------------------------------- */
    /* LE/370 programs abend T03C while in ESTAE processing. */
    /* --------------------------------------------------- */
    /* */
    /* Clients who have upgraded their operating systems or */
    /* have applied IBM apar PK28112 or its equivalent */
    /* to IBM module CEEBHINE on applicable releases of */
    /* z/OS will receive T03C abends for LE/370 programs */
    /* which are in ESTAE processing. */
    /* */
    /* NOTE: The lowest maintenance level to which this APAR */
    /* applies is service pack SP00, gen level 0103. */
    /* ---------------------------------------------------------------- */.
    ++VER (Z038) FMID(CGJF000)
    PRE (GJ00SP1,GJ00SP2,GJ00SP3,GJ00SP4,GJ00SP5,GJ00SP6)
    SUP (TC23409).
    ++ZAP (RHDCOSCR) DISTLIB(DISTLOAD).
    NAME RHDCSCRN
    IDRDATA QO88748
    BASE 000000
    VER 0018C2 8810,001F,1211,4770,C0DE
    REP 0018C2 4700,0000,0700,4700,0000[color]

    William Allen Jr


  • 3.  RE: T063 abend in CA IDMS release 17.0 tape GJH01B

    Broadcom Employee
    Posted Nov 14, 2011 05:53 PM
    Hi Alex,

    The T0xx abend codes are issued by SVC screening when there is a call to an unsupported SVC. Where xx is the SVC number in hex. Abend code T063 is a call to the DYNALLOC SVC 99 (x'63'). In COBOL programs this can be caused by using the compile option TEST. There may also be other options I’m not aware of. Best to check what options other programs are compiled with.

    Edward Gorga


  • 4.  RE: T063 abend in CA IDMS release 17.0 tape GJH01B

    Posted Nov 15, 2011 02:23 AM
    Gary's bang on (as usual).

    Yes, our compile options now default to CBL TEST (the company is replacing Xpediter with IBM Debug and change was put in to facilitate use of the new tool) I recompiled with CBL NOTEST and program now works as advertised.

    Thanks all for the replies. Alex McLellan