How to not implement Global Type Sequencing in Endevor V18.0 and above
search cancel

How to not implement Global Type Sequencing in Endevor V18.0 and above

book

Article ID: 37687

calendar_today

Updated On:

Products

Endevor Endevor Natural Integration Endevor - ECLIPSE Plugin Endevor - Enterprise Workbench

Issue/Introduction

If you are currently not using Type Sequencing and do not want to implement it to upgrade to Endevor v18.0.12, you can setup a dummy member in the Parmlib.  
 

Environment

Release: V18.0 and above
Component: ENDBAS

Resolution

If you are currently not using Type Sequencing and do not want to implement it to upgrade to Endevor v18.0.12, you can setup a dummy member in the Parmlib.  To do this follow the instructions below: 

  1. Create a dummy Type Sequence member in the PARMLIB that contains a single comment line with an asterisk in column 1. 
    NOTE: Using a dummy Type Sequencing member, SCL and API Element actions are executed in alphabetical order by Type names. 
You can use the following JCL to do this: 

YOUR JOBCARD GOES HERE 
//****************************************************** 
//* ALLOCATE PARMLIB DATASET FOR GLOBAL TYPE SEQUENCING 
//****************************************************** 
//SETUP EXEC PGM=IEFBR14
//PARMLIB DD DSN=iprfx.iqual.PARMLIB,
// DISP=(NEW,CATLG,DELETE),STORCLAS=TSO,
// DCB=(RECFM=FB,LRECL=80),UNIT=SYSDA,
// SPACE=(TRK,(2,1,5))
//****************************************************** 
//* CREATE PARMLIB TYPE SEQUENCE MEMBER 
//****************************************************** 
//TYSQMBR EXEC PGM=IEBUPDTE,PARM=NEW 
//SYSPRINT DD SYSOUT=* 
//SYSUT2 DD DISP=SHR,DSN=iprfx.iqual.PARMLIB
//SYSIN DD DATA,DLM='<>'
./ ADD NAME=TYSQMBR 
* ADD TYPE SEQUENCE STATEMENTS HERE. 

 

2.  Update the C1DEFLTS and define the PARMLIB data set and dummy Type Sequence member using the PARMLIB and TYPESEQMBR parameters.  Here is an example that matches the above JCL: 

PARMLIB='iprfx.iqual.PARMLIB', 
TYPESEQMBR=TYSQMBR,