TCCEnv_Functions

Purpose

This module supports handling of environment e.g. environment variable operations

Module Parameters

-

Module depends on

-

Summary
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.

Functions

f_GetEnv

external function f_GetEnv( in  charstring  p_env_name ) return charstring

Purpose

Return the environment variable specified via p_env_name

Parameters

p_env_name in charstring - name of the environment variable

Return Value

charstring value of the environment variable

Errors

-

Detailed description

-

f_PutEnv

external function f_PutEnv( in  charstring  p_env_name,
in  charstring  p_env_value ) return boolean

Purpose

Set the environment variable p_env_name to p_env_value.

Parameters

p_env_name in charstring - name of the environment variable
p_env_value in charstring - value of the environment variable

Return Value

boolean true if set of environment variable was successful, false else

Errors

-

Detailed description

-

external function f_GetEnv( in  charstring  p_env_name ) return charstring
Return the environment variable specified via p_env_name
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.