#!/bin/ksh
#**********************************************************************#
#*                                                                    *#
#* Copyright (c) 2001 by Sun Microsystems, Inc.                       *#
#* All rights reserved.                                               *#
#*                                                                    *#
#**********************************************************************#
echo 0 > status.${JON}
sagenv_file=$MBMSAGENV
if [ -z $sagenv_file ]
then
   echo "MBMNATRT (S) Variable MBMSAGENV is not configured"
   echo "MBMNATRT (S) Unable to source the Software AG environment file"
   echo 255 > status.${JON}
   exit 255
fi
save_env=$*
. $MBMSAGENV 
${PUBLIC}/utilm/mbmnatrt $save_env
retstatus=$?
exit $retstatus
