Reporting from OpenMRS database

Reporting from OpenMRS database is challenging for following reasons:

  1. It is normalised transactional database. This means that a lot of joins have to be made most of the time.
  2. Few things work in key-value fashion like concepts+observations and patient attributes. Observations/Concepts especially pose a big challenge because of so many things key things have to be modelled as observation in OpenMRS - e.g. diagnosis, chief complaints, disposition, treatment types, lab results. A key-value stored model in relational database is not amenable for reporting easily.
  3. Reporting is usually done using certain dimensions in mind. Again normalised database is not best suited for it.
  4. Concept data in OpenMRS when organised in hierarchical fashion makes it harder to query information based on parent of a particular concept. e.g. want to know all the people who were diagnosed with infectious diseases.

To get around some of the issues to make reporting easier we could do the following:

  1. Define views which join related tables together e.g. Person, Patient, Patient Attributes could be put together in one view; Concept, Obs, Concept_Name could be put together as one view.
  2. On these de-normalised views (from 1) we could create some domain specific views for diagnosis, chief complaints, disposition, lab result etc.
  3. On views from 1 and 2 we could create views which introduces dimensions (see the dimension list below).
  4. Explore the possibility of organising diagnosis in a flatter structure and use reference term mapping.

Dimensions

Hospital level --> Date, Location

Patient level --> Age, Gender, Tribe, Socio-Economic status, 

Program level -> Program outcome, Program name

Visit level --> Visit Type

Encounters level --> Treatment type (surgery, treatment, procedure), Treatment outcome

 

Any view at a particular level would be able to provide columns for dimensions their and higher level. For example a program view should not only provide program outcome, program name with every program instance but also age, gender, tribe, date and location. All the views can be defined such that they repeat the applicable dimensions for every row.

Questions

Should referred-in and referred-out be handled using visit attributes.

Do we have lab department information in OpenMRS? Should we maintain this as location instead of concept?

References

http://stratosprovatopoulos.com/web-development/mysql/pivot-table-with-dynamic-columns/

The Bahmni documentation is licensed under Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)