This module supports handling of environment e.g. environment variable operations
-
-
| TCCEnv_Functions | This module supports handling of environment e.g. | 
| Functions | |
| f_GetEnv | Return the environment variable specified via p_env_name | 
| f_PutEnv | Set the environment variable p_env_name to p_env_value. | 
external function f_GetEnv( in charstring p_env_name ) return charstring 
Return the environment variable specified via p_env_name
| p_env_name | in charstring - name of the environment variable | 
| charstring | value of the environment variable | 
-
-
external function f_PutEnv( in charstring p_env_name, in charstring p_env_value ) return boolean 
Set the environment variable p_env_name to p_env_value.
| p_env_name | in charstring - name of the environment variable | 
| p_env_value | in charstring - value of the environment variable | 
| boolean | true if set of environment variable was successful, false else | 
-
-
Return the environment variable specified via p_env_name
external function f_GetEnv( in charstring p_env_name ) return charstring 
Set the environment variable p_env_name to p_env_value.
external function f_PutEnv( in charstring p_env_name, in charstring p_env_value ) return boolean