datapage.c should be listed in project window, expand Sources tree and it should be there. If not, then it should be still on your disk in your project\Sources folder. Add this file back to the project. If not on the disk - create new project using new project wizard.
Do you pass LocalVar pointer to crc() or some other routines, which accept only near (non far) pointer? This won't work, unless you set up PPAGE (to 0xF7 in case of data at 0xF78000) somewhere in your code.
_CONV_GLOBAL_TO_NEAR routine should not be referenced. It doesn't make sense to convert ppage-banked address to near pointer, since ppage information will be lost. You have banked address 0xF78000 (global 7DC000'G). After conversion to near pointer you will get only 0x8000, no information about PPAGE.