#!/bin/ksh
#**********************************************************************#
#*                                                                    *#
#* Copyright (c) 2001 by Sun Microsystems, Inc.                       *#
#* All rights reserved.                                               *#
#*                                                                    *#
#**********************************************************************#


if [ $IDEBUG = "yes" ] 
then
   echo "$0  starts with :"
   for i in $1
   do
      param=`echo $i | cut -f1 -d')' | cut -f2 -d'('`
      key=`echo $i | cut -f1 -d'('`
      echo "                     key=$key     param=$param"
   done
fi

echo " "
echo "$EBM_UTILITY (W) Command not supported in the current version"

if [ "a$VALIDATE" = "ay" ]
then
      echo "_${RUNNINGSN}_ 0" > ${JON}_RET
else
   if [ "a$EBM_UNSUPPORTED_UTILITY" = a ]
   then
      echo "_${RUNNINGSN}_ 8" > ${JON}_RET
   else
      echo "_${RUNNINGSN}_ $EBM_UNSUPPORTED_UTILITY" > ${JON}_RET
   fi
fi
echo 0 > status.${JON}
echo " "

