This function simply tests a string to see whether or not it's blank. Why? Because sometimes you could have a NULL string returned, and simply testing with something like: IF ls_test = '' THEN... is not going to work. However, using this function, you will be able to use: IF is_blank( ls_test ) THEN...