How to Exclude CICS Regions in USRSEL
search cancel

How to Exclude CICS Regions in USRSEL

book

Article ID: 46707

calendar_today

Updated On:

Products

MICS Resource Management

Issue/Introduction

How to exclude a CICS region from processing in the DAY040 step.

 

Environment

Component: MICS-Resource Management-Accounting and Chargeback

Resolution

Use the _USRSEL macro to exclude records based on CSUAPPL (also ORGSYSID, if applicable).

Code an exit similar to the following in prefix.SOURCE(#BASEXIT).

%INCLUDE  SOURCE(#BASEXIT);

 

MACRO _USRSEL 
/* TO DELETE A RECORD SKIP_REC=1; */ 
IF ROUTINE EQ 'DYCICFMT' THEN 
  

  IF CSUAPPL EQ 'XXXXXX' OR 
     CSUAPPL EQ 'YYYYYY' OR 
     CSUAPPL EQ 'ZZZZZZ' THEN 
  SKIP_REC=1;

 %