Your Browser is not longer supported

Please use Google Chrome, Mozilla Firefox or Microsoft Edge to view the page correctly
Loading...

{{viewport.spaceProperty.prod}}

Mixing positional and keyword parameters

&pagelevel(5)&pagelevel

Positional parameters and keyword parameters can be passed in the procedure call together. In this case, the positional parameters must be specified first, followed by the keyword parameters.

Example

The parameter transfer for the Chicago address list could then look like this:

/CALL-PROCEDURE PROC2, PROCEDURE-PARAMETERS = (MILLER, EDWARD, -
/'HARPER AVENUE', TEL = 1234567)

The last name, first name and street are passed as positional parameters and the telephone number is passed as a keyword parameter. The CITY and AREA-CODE parameters do not need to be taken into account since they were initialized when they were declared.