Hi Team,
I need to search for about 120 different strings in all cobol programs (like CEC,CII etc) in about 26 different systems.
I tried editing SCL generated using the 'LIST ELEMENT' option in endevor to search for multiple strings and it is working. However when I give the wildcard '*' in after LIST ELEMENT, the system is not looking for all the elements in endevor. Is there a way I can use the wild card here to search for these strings in all the endevor components?
SET STOPRC 16 .
LIST ELEMENT 'XXXXXXXX' ( a * here does not work)
VERSION 01 LEVEL 01
FROM ENVIRONMENT 'PROD' SYSTEM 'xxx' SUBSYSTEM 'xxx'
TYPE 'COBOL' STAGE 2
OPTIONS SHOWING TEXT NOSEARCH
WHERE TEXT
( (EQ 'string1' COLUMNS 001 080)
OR (EQ 'string2' COLUMNS 001 080)
OR (EQ 'string3' COLUMNS 001 080))
BUILD ACTION &&ACTION