Library /sys$common/syshlp/helplib.hlb  —  Getinput  /LENGTH  Example
   $ GETINPUT OutputSymbol /LENGTH=(8,12)/PROMPT="Enter a password"
   Enter a password: thisisatestpassword
   %GIP-W-LENERR, input is more than maximum length
   Enter a password: thisis
   %GIP-W-LENERR, input is less than minimum length
   Enter a password: thisisatest
   $ show symbol OutputSymbol
     OUTPUTSYMBOL = "thisisatest"

   $ GETINPUT OutputSymbol /LENGTH=(1,2)/TYPE=INTEGER/PROMPT="What value"
   What value: 123
   %GIP-W-LENERR, input is more than maximum length
   What value: 56
   $ show symbol OutputSymbol
     OUTPUTSYMBOL = "56"
Close Help