using (HuAPConnection Connection = new HuAPConnection())
using (HuView GLWAMTO = Connection.GetView("GL0408"))
using (HuView GLWAMF = Connection.GetView("GL0046"))
using (HuView GLWAVC = Connection.GetView("GL0047"))
using (HuView GLRVAL = Connection.GetView("GL0020"))
using (HuView GLAMF = Connection.GetView("GL0001"))
using (HuView GLFISC = Connection.GetView("GL0003"))
using (HuView GLAIS = Connection.GetView("GL0004"))
using (HuView GLAVC = Connection.GetView("GL0012"))
using (HuView GLABRX = Connection.GetView("GL0023"))
using (HuView GLABK = Connection.GetView("GL0022"))
using (HuView GLCAS = Connection.GetView("GL0107"))
using (HuView GLAMFO = Connection.GetView("GL0400"))
using (HuView GLAMFTO = Connection.GetView("GL0401"))
using (HuView GLACHD = Connection.GetView("GL0057"))
using (HuView GLPACHD = Connection.GetView("GL0063"))
using (HuView GLWCAS = Connection.GetView("GL0048"))
using (HuView GLWAMFO = Connection.GetView("GL0407"))
{
GLWAMTO.Compose(GLWAMF);
GLWAMF.Compose(GLWAVC, GLWCAS, GLWAMFO, GLWAMTO);
GLWAVC.Compose(GLWAMF, GLRVAL);
GLRVAL.Compose(GLAMF);
GLAMF.Compose(GLFISC, GLAIS, GLAVC, GLABRX, GLCAS, GLAMFO, GLAMFTO, GLACHD, GLPACHD);
GLFISC.Compose();
GLAIS.Compose(GLAMF);
GLAVC.Compose(GLAMF, GLRVAL);
GLABRX.Compose(GLABK);
GLABK.Compose();
GLCAS.Compose(GLAMF);
GLAMFO.Compose(GLAMF);
GLAMFTO.Compose(GLAMF);
GLACHD.Compose(GLAMF);
GLPACHD.Compose(GLAMF);
GLWCAS.Compose(GLWAMF);
GLWAMFO.Compose(GLWAMF);
// Code Here
}