An included .DBA file can only contain functions and
nothing else, (you are not supposed to have anything outside of the function header and endfunction lines apart from comments).
So, they are in effect 'function sets' and scope rules which apply to them are the same as with functions in your main source file.
As such, variables declared in a function in an include file are only accessible inside that function.
Declare arrays which you want to access in all functions in the main body of your program.
AFAIK, this was one of the things which changed in DBP from DBC, though I'm not a big DBP user so I might be mistaken with this.
TDK_Man