#!/usr/bin/ksh
###############################################################################
#
# File:         r3sapps
# Description:  platform independent ps command
# Language:     Korn Shell
# Package:      HP OpenView SMART Plug-In for SAP R/3
#
###############################################################################

if [ "`uname -s`" = "SunOS" -a "`uname -r | cut -c0,1`" != "5" ]
then
  ps -ax  | more
else
  ps -eaf  |more
fi
