← Back to team overview

dhis2-users team mailing list archive

Re: Data Element/Indicators Dictionary

 

Hi Channara,

See  my previous post on this question.

Randy

From: Dhis2-users [mailto:dhis2-users-bounces+rwilson=msh.org@xxxxxxxxxxxxxxxxxxx] On Behalf Of rin.channara@xxxxxxxxx
Sent: Sunday, May 18, 2014 3:25 AM
To: Brajesh Murari
Cc: DHIS 2 Users list; DHIS 2 Developers list
Subject: Re: [Dhis2-users] Data Element/Indicators Dictionary

I mean not like that. I want that data dictionary is able store definition of data element or indicator, and store method of calculate of indicator. So easy for user to look to understand how indicator work and what is meaning of dataelement or indicator

Brajesh Murari <brajeshmurari@xxxxxxxx<mailto:brajeshmurari@xxxxxxxx>> wrote:
Channara,

Working on indicators in DHIS2 application is quite easy work than calculating and doing various indicators based analysis. Four further understanding on making, creating indicators in DHIS 2,  i am recommending
to follow the officially recommended process on link give below

http://www.dhis2.org/doc/snapshot/en/user/html/ch13.html

Thanks.

Regards
Brajesh Murari

P please consider the environment before printing this email
On Sunday, 18 May 2014 12:51 AM, sumudu weerasinghe <sumuduw00@xxxxxxxxx<mailto:sumuduw00@xxxxxxxxx>> wrote:

Hi channara,
I am also confuse with the data dictionary in DHIS2, no idea. But in new  "DHIS 2 Demo - Sierra Leone" site there is good example of data dictionary  . Follow this url
http://apps.dhis2.org/apps//datadictionary_app_v1_0_jan//index.html<http://apps.dhis2.org/apps/datadictionary_app_v1_0_jan/index.html>

On Tue, Apr 8, 2014 at 3:47 PM, channara rin <rin.channara@xxxxxxxxx<mailto:rin.channara@xxxxxxxxx>> wrote:
HI all users,
I confuse in DHIS2 has Data Dictionary.But seem mean not like i think. Any body know how can put Indicators' difinition, how to calculate, example into DHIS2.

Thank you
CHANNARA

_______________________________________________
Mailing list: https://launchpad.net/~dhis2-users
Post to     : dhis2-users@xxxxxxxxxxxxxxxxxxx<mailto:dhis2-users@xxxxxxxxxxxxxxxxxxx>
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


_______________________________________________
Mailing list: https://launchpad.net/~dhis2-users
Post to    : dhis2-users@xxxxxxxxxxxxxxxxxxx<mailto:dhis2-users@xxxxxxxxxxxxxxxxxxx>
Unsubscribe : https://launchpad.net/~dhis2-users
More help  : https://help.launchpad.net/ListHelp

--- Begin Message ---
Hi Nic,



We've used the custom attributes for indicators and data elements to extend the data dictionary.



You can use a query like this to pull the indicator metadata and custom attributes (service category, service sub-category, indicator type, method of collection, etc...).  Then create a JasperReport (iReport) in whatever layout you like to print to pdf.  This will also let you list your indicators in column format.



SELECT

  attribute.name AS attributename,

  attributevalue.value AS attributevalue,

  attribute.sortorder,

  indicator.indicatorid,

  indicator.name,

  indicator.code,

  indicator.description,

  indicator.annualized,

  indicator.numeratordescription,

  indicator.denominatordescription

FROM

  public.attribute,

  public.attributevalue,

  public.indicatorattributevalues,

  public.indicator

WHERE

  attributevalue.attributeid = attribute.attributeid AND

  indicatorattributevalues.attributevalueid = attributevalue.attributevalueid AND

  indicator.indicatorid = indicatorattributevalues.indicatorid

  order by indicator.name, attribute.sortorder







From: Dhis2-users [mailto:dhis2-users-bounces+rwilson=msh.org@xxxxxxxxxxxxxxxxxxx] On Behalf Of duttas@xxxxxxxxxxxx
Sent: Monday, February 24, 2014 6:23 AM
To: larshelge@xxxxxxxxx
Cc: dhis2-users@xxxxxxxxxxxxxxxxxxx
Subject: Re: [Dhis2-users] DHIS2 Data Dictionary PDF



Thanks Lars that is very helpful.



Are you still able to create these by the data dictionaries you have defined (as opposed to every data element/indicator), including their other associated metadata (ie. Definition, numerator, denominator, etc.)?



Nick



From: Lars Helge Øverland [mailto:larshelge@xxxxxxxxx]<mailto:[mailto:larshelge@xxxxxxxxx]>
Sent: Friday, February 14, 2014 9:15 PM
To: Dutta, Mr Shurajit Nicky (SOL)
Cc: DHIS 2 Users list
Subject: Re: [Dhis2-users] DHIS2 Data Dictionary PDF



Hi Nick,



sorry about that. We phased out the code behind that feature and replaced it by a generic feature in the web api. Apparently we forgot to put a link back. Will fix.



You can generate pdfs directly from the web api. Go to /api, then dataElements, then click on the pfd link. You can skip paging with ?paging=false. Example:



http://apps.dhis2.org/demo/api/dataElements.pdf?paging=false



regards,



Lars









On Tue, Feb 4, 2014 at 2:12 AM, <duttas@xxxxxxxxxxxx<mailto:duttas@xxxxxxxxxxxx>> wrote:

   Hi everyone,



   I remember I used to be able to create a PDF of a data dictionary through the data element management screen. I can't seem to do this currently. I am still using 2.13, am I just trying to access this from the wrong place? Thanks,



   Nick






     _____


   This message was scanned for viruses with Trend Micro ScanMail, GFI MailSecurity and GFI MailEssentials by the World Health Organization Regional Office for the Western Pacific. However, the recipient is advised to scan this e-mail and any attached files for viruses.

   Disclaimer:

   This e-mail, together with any attachments, is intended for the named recipients only and is confidential. It may also be privileged or otherwise protected by law.

   If you have received it in error, please notify the sender immediately by reply e-mail and delete it and any attachments from your system. You may not copy or disclose its contents to anyone.


   _______________________________________________
   Mailing list: https://launchpad.net/~dhis2-users
   Post to     : dhis2-users@xxxxxxxxxxxxxxxxxxx<mailto:dhis2-users@xxxxxxxxxxxxxxxxxxx>
   Unsubscribe : https://launchpad.net/~dhis2-users
   More help   : https://help.launchpad.net/ListHelp







     _____

   This message was scanned for viruses with Trend Micro ScanMail, GFI MailSecurity and GFI MailEssentials by the World Health Organization Regional Office for the Western Pacific. However, the recipient is advised to scan this e-mail and any attached files for viruses.

   Disclaimer:

   This e-mail, together with any attachments, is intended for the named recipients only and is confidential. It may also be privileged or otherwise protected by law.

   If you have received it in error, please notify the sender immediately by reply e-mail and delete it and any attachments from your system. You may not copy or disclose its contents to anyone.

JPEG image


--- End Message ---

References