Description
Type list READONLY
env contains the list of environment variables configured in the environment where the submit user submitted the request.
Example
index=search(env, "APPL_HOME"); 
if (index > -1) 
{ 
   aval=env[index]; 
   if (dirname(aval ) != "/usr") 
   { 
      printf("You are not permitted to run this application from:%s\n", 
         dirname(aval)); 
   } 
}