Avoid ESP VPUT/VSET run at application generation phase
search cancel

Avoid ESP VPUT/VSET run at application generation phase

book

Article ID: 189328

calendar_today

Updated On:

Products

ESP Workload Automation

Issue/Introduction

VPUT is used at JOB level, however it runs before the application is built:

JOB A
  VPUT (FILE) TABLE(TEST) CLANG
....
ENDJOB

How to avoid ESP VPUT/VSET run at application generation phase?

Environment

Component: ESP Workload Automation
Release: ALL

Resolution

Add IF logic like below:

JOB A
  IF ESP_APPL_PROC = 1 THEN DO 
     VPUT (FILE) TABLE(TEST) CLANG
  ENDDO
....
ENDJOB