Chapter Contents

Previous

Next
RLINK SCL Function

RLINK SCL Function



Verifies whether a link was established between a local and a remote SAS session.

Local and remote


Syntax
Syntax Description
Example

Syntax

rc=RLINK(remote-session-id);

Syntax Description

rc
is the return code.

remote-session-id
is the name of the remote session (specified by REMOTE=remote-session-id) that is being tested.

Details

The RLINK function verifies whether a link was established between the local SAS session and a remote SAS session.


Example

The following statements use the RLINK function and the identifier REMSESS.

rc=rlink('REMSESS');
if (rc=0) then
   _msg_='No link exists.';
else
   _msg_='A link exists.';


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.