﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
612	Include of a bdt works with global scope in a NameBlock instead of local scope	César Pérez Álvarez	Víctor de Buen Remiro	"If you try a code like this:

NameBlock a = [[ Set data = Include(""file.bdt"") ]];
NameBlock b = [[ Set data = Include(""file.bdt"") ]];

It does not work becouse there is an error of global series in file.bdt.

If you try this 

NameBlock c = {[[ Set data = Include(""file.bdt"") ]]};
NameBlock d = {[[ Set data = Include(""file.bdt"") ]]};

It does not work too.

I will expect work this way:

If we have two series with same name (example ""Serie1"") and different bdt a would like to do this:
NameBlock a = [[ Set data = Include(""file1.bdt"") ]];
NameBlock b = [[ Set data = Include(""file2.bdt"") ]];
 
Serie sera = a::data::Serie1;
Serie sera = b::data::Serie1;

This is very useful when you have differents magnitudes for the same topic (for example magnitudes for geographical info).
"	defect	closed	high		TimeSetAlgebra	head	trivial	invalid	GlobalizeSeries	
