TPX - How to identify users with the 'Mult' Transfer Option for Batch Reporting
search cancel

TPX - How to identify users with the 'Mult' Transfer Option for Batch Reporting

book

Article ID: 217277

calendar_today

Updated On:

Products

TPX - Session Management

Issue/Introduction

The  Transfer Option Mult is found under the User Details:

 

Environment

Release : 5.4

Component : CA-TPX for OS/390

Resolution

The Batch Reporting variables for Profile, User and Session are found under the Batch Administration area of the documentation:

The Transfer Option variable is under User variables and is: UIDX$XFR.

Here is an extract statement to pull users who have the Transfer Option as 'Mult':

   EXTRACT GIVING(EXTFILE) USER AND MATCHING SESSIONS 
   (UIDX$XFR(MULT))                                   

The Report statement can be coded to include any user variables, here is an example:

   REPORT GIVING(RPTFILE) USING(EXTFILE)                          
    (( ' &UIDXNAME' '&UIDX$XFR' '&VUSR$PRF' '&VUSRRNME' '&UIDXTOU1'
  ' &UIDXPTIX'))                                                 
//