Determine what release and Genlevel of Telon that is being executed
search cancel

Determine what release and Genlevel of Telon that is being executed

book

Article ID: 245314

calendar_today

Updated On:

Products

Telon Application Generator

Issue/Introduction

How can It be determined what release and Genlevel of Telon that is being executed?

Environment

Release : 5.1

Component : Telon Application Generator

Resolution

There are 3 ways to determine the release and Genlevel of Telon.

When in the TDF main menu, the bottom right hand corner of the screen will show the following (as an example): 

 1 -- USER PROFILE MAINTENANCE                                
 2 -- DATA ADMINISTRATION                                     
 3 -- PANEL SPECIFICATION                                     
 4 -- ONLINE PROGRAM DEFINITION                               
 5 -- BATCH PROGRAM DEFINITION                                
 6 -- PROTOTYPING FACILITY                                    
 U -- UTILITIES                                               
 X -- EXIT                                                    
                                                              
                                                              
                                                              
                                        C A   T E L O N       
                                  RELEASE 5.1    GENLEVEL 1005
                                       (C) 2010 CA, INC.      
                                                              
                                                              
                                             FOR              
                                 DEMONSTRATION PURPOSES ONLY  

      

On a compiled listing, do a find on 'TELON-RELEASE-DATA.  (This is located in the Working-Storage section.)

01  TELON-RELEASE-DATA.                                          
    05 TELON-RELEASE-EYECATCH         PIC X(10) VALUE 'TELON ID'.
    05 TELON-REL-MOD-ID               PIC X(6)  VALUE '5.1 '.    
    05 TELON-REL-DATE                 PIC X(6)  VALUE '100531'.  
    05 TELON-MOD-NO                   PIC X(4)  VALUE '1005'.    
    05 TELON-MOD-DATE                 PIC X(6)  VALUE '100531'.  

In your Telon MACLIB, member PTFREF will show you the release and gen level:

*TELON**********************************************************TELON* 
*TELON                                                          TELON* 
*TELON                     LAST MODIFIED:                       TELON* 
*TELON                                                          TELON* 
*TELON            RELEASE 5.1 SERVICEPACK 0 (1005)              TELON* 
*TELON                                                          TELON* 
*TELON                       31-MAY-10                          TELON* 
*TELON                                                          TELON* 
*TELON**********************************************************TELON*