Software AG Products 2.4.1 | Reference Guide | Default Statements | Detailed Syntax | @TELE
 
@TELE
The @TELE statement provides Adabas Pre-Compiler with a source statement to be inserted after every CALL command during the generation of the execution commands.
The syntax of the statement is as follows:
Syntax of the tele statement
The text can be a special command of the appropriate teleproccessor, or can serve the your need to issue special commands after the CALL command.
Here is an example of this statement:
@TELE “EXEC CICS LINK PROGRAM (‘ADABAS’) END-EXEC”. -(COBOL)
@TELE “EXEC CICS LINK PROGRAM (‘ADABAS’) ;”. - (PL/1)
The above example inserts the CICS command level instruction after every CALL. This statement has to be used in conjunction with the @ADACALL example of CICS. There may be up to five @TELE commands, meaning that up to five additional statements can be inserted after the CALL. In COBOL programs, the "TEXT" must not include a period.