NameOfRegister = "InformationRegister1";
Message("Dimensions:");
For each Dimension In Metadata.InformationRegisters[NameOfRegister].Dimensions do
Message(Dimension.name);
EndDo;
Message("Resources:");
For each Resource In Metadata.InformationRegisters[NameOfRegister].Resources do
Message(Resource.name);
EndDo;
Metadata used to access the configuration metadata structure
ohhh I'm sorry ... I explained wrong ... sorry sorry ... what i meant is to get the value of each record not the name of the dimensions and resources for example dimension1="tubes" resource1=100 ... hope you understand me
Query = New Query;
Query.Text = "SEL ECT dimension1, resource1 FR OM InformationRegister.InformationRegister1";
Selection = Query.Execute().Choose();
While Selection.Next() Do
dimension1 = Selection.dimension1;
resource1 = Selection.resource1;
EndDo;
There is no object for Information Register. Another collections used for operations with information register: - InformationRegisterRecordSet - InformationRegisterRecordManager
Edited: - Jun 27, 2013 09:44 AM
Pages:1
Users browsing this topic (guests: 1, registered: 0, hidden: 0)