CA WA ESP Application Status panel CYBEZP11 displays only 6 digits of APPL GEN
search cancel

CA WA ESP Application Status panel CYBEZP11 displays only 6 digits of APPL GEN

book

Article ID: 210355

calendar_today

Updated On:

Products

ESP Workload Automation

Issue/Introduction

1. Enter option A2 from the CA WA ESP primary menu (panelid CYBERMSM)

2. Application Status (panelid CYBEZP10) is displayed

3. On the applications status details panel (panelid CYBEZP11), the application generation number is displayed up to 6 digits.  

How to accommodate application(s) with generation number of more than 6 digits? 

Environment

Release : 11.4, 12.0

Component : CA WORKLOAD AUTOMATION ESP Edition

Resolution

1. Make a copy of clist CD7YCLS0(CYBEZC10) for backup.

2. Edit  CD7YCLS0(CYBEZC10), and change from: 

Do while N < LINESOUT                                                
  Parse value Value("LINE."||N) with Y APLNM Y APLGEN APLW APLC      
  APLGEN = RIGHT(APLGEN,6)                     /* right adjust gen */

to:

Do while N < LINESOUT                                                
  Parse value Value("LINE."||N) with Y APLNM Y APLGEN APLW APLC      
  APLGEN = RIGHT(APLGEN,8)                     /* right adjust gen */

3. Make a copy of panel CD7YPNL0(CYBEZP11) for backup.

4. Extend the display of the Gen field by doing the following:

  • Line 22: This line contains headings.   The word 'Status' starts on column 30. Word 'Created at' starts on column 40.  No change to Application and Gen.
  • Line 23: This line contains underline characters (-).  Underline char for Gen starts on column 20, and ends on column 27. Underline char for Status starts on col 30, and ends on col 37.  Underline char for "Created at" starts on col 40 and ends on col 78. 
  • Line 25: Z variable @APLGEN starts on col 21.  @APLW starts on col 30. @APLCRTE starts on col 40.  

See the before and after column #.

Before:

 

After: