Porovnávané verzie

Kľúč

  • Tento riadok sa pridal
  • Riadok je odstránený.
  • Formátovanie sa zmenilo.

CALL action - local procedure call


Declaration


Blok kódu
languageesl
themeConfluence
 CALL ProcName [(paramIdent1  [,paramIdent2]...)]


Parameters


ProcnameinProcedure name (it must meet the rules for object name).
paramIdent1, paramIdent2, ..., paramIdentNinValue identifier for the first (second, third, .., N) parameter.
Number The number of parameters must be identical with to the number of parameters of the procedure called.


Description
CALL action is used to call a procedure with the name defined in the ProcName parameter. The procedure name is followed by a list of comma-separated parameters enclosed between brackets. Number The number of parameters must be equal to the number of parameters of the called procedure. If some of the parameters is specified as an input-output one in the procedure declaration, the corresponding parameters must not be a constant.
Example
See the action PROCEDURE.