COBOL Manual for TNS/E Programs (H06.03+)

Procedure Division Verbs
HP COBOL Manual for TNS/E Programs520347-003
9-208
SET TO
pointer
address
identifier-1
is a level-01 or level-77 data item in the Linkage Section that does not have an
ACCESS MODE STANDARD clause in its data description entry. If pointer
is ADDRESS OF identifier-1, identifier-1 is relinked so that
subsequent references to identifier-1 reference the item whose address
is specified by address.
If address is ADDRESS OF identifier-3, then identifier-1 is
linked to the address of identifier-3 (not the value of identifier-3 ).
If address is identifier-4, then identifier-1 is linked to the address
that identifier-4 contains.
If address is NULL or NULLS, then identifier-1 is linked to a null
address guaranteed to point to no data item.
identifier-2
is a data item with USAGE POINTER. If pointer is identifier-2, the
address specified by address is moved into identifier-2. This address
is valid until the program terminates or returns control to its calling program.
identifier-3
is a data item of any level except 88, anywhere in the Data Division. The value
of ADDRESS OF identifier-3 is the address of identifier-3, not the
value of identifier-3.
identifier-4
is a data item with USAGE POINTER.
OFADDRESS identifier-1
identifier-2
VST606.vsd
NULL
OFADDRESS identifier-3
identifier-4
NULLS
VST607.vsd