...
/usr/bin/df -g | grep -i /bp1db01_bk|awk '{sub (/%/, "", $7); print $7" "$4}' > fs_usage
...
Adding a sub() statement to your awk code that deletes the % from the df() output should work. The above syntax
should work on your system (AIX & Pains or Solaris?); I'm still using a 1988 version of AT&T's AWK book.
Your code is sub-optimal, but that don't matter because it isn't running 1,000,000 times a second. It'll work.