On DB2 z/OS that information can be obtained in the sysibm.syscolumns table. You could write a query something like this:
select SUBSTR(NAME, 1, 35), COLTYPE, LENGTH, SCALE, NULLS from SYSIBM.SYSCOLUMNS WHERE TBCREATOR = 'XXX' and TBNAME = 'XXXXXX' ORDER BY COLNO;
This and other catalog tables are described in the SQL Reference manual Appendix F.