using (HuAPConnection Connection = new HuAPConnection())
using (HuView UPEMTO = Connection.GetView("UP0126"))
using (HuView UPEMPT = Connection.GetView("UP0010"))
using (HuView UPEMPL = Connection.GetView("UP0014"))
using (HuView UPEMPD = Connection.GetView("UP0008"))
using (HuView UPEMDO = Connection.GetView("UP0125"))
using (HuView UPEMDB = Connection.GetView("UP0041"))
using (HuView UPEMPC = Connection.GetView("UP0053"))
using (HuView UPEMBK = Connection.GetView("UP0201"))
using (HuView UPEMPO = Connection.GetView("UP0122"))
using (HuView UPEMCS = Connection.GetView("UP0118"))
using (HuView UPEMTF = Connection.GetView("UP0062"))
{
UPEMTO.Compose(UPEMPT);
UPEMPT.Compose(UPEMPL, UPEMTF, UPEMTO);
UPEMPL.Compose(UPEMPD, UPEMPT, UPEMPC, UPEMBK, UPEMPO, UPEMCS);
UPEMPD.Compose(UPEMPL, UPEMDO, UPEMDB);
UPEMDO.Compose(UPEMPD);
UPEMDB.Compose(UPEMPD);
UPEMPC.Compose(UPEMPL);
UPEMBK.Compose(UPEMPL);
UPEMPO.Compose(UPEMPL);
UPEMCS.Compose(UPEMPL);
UPEMTF.Compose(UPEMPT);
// Code Here
}