Previous Page | Next Page

Functions and CALL Routines under OpenVMS

NODENAME Function: OpenVMS



Returns the name of the current node.
Category: General-Purpose OpenVMS
OpenVMS specifics: All aspects are host-specific

Syntax
Details

Syntax

NODENAME()


Details

This function takes no arguments. The returned value can be up to 16 bytes long. In the following example, executing the statement on a node with the node name of MYNODE assigns the value MYNODE to the variable THISNODE:

data _null_;
   thisnode=nodename();
run;

Previous Page | Next Page | Top of Page