Hello
I'm currently trying to take out data from the CMIS database as I want to be able to collate a gridview with all events.
I've looked into the following tables:
CMIS.dbo.APPAPPEVENT
The above table stores the particular event with 'AppEventId'.
The 'AppEventId' is then stored in CMIS.dbo.APPAPPFIELDS - this table holds one line per value. So for example a single event in APPAPPFIELDS would look like the following:
[TABLE=class: grid, width: 500, align: center]
[TR]
[TD=align: center]SetId
[/TD]
[TD=align: center]AppCode
[/TD]
[TD=align: center]AppEventId
[/TD]
[TD=align: center]EventId
[/TD]
[TD=align: center]FieldId
[/TD]
[TD=align: center]ValueData
[/TD]
[/TR]
[TR]
[TD=align: center]2012/2013
[/TD]
[TD=align: center]1000
[/TD]
[TD=align: center]361616
[/TD]
[TD=align: center]16
[/TD]
[TD=align: center]1
[/TD]
[TD=align: center]UNI
[/TD]
[/TR]
[TR]
[TD=align: center]2012/2013
[/TD]
[TD=align: center]1000
[/TD]
[TD=align: center]361616
[/TD]
[TD=align: center]16
[/TD]
[TD=align: center]2
[/TD]
[TD=align: center]Isolation
[/TD]
[/TR]
[TR]
[TD=align: center]2012/2013
[/TD]
[TD=align: center]1000
[/TD]
[TD=align: center]361616
[/TD]
[TD=align: center]16
[/TD]
[TD=align: center]3
[/TD]
[TD=align: center]DN
[/TD]
[/TR]
[/TABLE]
Has anyone had any luck retrieving the above information CMIS in a easy to read format such as:
[TABLE=class: grid, width: 500, align: center]
[TR]
[TD=align: center]SetId
[/TD]
[TD=align: center]AppCode
[/TD]
[TD=align: center]AppEventId
[/TD]
[TD=align: center]EventId
[/TD]
[TD=align: center]FieldIf
[/TD]
[TD=align: center]ValueData1
[/TD]
[TD=align: center]ValueData2
[/TD]
[TD=align: center]ValueData3
[/TD]
[/TR]
[TR]
[TD=align: center]2012/2013
[/TD]
[TD=align: center]1000
[/TD]
[TD=align: center]361616
[/TD]
[TD=align: center]16
[/TD]
[TD=align: center]1
[/TD]
[TD=align: center]UNI
[/TD]
[TD=align: center]Isolation
[/TD]
[TD=align: center]DN
[/TD]
[/TR]
[/TABLE]
Any help greatly appreciated.