PL1
-INC
The call on -INC
implies dependencies on .CPY, .PLI or .PL1 files:
-INC 'FILE'
that implies a dependency on a copybook file named "FILE"-INC "FILE"
that implies a dependency on a copybook file named "FILE"-INC FILE
that implies a dependency on a copybook file named "FILE"
++INCLUDE
The call on ++INCLUDE
implies dependencies on .CPY, .PLI or .PL1 files :
++INCLUDE 'FILE'
that implies a dependency on a copybook file named "FILE"++INCLUDE "FILE"
that implies a dependency on a copybook file named "FILE"++INCLUDE FILE
that implies a dependency on a copybook file named "FILE"
PROC
We expect to find dependencies of any extension:
FILE: PROC
that implies a dependency on a file named "FILE"
CALL
We expect to find dependencies of any extension :
CALL FILE
that implies a dependency on a file named "FILE".
EXEC CICS
DELETE FILE
We support several call on DELETE FILE
, the call itself could be on multiple lines or not. We expect to find dependencies of any extension but .CBL, .COB and .CPY :
EXEC CICS DELETE FILE(“FILE”) ... END-EXEC
that implies a dependency on a file named "FILE"EXEC CICS DELETE FILE('FILE') ... END-EXEC
that implies a dependency on a file named "FILE"EXEC CICS DELETE FILE(FILE_VAR) ... END-EXEC
that implies dependencies on the values ofFILE_VAR
inculding its initial value and all the values set with aMOVE ... TO FILE_VAR
operation. The variable can be declared in the same file than the call or in one of its imported copybook.
LINK PROGRAM
We support several call on LINK PROGRAM
, the call itself could be on multiple lines or not. We expect to find dependencies of any extension :
EXEC CICS LINK PROGRAM(“PROGRAM”) ... END-EXEC
that implies a dependency on a file named "PROGRAM"EXEC CICS LINK PROGRAM('PROGRAM') ... END-EXEC
that implies a dependency on a file named "PROGRAM"EXEC CICS LINK PROGRAM(PROGRAM_VAR) ... END-EXEC
that implies dependencies on the values ofPROGRAM_VAR
inculding its initial value and all the values set with aMOVE ... TO PROGRAM_VAR
operation. The variable can be declared in the same file than the call or in one of its imported copybook.
READ FILE
We support several call on READ FILE
, the call itself could be on multiple lines or not. We expect to find dependencies of any extension but .CBL, .COB and .CPY :
EXEC CICS READ FILE(“FILE”) ... END-EXEC
that implies a dependency on a file named "FILE"EXEC CICS READ FILE('FILE') ... END-EXEC
that implies a dependency on a file named "FILE"EXEC CICS READ FILE(FILE_VAR) ... END-EXEC
that implies dependencies on the values ofFILE_VAR
inculding its initial value and all the values set with aMOVE ... TO FILE_VAR
operation. The variable can be declared in the same file than the call or in one of its imported copybook.
RECEIVE MAP
We support several call on RECEIVE MAP
, the call itself could be on multiple lines or not. We expect to find dependencies of any extension but .CBL, .COB and .CPY :
EXEC CICS RECEIVE MAP(“MAP”) ... END-EXEC
that implies a dependency on a file named "MAP"EXEC CICS RECEIVE MAP('MAP') ... END-EXEC
that implies a dependency on a file named "MAP"EXEC CICS RECEIVE MAP(MAP_VAR) ... END-EXEC
that implies dependencies on the values ofMAP_VAR
inculding its initial value and all the values set with aMOVE ... TO MAP_VAR
operation. The variable can be declared in the same file than the call or in one of its imported copybook.
RECEIVE MAPSET
We support several call on RECEIVE MAPSET
, the call itself could be on multiple lines or not. We expect to find dependencies of any extension but .CBL, .COB and .CPY :
EXEC CICS RECEIVE MAPSET(“MAPSET”) ... END-EXEC
that implies a dependency on a file named "MAPSET"EXEC CICS RECEIVE MAPSET('MAPSET') ... END-EXEC
that implies a dependency on a file named "MAPSET"EXEC CICS RECEIVE MAPSET(MAPSET_VAR) ... END-EXEC
that implies dependencies on the values ofMAPSET_VAR
inculding its initial value and all the values set with aMOVE ... TO MAPSET_VAR
operation. The variable can be declared in the same file than the call or in one of its imported copybook.
REWRITE FILE
We support several call on REWRITE FILE
, the call itself could be on multiple lines or not. We expect to find dependencies of any extension but .CBL, .COB and .CPY :
EXEC CICS REWRITE FILE(“FILE”) ... END-EXEC
that implies a dependency on a file named "FILE"EXEC CICS REWRITE FILE('FILE') ... END-EXEC
that implies a dependency on a file named "FILE"EXEC CICS REWRITE FILE(FILE_VAR) ... END-EXEC
that implies dependencies on the values ofFILE_VAR
inculding its initial value and all the values set with aMOVE ... TO FILE_VAR
operation. The variable can be declared in the same file than the call or in one of its imported copybook.
SEND MAP
We support several call on SEND MAP
, the call itself could be on multiple lines or not. We expect to find dependencies of any extension but .CBL, .COB and .CPY :
EXEC CICS SEND MAP(“MAP”) ... END-EXEC
that implies a dependency on a file named "MAP"EXEC CICS SEND MAP('MAP') ... END-EXEC
that implies a dependency on a file named "MAP"EXEC CICS SEND MAP(MAP_VAR) ... END-EXEC
that implies dependencies on the values ofMAP_VAR
inculding its initial value and all the values set with aMOVE ... TO MAP_VAR
operation. The variable can be declared in the same file than the call or in one of its imported copybook.
SEND MAPSET
We support several call on SEND MAPSET
, the call itself could be on multiple lines or not. We expect to find dependencies of any extension but .CBL, .COB and .CPY :
EXEC CICS SEND MAPSET(“MAPSET”) ... END-EXEC
that implies a dependency on a file named "MAPSET"EXEC CICS SEND MAPSET('MAPSET') ... END-EXEC
that implies a dependency on a file named "MAPSET"EXEC CICS SEND MAPSET(MAPSET_VAR) ... END-EXEC
that implies dependencies on the values ofMAPSET_VAR
inculding its initial value and all the values set with aMOVE ... TO MAPSET_VAR
operation. The variable can be declared in the same file than the call or in one of its imported copybook.
WRITE FILE
We support several call on WRITE FILE
, the call itself could be on multiple lines or not. We expect to find dependencies of any extension but .CBL, .COB and .CPY :
EXEC CICS WRITE FILE(“FILE”) ... END-EXEC
that implies a dependency on a file named "FILE"EXEC CICS WRITE FILE('FILE') ... END-EXEC
that implies a dependency on a file named "FILE"EXEC CICS WRITE FILE(FILE_VAR) ... END-EXEC
that implies dependencies on the values ofFILE_VAR
inculding its initial value and all the values set with aMOVE ... TO FILE_VAR
operation. The variable can be declared in the same file than the call or in one of its imported copybook.
XCTL PROGRAM
We support several call on XCTL PROGRAM
, the call itself could be on multiple lines or not. We expect to find dependencies of any extension :
EXEC CICS XCTL PROGRAM(“PROGRAM”) ... END-EXEC
that implies a dependency on a file named "PROGRAM"EXEC CICS XCTL PROGRAM('PROGRAM') ... END-EXEC
that implies a dependency on a file named "PROGRAM"EXEC CICS XCTL PROGRAM(PROGRAM_VAR) ... END-EXEC
that implies dependencies on the values ofPROGRAM_VAR
inculding its initial value and all the values set with aMOVE ... TO PROGRAM_VAR
operation. The variable can be declared in the same file than the call or in one of its imported copybook.
EXEC SQL
We support several call on EXEC SQL
, the call itself could be on multiple lines or not. We expect to find dependencies of any extension. The dependencies are detected for the following operations in the request :
EXEC SQL ... FROM TABLE1, TABLE2 ... END-EXEC
whereTABLE1
andTABLE2
are files corresponding to SQL tables.TABLE2
is optional and if there is only two tables, commas aren’t needed.EXEC SQL ... INSERT INTO TABLE1 ... END-EXEC
whereTABLE1
is a file corresponding to a SQL table.EXEC SQL ... JOIN TABLE1 T1 ON ... END-EXEC
whereTABLE1
is a file corresponding to a SQL table and T1 is an optional alias forTABLE1
used in the rest of the request.EXEC SQL ... UPDATE TABLE1 SET ... END-EXEC
whereTABLE1
is a file corresponding to a SQL table.
EXEC SQL INCLUDE
The call on EXEC SQL INCLUDE
implies dependencies on .CPY, .PLI or .PL1 files:
EXEC SQL INCLUDE 'FILE' ... END-EXEC
that implies a dependency on a copybook file named "FILE"EXEC SQL INCLUDE "FILE" ... END-EXEC
that implies a dependency on a copybook file named "FILE"EXEC SQL INCLUDE FILE ... END-EXEC
that implies a dependency on a copybook file named "FILE"
EXEC SQL SOURCE
The call on EXEC SQL SOURCE
implies dependencies on .CPY, .PLI or .PL1 files:
EXEC SQL SOURCE = 'FILE'
that implies a dependency on a file named "FILE"EXEC SQL SOURCE = "FILE"
that implies a dependency on a file named "FILE"EXEC SQL SOURCE = FILE
that implies a dependency on a file named "FILE"
XINCLUDE
The call on XINCLUDE
implies dependencies on .CPY, .PLI or .PL1 files:
XINCLUDE 'FILE'
that implies a dependency on a copybook file named "FILE"XINCLUDE "FILE"
that implies a dependency on a copybook file named "FILE"XINCLUDE FILE
that implies a dependency on a copybook file named "FILE"