Pages

Friday, February 11, 2011

Setting environment variable in Csh

Issue:

SAP error message : " TP start via gateway not allowed. See note 1371799"

Solution:

In the operating system environment, set the variable ALLOW_TP_START_GATEWAY to TRUE for the system user to permit the tp to be started.

How:

#su - sapuser
$vi .profile
# TP Variable
setenv ALLOW_TP_START_VIA_GATEWAY TRUE
:wq!
$vi .cshrc
# TP Variable
setenv ALLOW_TP_START_VIA_GATEWAY TRUE
:wq!
$echo $ALLOW_TP_START_VIA_GATEWAY
TRUE


Note: Setting up tp to start via gateway is specific to TP with certain versions.

No comments: