How to code a C1BM3000 step in an Endevor processor
search cancel

How to code a C1BM3000 step in an Endevor processor

book

Article ID: 134191

calendar_today

Updated On:

Products

Endevor

Issue/Introduction

When coding a C1BM3000 step in a processor  using NDVRC1 with PARM=C1BM3000, it fails due to reserved DD statements being used.  
 
Is there a utility, or method, which can be used within a processor to update an element?

Environment

Release : All support versions

Resolution

To properly code a C1BM3000 step in a processor,  do this: 

//************************************************************* 
//ADDIT EXEC PGM=C1BM3000,PARM=(INDD,MSGOUT1)  
//*************************************************************  
 //MSGOUT1 DD SYSOUT=* 
//MSGOUT2 DD SYSOUT=* 
//SYSABEND DD SYSOUT=*  
//INDD DD *  
ADD ELEMENT '&C1ELEMENT'  
FROM DSNAME 'uprfx.uqual.SORTWORK' 
  TO ENV '&C1ENVMNT'
        SYSTEM '&C1SYSTEM' 
        SUBSYSTEM '&C1SUBSYS'  
        TYPE '&C1ELTYPE'  
   OPTIONS CCID 'GEN-IT' COMMENTS "TEST SORT" OVERRIDE SIGNOUT  
    UPDATE BYPASS GENERATE PROCESSOR PROC GROUP '&C1PRGRP
 .  
/* 

 
For more information see the C1BM3000 Utility documentation.