CA Dispatch Culprit report that will show the Bundle ID's that were created for a specific date range
search cancel

CA Dispatch Culprit report that will show the Bundle ID's that were created for a specific date range

book

Article ID: 219656

calendar_today

Updated On:

Products

Dispatch Output Mgmt

Issue/Introduction

Is there a CA Dispatch Culprit report that will show the MANIFEST page information, including the bundle id's,  that were created on specific date ranges?

We recently had a printer issue (since resolved) and business wanted a list of Bundle id's so they could reprint those complete bundles.

Environment

Release : 11.7

Component : CA Dispatch

Resolution

- Use the following Culprit statements to create a new CADSOPTN library control member.

- When you submit your DSEXCULP JCL, set the MEMBER= symbolic up to point to the new member name. 

!! REMEMBER that in order to be valid executable CULPRIT control statements, they must start in column 2 !!

- Copy/Paste the following control statements into the new member and REMOVE the "TOP & BOTTOM OF DATA" lines. This should keep the actual control statements in column 2.

- Date range selection is at the bottom via the 'IF" statement.

 

***************************** Top of Data *****************
 INPUT 6000 DB(D) SS=SSRD01,CAISCHEM,1                     
 PATH01 RD-RSTAT                                           
 28SORT RD-RSTAT-BUNDLE-ID,0                               
 280 TIME-DUEOUT         0                                 
 280 TIME-QUEUED         0                                 
 280 TIME-PRINTED        0                                 
 280 TIME-DELIVER        0                                 
 280 DATE-DUEOUT         0                                 
 280 DATE-QUEUED         0                                 
 280 DATE-PRINTED        0                                 
 280 DATE-DELIVER        0                                 
 280 DATE-CREATED        0                                 
 280 WK-IN-DATE          0                                 
 280 THEAD1  '                     '                       
 280 THEAD2  '                     '                       
 280 THEAD3  '                     '                       
 280 RD-RSTAT-NUM                                          
 280 WTOT1                                                 
 280 WTOT2                                                 
 280 WTOT3                                                 
 280 WTOT4                                                 
 280 TOTAL      0                                          
 280 PAGTOT                                                
 280 RECTOT                                                
 280 RPTTOT                                                
 280 FORMCODE  '2'                                         
 280 WORKDATE   0                                          
 280 JULDATE    0                                          
 280 FLAG       0                                          
 283 LISTING OF BUNDLE MANIFEST INFO  BY DATE RANGE        
 2841*  1 '   '                                            
 2843*  1 '   '                                            
 2842*  2 'BUNDLE ID'                                      
 2842*  3 'REPORT NAME'                                    
 2842*  4 'JOBNAME'                                        
 2842*  5 'MAILDROP'                                       
 2842*  6 'FORMS'                                          
 2842*  7 'DEST '                                          
 2842*  8 'COPIES'                                         
 2842*  9 'PAGES'                                          
 2842* 10 'SYSOUT CLASS'                                   
 2842* 11 'DATE CREATED'                                   
 2852*  2 RD-RSTAT-BUNDLE-ID                               
 2852*  3 RD-RSTAT-REPORT-NAME                             
 2852*  4 RD-RSTAT-JOBNAME                                 
 2852*  5 RD-RSTAT-MAILDROP                                           
 2852*  6 RD-RSTAT-FORMS                                              
 2852*  7 RD-RSTAT-DEST1                                              
 2852*  8 RD-RSTAT-COPIES                                             
 2852*  9 RD-RSTAT-PAGES                                              
 2852* 10 RD-RSTAT-SYSOUT-CLASS                                       
 2852* 11 DATE-CREATED                    FM '9999/99/99'             
 287260 MOVE RD-RSTAT-DATE-CREATED WK-IN-DATE                         
 287261 CALL US12 (WK-IN-DATE 'P' 'CDD' 'CMD' DATE-CREATED)           
 287270 IF DATE-CREATED GE 20190713 AND DATE-CREATED LE 20210713 300  
 287275 DROP                                                          
 287300 TAKE
**************************** Bottom of Data ************************