Question regarding CA TPX fixes R099143 and R099144 (Temporary Keep VT)
search cancel

Question regarding CA TPX fixes R099143 and R099144 (Temporary Keep VT)

book

Article ID: 92333

calendar_today

Updated On:

Products

TPX - Session Management Vman Session Management for z/OS

Issue/Introduction



Before, applying R099143 and R099144, the 'Temporary Keep VT' field is already in the TEN0093 panel and appears to have a default of 'N'. Is the default value 'N'? What is the variable name for the 'Temporary Keep VT' field? 

Environment

Release: NVINAM00200-5.4-TPX-Session Management-Access Management package
Component:

Resolution

1. PTFs RO99143 and RO99144 are replacement PTFs for the original PTFs, thus Temporary Keep VT field already existed in the maintenance stream.

2. This maintenance is correcting behavior of the added function of making Keep ACB temporary to work as advertised. Temporary Keep VT was developed to address certain customer issues with running out of Virtual Terminals for their applications that required Keep ACB. This required that Keep ACB be a temporary controlled by a timer.

3. The default value is "N"

4. Related variable names:
  • ACTTRSV - Temporary Keep VT  (Reserved ACB Release) - Specify Y to have TPX check if reserved ACBs can be released.  Check and release is done at the SMRT Checking Interval if interval is greater than zero.
  • ACTSAVE -  Keep virtual terminal  (Reserved ACB/Keep ACB) -   Specifies whether the virtual terminal should be maintained when the application session ends. Certain applications require the virtual terminal to be maintained and reserved for that session for security reasons [Note: Reserved ACB is also known as Keep ACB.]

5. Listed below is the batch report example to determine whether any user sessions have specified KeepACB = 'Y' 
           C 
           C THIS SAMPLE TPX BATCH ADMINISTRATION JOB PRINTS ALL 
           C ACT ENTRY NAME. 
           C 
              EXTRACT GIVING(XTRACT) ACT (VACTTBL(ACTCNVT)) 
              REPORT GIVING(RPTFILE) USING (XTRACT) 
              ( 
               ( ' APPLID =' '&ACTNAME' 
                 ' ACTINQ = &ACTINQ' 
                 ' KEEPACB = &ACTSAVE ' 
                 ' ACBRELASE = &ACTTRSV ' 
                                                              ) 
                                                                    ) 


6. Here is the snippet of what the output would look like : 
       APPLID =AION        ACTINQ = Y KEEPACB = N ACBRELASE = N 
       APPLID =AIONADS     ACTINQ = Y KEEPACB = N ACBRELASE = N 
       APPLID =AIONBMP     ACTINQ = Y KEEPACB = N ACBRELASE = N 
       APPLID =AIONCICS    ACTINQ = Y KEEPACB = N ACBRELASE = N 
       APPLID =AIONDEVO    ACTINQ = Y KEEPACB = N ACBRELASE = N