Example

In a CLIST, remove variables NAME, PHONE, and ADDRESS from both the shared and application profile pools.
ISPEXEC VERASE (NAME PHONE ADDRESS) BOTH

or alternately

Set program variable BUFFER to:
VERASE (NAME PHONE ADDRESS) BOTH
Then set program variable BUFLEN to the length of variable BUFFER and issue the command:
  CALL ISPEXEC (BUFLEN, BUFFER);

or alternately

CALL ISPLINK ('VERASE  ','(NAME PHONE ADDRESS)','BOTH    ');