SELECT profile_option_value
FROM fnd_profile_option_values
WHERE profile_option_id=
(SELECT profile_option_id
FROM fnd_profile_options WHERE profile_option_name = 'APPS_FRAMEWORK_AGENT')
AND level_value = 0;
Note 174219.1 – How To Change The Logo In The Oracle Application MenuNote 849752.1 – R12 Login Page: How to Personalize the Logo ?
Note 741459.1 – Tips For Personalizing The E-Business Suite r12 Login Page (MainLoginPG)
Note 602995.1 – How To Change The Standard Oracle Logo in R12 Forms
Note 551795.1 – How to change the default branding on the homepage which shown as “E-Business Suite” ?
Note 421636.1 – How to replace the default Oracle Logo with a Customized Logo?
Note 308402.1 – How to display a logo for your application
#add by pm 20181221 record os users operation commands.
history
USER=`whoami`
USER_IP=`who -u am i 2>/dev/null| awk '{print $NF}'|sed -e 's/[()]//g'`
if [ “$USER_IP” = “” ]; then
USER_IP=`hostname`
fi
if [ ! -d /var/log/history ]; then
mkdir /var/log/history
chmod 777 /var/log/history
fi
if [ ! -d /var/log/history/${LOGNAME} ]; then
mkdir /var/log/history/${LOGNAME}
chmod 300 /var/log/history/${LOGNAME}
fi
export HISTSIZE=4096
DT=`date +"%Y%m%d_%H:%M:%S"`
export HISTFILE="/var/log/history/${LOGNAME}/${USER}@${USER_IP}_$DT"
chmod 600 /var/log/history/${LOGNAME}/*history* 2>/dev/null