I don't know 4ge programs but something to note, crontab does not execute your profile so you need to set PATH, LD_LIBRARY_PATH, etc. Create a shell script that will set your environment before starting the program.
e.g. aa.sh
Code:
#!/usr/bin/ksh
. ./.profile # execute profile (dot space dot/.profile)
/mnt/usr/bb/aa.4ge # execute program
Then in cron you execute the script
30 10 * * * /mnt/usr/bb/aa.
sh