GroupJournalList, CompanyJournalList, GroupSegmentJournalList, CompanySegmentJournalList

To store lists of the different journal elements, BI# provides four different list types, one for each journal type. To create such a list, you have to use special functions:

OLAPConnection olapCon = OLAPCreateConnection(
	"server",
	"user",
	"password"
);
RepositoryConnection rep = CreateRepositoryConnection(
	"repository",
	"project",
	"user",
	"password"
);
JournalStore store = CreateJournalStore( rep, olapCon );
GroupJournalList groupJournals = GetGroupJournals(
	store,
	"2007",
	"12",
	"V01",
	"GR0001",
	"HB III",
	"GJ",
	false,
	false
);