Re: [Dhis2-users] [Dhis2-devs] Generating sequential numbers in program rule

2018-10-31 Thread Shurajit Dutta
t;> 2) In this step - is this a new program rule? I created a program rule
>>>>> as follows: "d2:hasValue #UID", Assign "#auto-increment + 1" to field
>>>>> "auto-increment". I then set this as priority 2.
>>>>> 3) I created my UID program rule as with the following action:
>>>>> "d2:concatenate( V{enrollment_date}, '-', A{Closest Health Center},
>>>>> #{auto-increment})" assigned to the attribute for UID. This is set as
>>>>> priority 1.
>>>>>
>>>>> Unfortunately, this does not create the sequential number, but the
>>>>> concatenated sequence is showing in the UID Attribute.
>>>>>
>>>>> Do I have my priorities incorrect or have I done something else
>>>>> incorrectly?
>>>>>
>>>>> Kind regards,
>>>>> Terence
>>>>>
>>>>> Terence Scott
>>>>>
>>>>> Global Alliance for Rabies Control (GARC)
>>>>> Pan-African Rabies Control Network (PARACON) Steering Committee
>>>>> terence.sc...@rabiesalliance.org
>>>>> https://paracon.rabiesalliance.org
>>>>> Skype: tpscott1987
>>>>>
>>>>>
>>>>>
>>>>> On Wed, Oct 10, 2018 at 2:01 PM Zubair Asghar Raja 
>>>>> wrote:
>>>>>
>>>>>> Hi Terence,
>>>>>> Should be possible using CALCULATED_VALUE.
>>>>>> Program rule variable having source type as CALCULATED_VALUE will get
>>>>>> its value assigned by some other program rule. Try these steps
>>>>>> 1. create program rule variable of source type CALCULATED_VALUE //
>>>>>> Let say "auto-increment"
>>>>>> 2. create program rule with Program Rule Action as Assign Value and
>>>>>> select variable created in step 1 and assign it "#{auto-increment} + 1"
>>>>>> 3. Use it in your program rule where ever needed for example
>>>>>> v{current-date}-#{orgunit}-#{auto-increment}
>>>>>>
>>>>>> In order to use CALCULATED_CALUE make sure you are correctly setting
>>>>>> rule *priority*.
>>>>>>
>>>>>> Zubair Asghar
>>>>>> DHIS-2 Developer
>>>>>> University of Oslo
>>>>>> zub...@dhis2.org 
>>>>>> https://www.dhis2.org
>>>>>>
>>>>>>
>>>>>> On Wed, Oct 10, 2018 at 1:25 PM Terence Scott <
>>>>>> terence.sc...@rabiesalliance.org> wrote:
>>>>>>
>>>>>>> Dear All
>>>>>>>
>>>>>>> I am creating a program rule to develop a UID for the patient. I
>>>>>>> have currently created a program rule using d2:concatenate to bring 
>>>>>>> various
>>>>>>> attributes and DEs together into the Unique ID (such as date and OrgUnit
>>>>>>> code). However, I would also like to include sequential numbering after
>>>>>>> this to ensure that more than 1 case can be registered on a single day.
>>>>>>>
>>>>>>> I have looked through all of the documentation and am unable to find
>>>>>>> anything along these lines. Is it possible?
>>>>>>>
>>>>>>> Example:
>>>>>>> 2018-10-10-OrgUnit code-1;
>>>>>>> 2018-10-10-OrgUnit code-2;
>>>>>>> 2018-10-10-OrgUnit code-3; etc.  (where 1,2 and 3 are the sequential
>>>>>>> numbers generated).
>>>>>>>
>>>>>>> I have also looked at Program Rule variables and am unsure as to
>>>>>>> what the "Calculated value" source type is, as in the documentation it 
>>>>>>> is
>>>>>>> listed as "TBA" with no further information.
>>>>>>>
>>>>>>> I would appreciate any help or advise.
>>>>>>>
>>>>>>> Kind regards,
>>>>>>> Terence
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> Terence Scott
>>>>>>>
>>>>>>> Global Alliance for Rabies Control (GARC)
>>>>>>> Pan-African Rabies Control Network (PARACON) Steering Committee
>>>>>>> terence.sc...@rabiesalliance.org
>>>>>>> https://paracon.rabiesalliance.org
>>>>>>> Skype: tpscott1987
>>>>>>>
>>>>>>> ___
>>>>>>> Mailing list: https://launchpad.net/~dhis2-devs
>>>>>>> Post to : dhis2-d...@lists.launchpad.net
>>>>>>> Unsubscribe : https://launchpad.net/~dhis2-devs
>>>>>>> More help   : https://help.launchpad.net/ListHelp
>>>>>>>
>>>>>> ___
>>> Mailing list: https://launchpad.net/~dhis2-devs
>>> Post to : dhis2-d...@lists.launchpad.net
>>> Unsubscribe : https://launchpad.net/~dhis2-devs
>>> More help   : https://help.launchpad.net/ListHelp
>>>
>>

-- 
Shurajit Dutta (MPH, MHI)
Health Information Systems Adviser
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Unable to create event layer in maps app in 2.30

2018-10-16 Thread Shurajit Dutta
Hi all

I am trying to create an event layer map in 2.30. I know there is data as
this was working previously in 2.29. I notice in the log when I try to add
the event layer I receive the following error message:

 ERROR: column ax.geom does not exist

I have installed postgis and ran the upgrade script, but perhaps I am
missing something else here? Has anyone encountered this before?

Thanks
Nick

-- 
Shurajit Dutta (MPH, MHI)
Health Information Systems Adviser
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Generating sequential numbers in program rule

2018-10-10 Thread Shurajit Dutta
Hi Terence

Please have a look at textpattern to generate UID's:

https://docs.dhis2.org/2.29/en/user/html/working-with-textpattern.html

This is available as of 2.29 and believe it should be able to generate what
you need.

Nick

On Wed, Oct 10, 2018 at 4:55 PM Terence Scott <
terence.sc...@rabiesalliance.org> wrote:

> Dear All
>
> I am creating a program rule to develop a UID for the patient. I have
> currently created a program rule using d2:concatenate to bring various
> attributes and DEs together into the Unique ID (such as date and OrgUnit
> code). However, I would also like to include sequential numbering after
> this to ensure that more than 1 case can be registered on a single day.
>
> I have looked through all of the documentation and am unable to find
> anything along these lines. Is it possible?
>
> Example:
> 2018-10-10-OrgUnit code-1;
> 2018-10-10-OrgUnit code-2;
> 2018-10-10-OrgUnit code-3; etc.  (where 1,2 and 3 are the sequential
> numbers generated).
>
> I have also looked at Program Rule variables and am unsure as to what the
> "Calculated value" source type is, as in the documentation it is listed as
> "TBA" with no further information.
>
> I would appreciate any help or advise.
>
> Kind regards,
> Terence
>
>
>
>
> Terence Scott
>
> Global Alliance for Rabies Control (GARC)
> Pan-African Rabies Control Network (PARACON) Steering Committee
> terence.sc...@rabiesalliance.org
> https://paracon.rabiesalliance.org
> Skype: tpscott1987
>
> ___
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help   : https://help.launchpad.net/ListHelp
>


-- 
Shurajit Dutta (MPH, MHI)
Health Information Systems Adviser
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] [Dhis2-devs] Error when upgrading DHIS2 from 2.29 to 2.30 - relationships

2018-09-18 Thread Shurajit Dutta
Hi everyone

Thanks for the insights. This has fixed the problem for me.

Perhaps we can add something to the upgrade notes?

Nick

On Mon, Sep 17, 2018, 8:30 PM Bernard Sadaka (IM Advisor) <
lib@pu-ami.org> wrote:

> Also in order to detect the problems in other permissions on other tables
> I ran this query:
>
> SELECT *
>
> FROM pg_tables t
>
> WHERE t.tableowner <> 'dhis' – dhis is my DHIS2 db user
>
> and schemaname = 'public';
>
>
>
> I discovered there’s also the table public.spatial_ref_sys that was not
> under my dhis db user, so I altered its owner too.
>
> Thanks for the help.
>
>
>
> All the best,
>
> Bernard
>
>
>
> [image: cid:image002.png@01D36F50.572585A0]
>
> *Bernard Sadaka*
>
> *Information Management Advisor*
>
> Première Urgence - Aide Médicale Internationale
>
> Nehmeh Building, Sanine Street, Chiyah, 3rd Floor
>
> Ain el Remmaneh, Beirut, Lebanon
>
> *E-mail:* lib@pu-ami.org
>
> *Cell:* +961 71 004 881 (208)
>
> *Skype:* imapuami
>
> *Website:* https://www.pu-ami.org
>
>
>
>
>
> *From:* Stian Sandvold [mailto:st...@dhis2.org]
> *Sent:* Monday, September 17, 2018 03:28 PM
> *To:* Bob Jolliffe 
> *Cc:* lib@pu-ami.org; DHIS 2 Users list <
> dhis2-users@lists.launchpad.net>; DHIS 2 Developers list <
> dhis2-d...@lists.launchpad.net>
> *Subject:* Re: [Dhis2-users] [Dhis2-devs] Error when upgrading DHIS2 from
> 2.29 to 2.30 - relationships
>
>
>
> Did the sql fix your issues or are you still having issues? The superuser
> and ownership is a tricky challenge since we dont know the name of the
> user, but aside from the postgis extension, the upgradescript should be
> runnable as a non-superuser if I remember correctly.
>
>
>
> On Mon, Sep 17, 2018 at 12:36 PM Bob Jolliffe 
> wrote:
>
> Good point Bernard.
>
>
>
> Interestingly this is the reverse problem to that of creating the postgis
> extension. You have to be a superuser role in the database to create the
> postgis extension in the database.  But ...
>
>
>
> If you have run the upgrade script from
> https://github.com/dhis2/dhis2-releases/blob/master/releases/2.30/upgrade-230.sql
> as a superuser (eg postgres) then you are going to be left with two new
> tables (and a function?) owned by the postgres user.
>
>
>
> So you should, in fact, have to do afterwards both:
>
> ALTER TABLE public.relationshipitem OWNER to dhis;
>
> ALTER TABLE public.relationshipconstraint OWNER to dhis;
>
>
>
> Which is a little messy :-)  But hard to figure the neatest way around
> because we cannot know in advance the name of the dhis db user.
>
>
>
> Cheers
>
> Bob
>
>
>
> On 17 September 2018 at 09:58, Bernard Sadaka (IM Advisor) <
> lib@pu-ami.org> wrote:
>
> I faced this same error before: “'permission denied for relation XXX”
>
> and I fixed it using this query in the DB:
>
>
>
> ALTER TABLE public.relationshipitem OWNER to dhis;
>
>
>
> Replace dhis with your DB user
>
>
>
> All the best,
>
> Bernard
>
>
>
> [image: cid:image002.png@01D36F50.572585A0]
>
> *Bernard Sadaka*
>
> *Information Management Advisor*
>
> Première Urgence - Aide Médicale Internationale
>
> Nehmeh Building, Sanine Street, Chiyah, 3rd Floor
>
> Ain el Remmaneh, Beirut, Lebanon
>
> *E-mail:* lib@pu-ami.org
>
> *Cell:* +961 71 004 881 (208)
>
> *Skype:* imapuami
>
> *Website:* https://www.pu-ami.org
>
>
>
>
>
> *From:* Dhis2-users [mailto:dhis2-users-bounces+lib.ima=
> pu-ami....@lists.launchpad.net] *On Behalf Of *Em Le Hong
> *Sent:* Monday, September 17, 2018 11:51 AM
> *To:* Shurajit Dutta ; DHIS 2 Developers list <
> dhis2-d...@lists.launchpad.net>
> *Cc:* DHIS 2 Users list 
> *Subject:* Re: [Dhis2-users] Error when upgrading DHIS2 from 2.29 to 2.30
> - relationships
>
>
>
> Hi all,
>
>
>
> I got the same problem with Nick.
>
> It says 'permission denied for relation relationshipitem',
>
>
>
> [image: image.png]
>
>
>
> On Tue, Sep 11, 2018 at 11:18 PM Shurajit Dutta 
> wrote:
>
> Hi everyone,
>
>
>
> I am trying to upgrade a DHIS2 instance from 2.29 to 2.30. I have done
> this on a couple other instances successfully. The issue I seem to be
> having here is with the relationship types. In 2.29, I have the following
> relationships:
>
>
>
> [image: image.png]
>
>
>
> This changes to the following (as per the release notes this is expected)
> in 2.30:
>
>
>
> [image: image.png]
>
>
>
> There are a couple iss

Re: [Dhis2-users] Download event report (individual events) with option set values instead of codes

2018-08-27 Thread Shurajit Dutta
Hi

Just wanted to follow up on this, as it seems to be reported in Jira
(DHIS2-2743). Is there any potential time frame for implementation?

On Mon, Aug 20, 2018 at 5:34 PM Shurajit Dutta 
wrote:

> Hi everyone
>
> I am wondering if there is a method to download an event report using the
> data values of an option set rather then the code. I thought I remember
> this being possible in previous versions of DHIS2 but perhaps I am mistaken.
>
> I tried on play.dhis2.org/demo using this favorite: Inpatient: Inpatient
> cases last 14 days and converted this into an individual event overview.
> When I try to download it as a CSV or Excel file, no matter what type of ID
> scheme I select, it outputs the code of the included options rather then
> the data values. Is there any method to download these tables with the
> values instead?
>
> Here is an example table and the csv file for reference after selecting
> "Name" as the ID scheme
>
> [image: image.png]
>
> Thanks
> Nick
>
> --
> Shurajit Dutta (MPH, MHI)
> Health Information Systems Adviser
>


-- 
Shurajit Dutta (MPH, MHI)
Health Information Systems Adviser
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Download event report (individual events) with option set values instead of codes

2018-08-20 Thread Shurajit Dutta
Hi everyone

I am wondering if there is a method to download an event report using the
data values of an option set rather then the code. I thought I remember
this being possible in previous versions of DHIS2 but perhaps I am mistaken.

I tried on play.dhis2.org/demo using this favorite: Inpatient: Inpatient
cases last 14 days and converted this into an individual event overview.
When I try to download it as a CSV or Excel file, no matter what type of ID
scheme I select, it outputs the code of the included options rather then
the data values. Is there any method to download these tables with the
values instead?

Here is an example table and the csv file for reference after selecting
"Name" as the ID scheme

[image: image.png]

Thanks
Nick

-- 
Shurajit Dutta (MPH, MHI)
Health Information Systems Adviser


events.csv
Description: MS-Excel spreadsheet
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Importing GADM boundaries into DHIS2

2018-08-08 Thread Shurajit Dutta
Thanks Knut, I was able to import directly from the file you shared via
matching the ISO codes. Very helpful!


On Wed, Aug 8, 2018 at 6:26 AM Knut Staring  wrote:

> Forgot to add some regions that can be used for grouping and filtering
> (these are not WHO regions):
>
> South-eastern Asia
> 'BRN','IDN','KHM','LAO','MMR','MYS','PHL','SGP','THA','TLS','VNM'
> Southern Asia
> 'AFG','BGD','BTN','IND','IRN','LKA','MDV','NPL','PAK'
> Western Asia
>
> 'ARE','ARM','AZE','BHR','CYP','GEO','IRQ','ISR','JOR','KWT','LBN','OMN','PSE','QAT','SAU','SYR','TUR','YEM'
> Central Asia
> 'KAZ','KGZ','TJK','TKM','UZB'
> Eastern Asia
> 'CHN','HKG','JPN','KOR','MAC','MNG','PRK','TWN'
> Northern Africa
> 'DZA','EGY','ESH','LBY','MAR','SDN','TUN'
> Sub-Saharan Africa
>
> 'AGO','ATF','BDI','BEN','BFA','BWA','CAF','CIV','CMR','COD','COG','COM','CPV','DJI','ERI','ETH','GAB','GHA','GIN','GMB','GNB','GNQ','IOT','KEN','LBR','LSO','MDG','MLI','MOZ','MRT','MUS','MWI','MYT','NAM','NER','NGA','REU','RWA','SEN','SHN','SLE','SOM','SSD','STP','SWZ','SYC','TCD','TGO','TZA','UGA','ZAF','ZMB','ZWE'
> 'AGO','BDI','COG','COD','GNQ','GAB','RWA','STP'
>
> On Wed, Aug 8, 2018 at 12:25 PM Knut Staring  wrote:
>
>> Hi Nick,
>>
>> I have been working on a solution to import all the levels, but if you
>> are really only looking for the country level, it is quite straightforward.
>> The main obstacle is the size of the file, which can be significantly
>> reduced by a) filtering out polygons that you don't need (e.g. Antartica)
>> and b) simplifying those you do need, e.g. using http://mapshaper.org/
>> (which can also be downloaded and run locally on your laptop).
>>
>> The filtering can be done in several ways.
>> a) It seems you already have the orgunits in your tree, which will then
>> serve as a filter itself. Do you already have three-letter ISO codes for
>> matching?
>> b) If you did not already have the countries (or no good way of
>> matching), you can use the ogr2ogr tool of the GDAL package like this:
>>
>> ogr2ogr -where "GID_0  in
>> ('AGO','BDI','COG','COD','GNQ','GAB','RWA','STP')" countries.shp
>> gadm36_0.shp
>>
>> c) Since we now require PostGIS (from 2.30), that is the most versatile
>> tool for all of these manipulations (though not sure if the simplification
>> algorithms are as good as the ones Mapshaper offers).
>>
>> I attach a file of all countries reduced to 4%, let me know if you are
>> able to use that directly.
>>
>> Knut
>>
>> On Tue, Aug 7, 2018 at 11:38 PM Shurajit Dutta 
>> wrote:
>>
>>> Hi everyone
>>>
>>> Was wondering if there was a simplified process to import GADM (
>>> https://gadm.org/) boundaries into DHIS2.
>>>
>>> For example, if I have a global hierarchy of some sort and only want to
>>> import the country-level boundaries.
>>>
>>> ie.
>>> Global
>>> ---Regional
>>> -Country
>>>
>>> Thanks,
>>> Nick
>>>
>>> --
>>> Shurajit Dutta (MPH, MHI)
>>> Health Information Systems Adviser
>>> ___
>>> Mailing list: https://launchpad.net/~dhis2-users
>>> Post to : dhis2-users@lists.launchpad.net
>>> Unsubscribe : https://launchpad.net/~dhis2-users
>>> More help   : https://help.launchpad.net/ListHelp
>>>
>>
>>
>> --
>> Knut Staring
>>
>> Department of Information, Evidence and Research
>> World Health Organization, Geneva, Switzerland
>> Office: +41 22 791 3683 Mob1: +33 6 4434 2931 Mob2: +47 9188 0522
>> Skype: knutstar
>>
>
>
> --
> Knut Staring
>
> Department of Information, Evidence and Research
> World Health Organization, Geneva, Switzerland
> Office: +41 22 791 3683 Mob1: +33 6 4434 2931 Mob2: +47 9188 0522
> Skype: knutstar
>


-- 
Shurajit Dutta (MPH, MHI)
Health Information Systems Adviser
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Importing GADM boundaries into DHIS2

2018-08-07 Thread Shurajit Dutta
Hi everyone

Was wondering if there was a simplified process to import GADM (
https://gadm.org/) boundaries into DHIS2.

For example, if I have a global hierarchy of some sort and only want to
import the country-level boundaries.

ie.
Global
---Regional
-Country

Thanks,
Nick

-- 
Shurajit Dutta (MPH, MHI)
Health Information Systems Adviser
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Category option combinations associated with a data element

2018-06-20 Thread Shurajit Dutta
Hi everyone

What is the best method to determine which category option combinations are
associated with a data element, particularly in the case where there are
multiple copies of the same combination. If this is just an API call would
appreciate it being shared!

Thanks,
Nick
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Using age-type attributes in program indicator calculations

2018-04-03 Thread Shurajit Dutta
Thanks Markus, just wanted to confirm.

https://jira.dhis2.org/browse/DHIS2-3312

On Tue, Apr 3, 2018 at 2:30 AM, Markus Bekken <mar...@dhis2.org> wrote:

> Nayeem, thanks for the workaround.
>
> Nick, the proposed usage should have worked. Age should be treated as a
> normal date data type in the program indicators. Can you create a bug in
> jira?
>
> Markus
>
> 3. apr. 2018 kl. 03:41 skrev Nayeem Al Mifthah <n.mift...@gmail.com>:
>
> Hi Nick
> I have also notice the same problem. Later created a data element in
> program stage and assign age in year as a calculative value from program
> attribute 'age'.
>
> It works!
>
> Regards,
> Nayeem Al Mifthah
> Consultant for HSS, HMIS, M, GIS and Surveillance
>
> Kindly ignore typos.
>
> On Mon, 2 Apr 2018, 23:07 Shurajit Dutta, <shurajitdu...@gmail.com> wrote:
>
>> Hi
>>
>> I am trying to figure out the best method to use age-type attributes in
>> program indicator calculations. As a simple example, let us say I want a
>> program indicator which displays the age in years of a person. From what I
>> can see, the age-type attribute stores its value as a date, according to
>> the date of birth either selected or estimated based on what is entered in
>> the years, weeks and months fields respectively during registration. If I
>> want to use this date in a program indicator however it seems to not work
>> correctly.
>>
>> ie d2:yearsBetween(age, event_date) when used as an expressions as an
>> example would not give me the correct age in years. Is there another way in
>> which to make these types of program indicators work with the age-type
>> attribute?
>>
>> Thanks,
>> Nick
>> ___
>> Mailing list: https://launchpad.net/~dhis2-users
>> Post to : dhis2-users@lists.launchpad.net
>> Unsubscribe : https://launchpad.net/~dhis2-users
>> More help   : https://help.launchpad.net/ListHelp
>>
> _______
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help   : https://help.launchpad.net/ListHelp
>
>
>


-- 
Shurajit Dutta (MPH, MHI)
Health Information Systems Adviser
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Using age-type attributes in program indicator calculations

2018-04-02 Thread Shurajit Dutta
Hi

I am trying to figure out the best method to use age-type attributes in
program indicator calculations. As a simple example, let us say I want a
program indicator which displays the age in years of a person. From what I
can see, the age-type attribute stores its value as a date, according to
the date of birth either selected or estimated based on what is entered in
the years, weeks and months fields respectively during registration. If I
want to use this date in a program indicator however it seems to not work
correctly.

ie d2:yearsBetween(age, event_date) when used as an expressions as an
example would not give me the correct age in years. Is there another way in
which to make these types of program indicators work with the age-type
attribute?

Thanks,
Nick
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Using attribute options in indicators

2018-03-20 Thread Shurajit Dutta
Great, thanks Jim!

On Tue, Mar 20, 2018 at 9:22 AM, Jim Grace <j...@dhis2.org> wrote:

> Hi Nick,
>
> Yes, in version 2.27 and onwards you can do exactly that. The
> attributeoptcombo-id can be given as a third element in an indicator
> variable after the dataelement-id and categoryoptcombo-id. See the
> documentation at https://docs.dhis2.org/master/en/developer/html/webapi_
> indicators.html.
>
> Cheers,
> Jim
>
>
> On Tue, Mar 20, 2018 at 12:17 AM, Shurajit Dutta <shurajitdu...@gmail.com>
> wrote:
>
>> Hi everyone
>>
>> Is it possible to use attribute options in indicators calculations. For
>> example if I have two partners assigned to a dataset, PSI and Save the
>> Children but I only want to include PSI data in the indicator.
>>
>> Thanks
>> Nick
>>
>> ___
>> Mailing list: https://launchpad.net/~dhis2-users
>> Post to : dhis2-users@lists.launchpad.net
>> Unsubscribe : https://launchpad.net/~dhis2-users
>> More help   : https://help.launchpad.net/ListHelp
>>
>>
>
>
> --
> Jim Grace
> Core developer, DHIS 2
> HISP US Inc.
> http://www.dhis2.org <https://www.dhis2.org/>
>



-- 
Shurajit Dutta (MPH, MHI)
Health Information Systems Adviser
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Using attribute options in indicators

2018-03-19 Thread Shurajit Dutta
Hi everyone

Is it possible to use attribute options in indicators calculations. For
example if I have two partners assigned to a dataset, PSI and Save the
Children but I only want to include PSI data in the indicator.

Thanks
Nick
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] [Dhis2-devs] Using population accross health programs

2018-03-18 Thread Shurajit Dutta
Hi

Just to add to Alex's comment.

Make sure to set the aggregation operator of the population data element to
"average (sum in org unit hierachy)" along with setting the indicators to
annualized.

On Sun, Mar 18, 2018, 3:35 PM Alex Tumwesigye  wrote:

> Hi Diao,
>
> Create an indicator using your annual data element and tick Annualized on
> the indicator. Go to the pivot and choose monthly period, it should work.
>
> Alex
>
> On Sunday, March 18, 2018, Mamadou Diao Diallo 
> wrote:
>
>> Hi Community,
>> I have a problem using population accross health programs,
>>
>> In fact we are collecting population annualy in a separate form, but a
>> specific health program would like to see the population in their monthly
>> report.
>> I don't want to let them collect it monthly.
>>
>> Is there a technical solution to show this annual population in a monthly
>> report?
>> When I call the dataElement the real value is not coming.
>>
>> Do you have any advices about it?
>>
>> Hope it's clear.
>>
>> Thanks in advance.
>>
>> Diao
>>
>> --
>> *DIALLO Mamadou Diao Conseiller IT, Specialiste de DHIS 2 **( District
>> Health Information Software )*
>>
>>
>> *Projet de Renforcement du Système d'Information Sanitaire en Guinée*
>> *Phone : 623909413 | 662256106*
>> *Skype : diawwdiallo*
>> www.jsi.com
>>
>
>
> --
> Alex Tumwesigye
>
> Kampala
> Uganda
> +256 774149 775, + 256 759 800161
> Skype ID: talexie
>
> IT Consultant (Servers, Networks and Security, Health Information Systems
> - DHIS2, Disease Outbreak & Surveillance Systems) & Solar Consultant
>
>
> "I don't want to be anything other than what I have been - one tree hill "
>
> ___
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help   : https://help.launchpad.net/ListHelp
>
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] attributes not showing up for program indicators

2018-01-22 Thread Shurajit Dutta
Hi Natalie,

I have reported this issue here

https://jira.dhis2.org/browse/DHIS2-2202?jql=text%20~%20%22program%20indicators%20attributes%22

I see it is present in 2.27 and 2.28, however it seems to be fixed on the
latest snapshot/development version; hopefully this fix will trickle down
soon.

For now as a work-around, I have been saving the indicator with the
expression empty. If you then go back and edit the indicator, the tracked
entity attribute list should display properly.

Nick



On Mon, Jan 22, 2018 at 12:41 PM, Natalie Tibbels <ntibb...@jhu.edu> wrote:

> Hi all,
> Does anyone know why attributes may not be showing up to be used in
> program indicator expressions and filters? Other variables and data
> elements are showing up.
> ~Natalie
>
> ---
> *Natalie Tibbels, MSPH*
> 410.370.5048 <(410)%20370-5048> (cell) • natalietib (Skype)
> Johns Hopkins Bloomberg School of Public Health
> Center for Communication Programs • ccp.jhu.edu
>
>
>
>
>
> ___
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help   : https://help.launchpad.net/ListHelp
>
>


-- 
Shurajit Dutta (MPH, MHI)
Health Information Systems Adviser
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Constructing indicators from boolean data elements

2018-01-01 Thread Shurajit Dutta
Hi Jennifer

In order to do this you should create two program indicators.

1. Count events with the yes responses
2. Count the total events

You can then make a combined indicator in the maintenance indicator app
using these two program indicators.

To do this choose 'programs' followed by program indicators when you select
the numerator/denominator

Nick


On Jan 1, 2018 6:16 PM, "Spratt, Jennifer"  wrote:

Hello all, I am trying to create an indicator that is the proportion of
entities that replied “yes” on a Boolean data element in a dataset. (Number
replying yes divided by total number responding).



I have searched high and low in the DHIS2 user’s guide, but find nothing to
help me construct what should be a pretty basic indicator.



I have specified the Indicator type as “percentage”, the numerator as
#{UID}==1 and the denominator as #{UID}>=0,  (replacing “UID” with the
actual UID of course)  and I KNOW there are both 1s and 0s in the data
element in question, but the result is always “0”.



Also, I thought one could use an indicator as the basis for another
indicator, but am unable to see “indicator” among the choice of items when
creating numerators and denominators…



PS, I have also tried +(#{UID}==1)  and #{UID}==”TRUE”  as the numerator,
but the result is the same… Evidently filters do not work in aggregate
indicator construction? Or do they?



Could you enlighten me as to what I may be doing wrong, and ideally, point
me to the elegant obvious solution?



Much obliged,



*Jennifer E. Spratt, Ph.D.*

Senior Education Research Analyst

International Development Group at RTI International

Email: spr...@rti.org   Skype: j_spratt

Mobile: 443-562-2129 <(443)%20562-2129>  Messages: 410-235-0019
<(410)%20235-0019>



___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] organization unit tree won't display

2017-12-19 Thread Shurajit Dutta
​Hi Mohamed,

Is this in a new blank instance? Is your user assigned to any organisation
units? I would try and check that first.

Thanks,
Nick​


On Tue, Dec 19, 2017 at 3:59 PM, Mohamed Elkhou <oelk...@gmail.com> wrote:

> Dear All,
>
> I am using a DHIS2 live 2.28 local installation.
>
> When trying to create an ‘organization unit group' or a dataset the
> organization unit tree won't display,  it says instead "Determining your
> root organization unit".
>
> How do I get the organization unit tree to display?
>
>
>
> Please help
>
> Many thanks
>
> Mohamed
>
> ___
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help   : https://help.launchpad.net/ListHelp
>
>


-- 
Shurajit Dutta (MPH, MHI)
Health Information Systems Adviser
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Patterns for unique tracked entity attributes

2017-11-01 Thread Shurajit Dutta
Thanks for the info Markus!

On Nov 1, 2017 7:45 PM, "Markus Bekken" <mar...@dhis2.org> wrote:

Hi there Nick!
Currently only integers is supported, and the pattern signifies how many
digits to use in the pattern. We have this Jira planned for 2.29:
https://jira.dhis2.org/browse/DHIS2-434

Markus

1. nov. 2017 kl. 12.30 skrev Shurajit Dutta <shurajitdu...@gmail.com>:

Hi,

Could someone let me know what types of patterns are supported when a
tracked entity attribute is selected to be automatically generated?



​Thanks,
Nick​

___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Patterns for unique tracked entity attributes

2017-11-01 Thread Shurajit Dutta
Hi,

Could someone let me know what types of patterns are supported when a
tracked entity attribute is selected to be automatically generated?

[image: Inline image 1]

​Thanks,
Nick​
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Permissions to see everything in Reports module EXCEPT for Analytics

2017-11-01 Thread Shurajit Dutta
Hi all

Please see the following:
https://jira.dhis2.org/browse/DHIS2-2079

Seems it is a known issue. At least analytics is not triggered unless they
actually have permission.

Nick

On Mon, Oct 30, 2017 at 2:44 PM, Laura E. Lincks <
laura.lin...@icap.columbia.edu> wrote:

> I thought so too... but I have a role that can See Report Module... I did
> not assign it the Administer data mart authority... Yet that role still has
> access to Analytics. I ran Analytics and thought maybe it wasn't truly
> functional. It never spit out details of the process but it did show a
> "Start..." message.
> I could have sworn I've logged into instances where I see Reports without
> Analytics. Seems I can log in to DATIM Reports Module and also see
> Analytics option. I didn't execute for fear that I could do damage.
>
> *Laura E. Lincks*
> Database Manager/Developer
> ICAP - Columbia University
> Mailman School of Public Health
> 60 Haven Ave, Floor B1
> New York, NY 10032
> Tel: 212 304 7132 <(212)%20304-7132>
>
> On Mon, Oct 30, 2017 at 1:26 PM, Knut Staring <knu...@gmail.com> wrote:
>
>> HmI think it was that way, though it does not seem to be the case
>> anymore?
>>
>> On Mon, Oct 30, 2017 at 6:21 PM, Knut Staring <knu...@gmail.com> wrote:
>>
>>> Hi Laura,
>>>
>>> This has in fact been done in the online demo.
>>>
>>> I *think* you just have to remove the "Administer data mart" authority
>>> from the user role.
>>>
>>> Best,
>>> Knut
>>>
>>>
>>> On Mon, Oct 30, 2017 at 4:47 PM, Laura E. Lincks <
>>> laura.lin...@icap.columbia.edu> wrote:
>>>
>>>> ​​Version:
>>>> 2.27
>>>>
>>>> Build revision:
>>>> 0a49a22
>>>>
>>>> Is there a way to create a User role which has access to the *Reports
>>>> Module* for everything EXCEPT access to run Analytics?
>>>>
>>>> *Laura E. Lincks*
>>>> Database Manager/Developer
>>>> ICAP - Columbia University
>>>> Mailman School of Public Health
>>>> 60 Haven Ave, Floor B1
>>>> <https://maps.google.com/?q=60+Haven+Ave,+Floor+B1+New+York,+NY+10032=gmail=g>
>>>> New York, NY 10032
>>>> <https://maps.google.com/?q=60+Haven+Ave,+Floor+B1+New+York,+NY+10032=gmail=g>
>>>> Tel: 212 304 7132 <(212)%20304-7132>
>>>>
>>>> ___
>>>> Mailing list: https://launchpad.net/~dhis2-users
>>>> Post to : dhis2-users@lists.launchpad.net
>>>> Unsubscribe : https://launchpad.net/~dhis2-users
>>>> More help   : https://help.launchpad.net/ListHelp
>>>>
>>>>
>>>
>>>
>>> --
>>> Knut Staring
>>> Dept. of Informatics, University of Oslo
>>> Norway: +4791880522 <+47%20918%2080%20522>
>>> Skype: knutstar
>>> http://dhis2.org
>>>
>>
>>
>>
>> --
>> Knut Staring
>> Dept. of Informatics, University of Oslo
>> Norway: +4791880522 <+47%20918%2080%20522>
>> Skype: knutstar
>> http://dhis2.org
>>
>
>
> ___
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help   : https://help.launchpad.net/ListHelp
>
>


-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Measure criteria for program indicators

2017-10-20 Thread Shurajit Dutta
Hi,

I was looking through the measure criteria feature in the pivot table app.
It seems to work well for aggregate data. When I try and apply this to
program indicators however, the filter does not seem to be applied. Is
there a plan to implement this feature for program indicators as well?

Thanks,
Nick
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Unable to trigger program rule to hide program stage

2017-10-17 Thread Shurajit Dutta
Sorry seems I had two rules with the same expression, and therefore only
one action was triggering. My mistake!

On Wed, Oct 18, 2017 at 12:47 AM, Shurajit Dutta <shurajitdu...@gmail.com>
wrote:

> Hello all,
>
> Am having difficulty triggering the program rule to hide a program stage.
> I have tried a couple variations using latest 2.28 and none seem to be
> working.
>
> In this example, I have a measles case investigation stage that I want to
> hide unless the initial diagnosis is measles. I set up the variable to be
> "data element from the newest event in the current program" and I am *not* 
> using
> the codes for the option set as I am displaying this initial diagnosis
> information in the feedback widget regardless of what program stage has
> been selected.
>
> My expression is as follows:
>
> #{initialdiag} != 'Measles (B05.0-B05.9)'
>
> I used that expression to successfully hide a section unless measles is
> selected within the same program; however the program stage does not hide.
>
> Any suggestions?
>
> Thanks,
> Nick
>
>


-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Unable to trigger program rule to hide program stage

2017-10-17 Thread Shurajit Dutta
Hello all,

Am having difficulty triggering the program rule to hide a program stage. I
have tried a couple variations using latest 2.28 and none seem to be
working.

In this example, I have a measles case investigation stage that I want to
hide unless the initial diagnosis is measles. I set up the variable to be
"data element from the newest event in the current program" and I am
*not* using
the codes for the option set as I am displaying this initial diagnosis
information in the feedback widget regardless of what program stage has
been selected.

My expression is as follows:

#{initialdiag} != 'Measles (B05.0-B05.9)'

I used that expression to successfully hide a section unless measles is
selected within the same program; however the program stage does not hide.

Any suggestions?

Thanks,
Nick
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] SUMMING UP TWO PROGRAM INDICATOR RESULTS

2017-10-12 Thread Shurajit Dutta
Hi Stanley

You can combine program indicators in the routine indicators app in
maintenance

[image: Inline image 1]

Nick

On Thu, Oct 12, 2017 at 11:54 AM, Stanley Kalyati <skaly...@gmail.com>
wrote:

> Can anyone help how one can sum the results of two program indicators into
> another new program indicator?
>
> ie Program Indicator A + Program Indicator 2= Program Indicator 3
>
> Thank you all
>
> Stanley
>
> ___
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help   : https://help.launchpad.net/ListHelp
>
>


-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Fwd: sharing settings on DataElements / metadata

2017-09-16 Thread Shurajit Dutta
David,

I have just tested this and think its also quite helpful, thanks!

On Fri, Sep 15, 2017 at 3:22 AM, Ramón José Jiménez Pomareta <
dh...@pomareta.ch> wrote:

> At some time we forgot to copy all the dhis1 users haha and I think that's
> a great tool !
>
>
> -- Forwarded message --
> From: David Huser <dhu...@baosystems.com>
> Date: 2017-09-12 20:58 GMT+02:00
> Subject: Re: [Dhis2-users] sharing settings on DataElements / metadata
> To: Ramón José Jiménez Pomareta <dh...@pomareta.ch>
>
>
> Great to hear! Thanks for the feedback.
>
>
> On Tue, Sep 12, 2017 at 3:40 PM, Ramón José Jiménez Pomareta <
> dh...@pomareta.ch> wrote:
>
>> Hey David !
>>
>> Wow! That's amazing! I used to reset all elements like that :
>>
>> dhis2-pk-share-objects.exe -t=userGroups -f="id:!eq:1" -a=none
>> -w="name:$ilike:NTD Team"
>>
>> Thanks a lot ! Nice work !
>>
>> 2017-09-06 22:15 GMT+02:00 David Huser <dhu...@baosystems.com>:
>>
>>> Hi Ramón
>>>
>>> If you have a structure in your metadata it's easier to share all of
>>> them through the API (docs
>>> <https://docs.dhis2.org/master/en/developer/html/dhis2_developer_manual_full.html#webapi_set_sharing_status>).
>>> I need to do this often, but I don't like advertising my own stuff - feel
>>> free to use it if useful. https://github.com/dav
>>> idhuser/dhis2-pocket-knife#mass-sharing-of-objects-via-filtering
>>>
>>> Best,
>>> David
>>>
>>>
>>> On Wed, Sep 6, 2017 at 4:32 PM, Shurajit Dutta <shurajitdu...@gmail.com>
>>> wrote:
>>>
>>>> Hi Ramon
>>>>
>>>> In order to hide certain data elements, you need to set up sharing for
>>>> each individual data element, the data element group, etc. I am not aware
>>>> of a very easy way to do this though would be happy to hear other methods.
>>>>
>>>> On Wed, Sep 6, 2017 at 4:20 AM, Ramón José Jiménez Pomareta <
>>>> dh...@pomareta.ch> wrote:
>>>>
>>>>> Hello,
>>>>>
>>>>> We have realised that dataElements (and I think other metadata) are
>>>>> visible to everyone by default (in contrast to dashboards). Nevertheless 
>>>>> we
>>>>> need that only a group of users have access to these dataElements.
>>>>>
>>>>> [image: Images intégrées 2]
>>>>> (sharing settings to dataElementTest and dataElementTest2)
>>>>>
>>>>> If we group these DE in a DEGroup and we change its visibility, the DE
>>>>> remain visible to everyone.
>>>>>
>>>>> [image: Images intégrées 3]
>>>>> (sharing settings of the dataElementGroupTest)
>>>>>
>>>>> [image: Images intégrées 4]
>>>>> (a user not in DHIS2 Admin team)
>>>>>
>>>>>
>>>>> The questions are :
>>>>>
>>>>> 1. What do you recommend us to do?
>>>>> 2. Is there a way to change easily this visibility without doing an
>>>>> script/App ?
>>>>> 3. If not, is there an easy way through the API? (i.e. add a group
>>>>> keeping the existing ones )
>>>>>
>>>>> Thank you so much !
>>>>> Ramon.
>>>>>
>>>>> ___
>>>>> Mailing list: https://launchpad.net/~dhis2-users
>>>>> Post to : dhis2-users@lists.launchpad.net
>>>>> Unsubscribe : https://launchpad.net/~dhis2-users
>>>>> More help   : https://help.launchpad.net/ListHelp
>>>>>
>>>>>
>>>>
>>>>
>>>> --
>>>> Shurajit Dutta
>>>> Health Information Consultant
>>>>
>>>> ___
>>>> Mailing list: https://launchpad.net/~dhis2-users
>>>> Post to : dhis2-users@lists.launchpad.net
>>>> Unsubscribe : https://launchpad.net/~dhis2-users
>>>> More help   : https://help.launchpad.net/ListHelp
>>>>
>>>>
>>>
>>>
>>> --
>>>
>>>
>>> *David Huser*
>>> DHIS2 Support Specialist
>>> dhu...@baosystems.com | https://baosystems.com |  2900 K Street, Suite
>>> 406, Washington D.C. 20007
>>> <https://maps.google.com/?q=2900+K+Street,+Suite+406,+Washington+D.C.+20007=gmail=g>
>>>
>>
>>
>
>
> --
>
>
> *David Huser*
> DHIS2 Support Specialist
> dhu...@baosystems.com | https://baosystems.com |  2900 K Street, Suite
> 406, Washington D.C. 20007
> <https://maps.google.com/?q=2900+K+Street,+Suite+406,+Washington+D.C.+20007=gmail=g>
>
>
> ___
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help   : https://help.launchpad.net/ListHelp
>
>


-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] sharing settings on DataElements / metadata

2017-09-06 Thread Shurajit Dutta
Hi Ramon

In order to hide certain data elements, you need to set up sharing for each
individual data element, the data element group, etc. I am not aware of a
very easy way to do this though would be happy to hear other methods.

On Wed, Sep 6, 2017 at 4:20 AM, Ramón José Jiménez Pomareta <
dh...@pomareta.ch> wrote:

> Hello,
>
> We have realised that dataElements (and I think other metadata) are
> visible to everyone by default (in contrast to dashboards). Nevertheless we
> need that only a group of users have access to these dataElements.
>
> [image: Images intégrées 2]
> (sharing settings to dataElementTest and dataElementTest2)
>
> If we group these DE in a DEGroup and we change its visibility, the DE
> remain visible to everyone.
>
> [image: Images intégrées 3]
> (sharing settings of the dataElementGroupTest)
>
> [image: Images intégrées 4]
> (a user not in DHIS2 Admin team)
>
>
> The questions are :
>
> 1. What do you recommend us to do?
> 2. Is there a way to change easily this visibility without doing an
> script/App ?
> 3. If not, is there an easy way through the API? (i.e. add a group keeping
> the existing ones )
>
> Thank you so much !
> Ramon.
>
> ___
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help   : https://help.launchpad.net/ListHelp
>
>


-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] acces Data entry menu in DHIS2 (offline)

2017-08-17 Thread Shurajit Dutta
Hi there,

Yes you can perform data entry offline. You can view this video to see how
it works:

https://www.youtube.com/watch?v=uaC5gBP3Ph0

Regards,
Nick

On Thu, Aug 17, 2017 at 2:52 PM, NI KETUT HESTI WIDIASTUTI Djadi <
ni.ketut.hesti...@mail.ugm.ac.id> wrote:

> Hai,
> i want to ask, is there imposible to make DHIS2 (specialy "data entry"
> fitur) running when internet offline?
> and users need internet (online) when they want to upload the data to
> server..
> thank you..
> --
> Salam
> Ni Ketut Hesti Widiastuti Djadi
> SIMKES UGM
>
>
>
> <https://www.avast.com/sig-email?utm_medium=email_source=link_campaign=sig-email_content=webmail>
>  Virus-free.
> www.avast.com
> <https://www.avast.com/sig-email?utm_medium=email_source=link_campaign=sig-email_content=webmail>
> <#m_-622759695338521_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
>
> ___
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help   : https://help.launchpad.net/ListHelp
>
>


-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] API call to list all data elements within a dataset

2017-08-17 Thread Shurajit Dutta
Hi everyone,

Can someone share with me the API call to list all data elements within a
dataset, perhaps the uid and name? Though if someone has something already
that provides more fields that would also be great.

Thanks,
Nick
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] DHIS2 don't showing annualized Indicator based on Population data as expected monthly

2017-07-21 Thread Shurajit Dutta
Hi Vunda

Also is the aggregation operator for the population data element set to
average (sum in org unit hierarchy)?


On Jul 21, 2017 7:20 PM, "vunda limbe"  wrote:

Hi Community and Developer,

I have a population DE that helps to capture population Annually and I have
some indicators that use its and those are set to be annualized. I've made
a constatation that the result is different compared to excel sheet, and
DHIS2 doesn't dividing annual population by 12 for monthly report.
This is a bug or am I walking wrong side?
Your help is welcome.

Thanks.

Vunda Limbe

___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Assigning value to a tracked entity attribute

2017-07-20 Thread Shurajit Dutta
Hello,

I am trying to assign a value from a data element within a program stage to
a tracked entity attribute of the same program. They are both assigned the
same option set. I would like to assign the option that is selected during
tracker capture back to the tracked entity attribute. This is how I have
configured the action:


[image: Inline image 1]
The expression is being evaluated correctly as this is also tied to a
second action (display text) which is working fine. Also when I check the
console I can see it being evaluated correctly. Any help on this would be
appreciated.

Thanks,
Nick

-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Finding the days between 2 events (different program stages) in the same program

2017-07-12 Thread Shurajit Dutta
Hi there,

Am wondering if it is possible to use d2:daysBetween (or weeks, years, etc)
to find the difference between two event dates in the same program (but
belonging to different program stages). I know you can use the program
stage name/id in the filter, but in this case can I need to specify the
event dates so it knows which dates to find the difference between. Can I
prefix these dates somehow?

In this use case I have a malaria program where cases are identified (stage
1). In stage 2 an investigation is performed, ideally this should be done
within 2 days of case identification. Essentially am looking for a count of
these events that meet this criteria.

Thanks,
Nick
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Predictors for "carry forward" and cohorts

2017-06-29 Thread Shurajit Dutta
Sorry!

I thought about this for a second again. For 6 months I think it's more
like this

Period type = Monthly
Annual sample count = 0
Sequential sample count = 5
Sequential skip count = 4

This would eg. take data only from January 2017 to fill in the June 2017
cohort.

On Jun 29, 2017 10:23 PM, "Shurajit Dutta" <shurajitdu...@gmail.com> wrote:

Hi Olav

I am not sure about all cohort types, would have to look a bit more. I
believe for 6 months cohort it might work like this (remember I haven't
tested).

Period type = Monthly
Annual sample count = 0
Sequential sample count = 6
Sequential skip = 5

Then it would exclude the first 5 months of data in relation to the sample
selected while also going 6 months back.

I guess you could potentially do the same for the other cohorts as long as
your skip identified how far back you went?

Perhaps I need to test this myself

Nick


On Jun 27, 2017 8:44 PM, "Olav Poppe" <olav.po...@me.com> wrote:

Hi all,
I wanted to check if anyone had any experience using predictors for 1)
«carry forward» of values from one period to the following, or 2) copying
cohort data forward?

As far as I can tell from some limited testing, 1) should work as it is now
by setting sequential sample count to 1 and annual sample count to 0. You
could then for example copy ending balance for May 2017 to starting balance
June 2017 etc. (note: I don’t mean to start a discussion how to collect
data on stock).

Moving forward cohorts would similarly work today, but only for 12 month
cohorts as far as I can figure out. From what I understand, even 12-month
cohorts are sometimes in reality reported after e.g. 14 months, and there
are of course others (6 months, 24 months, 36 months). At least on the
surface, it would seem adding support for specifying the sample period as X
months back would be a relatively straightforward thing, and it would be
very helpful for this purpose. I know people are using custom script for
this type of thing today.

Regards
Olav






___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Predictors for "carry forward" and cohorts

2017-06-29 Thread Shurajit Dutta
Hi Olav

I am not sure about all cohort types, would have to look a bit more. I
believe for 6 months cohort it might work like this (remember I haven't
tested).

Period type = Monthly
Annual sample count = 0
Sequential sample count = 6
Sequential skip = 5

Then it would exclude the first 5 months of data in relation to the sample
selected while also going 6 months back.

I guess you could potentially do the same for the other cohorts as long as
your skip identified how far back you went?

Perhaps I need to test this myself

Nick


On Jun 27, 2017 8:44 PM, "Olav Poppe"  wrote:

Hi all,
I wanted to check if anyone had any experience using predictors for 1)
«carry forward» of values from one period to the following, or 2) copying
cohort data forward?

As far as I can tell from some limited testing, 1) should work as it is now
by setting sequential sample count to 1 and annual sample count to 0. You
could then for example copy ending balance for May 2017 to starting balance
June 2017 etc. (note: I don’t mean to start a discussion how to collect
data on stock).

Moving forward cohorts would similarly work today, but only for 12 month
cohorts as far as I can figure out. From what I understand, even 12-month
cohorts are sometimes in reality reported after e.g. 14 months, and there
are of course others (6 months, 24 months, 36 months). At least on the
surface, it would seem adding support for specifying the sample period as X
months back would be a relatively straightforward thing, and it would be
very helpful for this purpose. I know people are using custom script for
this type of thing today.

Regards
Olav






___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] DHIS2 Live setup with postgresql database

2017-05-30 Thread Shurajit Dutta
Hi Raja,

What does the hibernate file look like? I've located mine in \dhis-live\conf

Here is a sample of mine which seems to be working

# Hibernate SQL dialect
connection.dialect = org.hibernate.dialect.PostgreSQLDialect
# JDBC driver class
connection.driver_class = org.postgresql.Driver
# JDBC driver connection URL
connection.url = jdbc:postgresql:dbname
# Database username
connection.username = username
# Database password
connection.password = password
# Database schema behavior, can be validate, update, create, create-drop
connection.schema = update
#Encryption password (sensitive)
#encryption.password = password

On Wed, May 31, 2017 at 1:12 PM, Raja Imran Qamer <im...@pace-tech.com>
wrote:

> Dear DHIS2 Users,
>
> I have downloaded dhis2 live setup and learned it, Now i want to integrate
> it with postgresql database, I changed conf file but could not succeded, it
> leads me to error 503.
> Can anyone help me plz?
>
> one of my colleague asked same question on stackoverflow aswell.
> https://stackoverflow.com/questions/44257061/how-to-do-confi
> guration-of-postgresql-database-in-dhis2#44257061
>
>
> Thanks in advance.
> --
> RAJA IMRAN QAMER,
>
>> Senior Software Engineer, Team Lead,
>> PACE TECHNOLOGIES,
>> Email:im...@pace-tech.com, rajaimranqa...@gmail.com
>> Phone: +923345073573, +92512361110
>> Web: www.pace-tech.com
>>
>
> ___
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help   : https://help.launchpad.net/ListHelp
>



-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Difficulties with the Program Indicators

2017-05-25 Thread Shurajit Dutta
Hi Julie

Sorry did you get this fixed?

I believe it may have to do with your code of 0 as dhis2 reserves 0 for no
type values. So that option code may not be ready correctly in he filter.
Instead of 0 I typically use 99.

On May 19, 2017 5:00 PM, "Julie Vanhamme" <juvha...@gmail.com> wrote:

> Hi Shurajit,
>
> Thank you very much. It worked! :-)))
>
> I tested it with several data elements and I get just one more issue for
> one data element.
>
> I have Program Indicator 1 == Not at all satisfied (which was 0)
> Expression: event count
> filter : dataelement == 0
>
> I also took my Program Indicator 2: number of surveys which was already
> set up, as it is the same as for the others.
>
> I combined the two indicators and I got 100, as 100%. For all the others,
> it worked and I got the right percentage.
> I dubble checked if my configuration was ok and it is the same logic as
> with the other. Any idea why I get 100%? And actually, it is supposed to be
> 0% as none of the respondents selected this option (not at all satisfied).
>
> Is it because of the 0 value?
>
> Thank you
> Julie
>
>
>
> Julie Vanhamme
>
>
>
> 2017-05-19 9:09 GMT+02:00 Shurajit Dutta <shurajitdu...@gmail.com>:
>
>> Hi Julie,
>>
>> I believe you should make two program indicators and combine them
>> together in the indicator maintenance app.
>>
>> The aggregation type should be count for both
>>
>> Program Indicator 1 = very satisfied responses
>> Expression: event count
>> filter: dataelement == very satisfied code
>>
>> Program Indicator 2 = number of surveys
>> Expression: event count
>> filter: blank
>>
>> Combined indicator in indicator maintenance app
>> Numerator: Program Indicator 1 = very satisfied responses
>> Denominator: Program Indicator 2 = number of surveys
>> Type = factor of 100
>>
>>
>>
>> On Fri, May 19, 2017 at 3:00 PM, Julie Vanhamme <juvha...@gmail.com>
>> wrote:
>>
>>> Hi Ola,
>>>
>>> Thank you very much for your advices. I am a DHIS2 beginner and I guess
>>> that I am making some mistakes in the configuration and/or formula. I tried
>>> yesterday and I get data in my pivot tables but not the data I need. In
>>> only get "2" as I wrote it in my filter (see below). Let me answer to your
>>> questions and explain the situation :-)
>>>
>>> I am using "Event capture" as we did a one shot survey and we don't
>>> track the patient.
>>>
>>> *Program configuration:*
>>>
>>>- without registration
>>>- version: 4
>>>- Drop-down list
>>>- other field are empty or have the default configuration
>>>
>>> *Program indicator set up *(I believe that here is the problem and that
>>> I am making some mistakes with the formula):
>>>
>>>
>>>- I have one Data Element as follow : Are you satisfied with the
>>>gynecological service? Very satisfied (1), more or less (2) , and not at
>>>all (3) (these are the three responses possibles of my DE)
>>>- I wanted to create an indicator as follow: % of the respondents
>>>that say that they are "very satisfied" with the gynecological service.
>>>
>>>
>>>- Aggregation type: Average
>>>- Expression: I only selected my data element divided by the number
>>>of event count and then multiple by 100 : (#{qH1SRxSAoWI.AbdjW61ac8I} /
>>>V{event_count}) * 100
>>>- Filter I select my data element == 1 , so it is something like
>>>that : #{qH1SRxSAoWI.AbdjW61ac8I} == 2
>>>
>>> I guess I am wrong in my formula. Any guidance, solution or advice?
>>>
>>> Thank you again very much in advance for your support.
>>> Julie
>>>
>>>
>>> Julie Vanhamme
>>>
>>>
>>>
>>> 2017-05-18 9:28 GMT+02:00 Ola Hodne Titlestad <ol...@ifi.uio.no>:
>>>
>>>> Hi Julie,
>>>>
>>>> Would be good if you could share some more details about your program
>>>> configuration, including how you set up your program indicator.
>>>>
>>>> Are you using event capture (single event data) or tracker capture
>>>> (multiple events and registration) for this use cases?
>>>>
>>>> When you say you can see the data in event reports, does that include
>>>> aggregate values in the 'aggregated mode'?
>>>>
>>>> If I have trouble w

Re: [Dhis2-users] Difficulties with the Program Indicators

2017-05-19 Thread Shurajit Dutta
gt;>>>> Knut
>>>>> -- Forwarded message --
>>>>> From: Julie <juvha...@gmail.com>
>>>>> Date: Wed, May 17, 2017 at 3:44 PM
>>>>> Subject: Difficulties with the Program Indicators
>>>>> To: Knut Staring <knu...@gmail.com>
>>>>>
>>>>>
>>>>> Hi,
>>>>>
>>>>> I am using the Event tracker of DHIS2 for a project.
>>>>>
>>>>> In a nutshell, I already set up the program and programs stages. I also
>>>>> run the Analytics and I have will all the data needed in my program.
>>>>> Indeed, while I am using the Event report with the data element (and
>>>>> not
>>>>> the indicators), everything is fine and I can see the pivot tables with
>>>>> the data.
>>>>>
>>>>> Now I am trying to create Indicators trough the program and everything
>>>>> seemed ok (the formula,  etc.). Except that when I am trying to use the
>>>>> indicator in a pivot table, the table appears but with no data inside.
>>>>>
>>>>> So what could be the problem with the indicators and how can I fix it?
>>>>> Is it a problem of configuration? Formula? ...
>>>>>
>>>>> Many thanks.
>>>>> Julie
>>>>> --
>>>>> This message was sent from Launchpad by
>>>>> Julie (https://launchpad.net/~juvhamme)
>>>>> using the "Contact this team's admins" link on the DHIS 2 Users team
>>>>> page
>>>>> (https://launchpad.net/~dhis2-users).
>>>>> For more information see
>>>>> https://help.launchpad.net/YourAccount/ContactingPeople
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> Knut Staring
>>>>> Dept. of Informatics, University of Oslo
>>>>> Norway: +4791880522 <+47%20918%2080%20522>
>>>>> Skype: knutstar
>>>>> http://dhis2.org
>>>>>
>>>>
>>>>
>>>> ___
>>>> Mailing list: https://launchpad.net/~dhis2-users
>>>> Post to : dhis2-users@lists.launchpad.net
>>>> Unsubscribe : https://launchpad.net/~dhis2-users
>>>> More help   : https://help.launchpad.net/ListHelp
>>>>
>>>>
>>>
>>>
>>> --
>>> *Em Le Hong*
>>> DHIS2 Implementation| *HISP Vietnam *
>>> em.hispviet...@gmail.com | *Skype:* em.hispviet...@gmail.com
>>>
>>>
>>>
>>>
>>>
>>>
>>> ___
>>> Mailing list: https://launchpad.net/~dhis2-users
>>> Post to : dhis2-users@lists.launchpad.net
>>> Unsubscribe : https://launchpad.net/~dhis2-users
>>> More help   : https://help.launchpad.net/ListHelp
>>>
>>>
>
> ___
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help   : https://help.launchpad.net/ListHelp
>
>


-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Enter data for a future date in Event and Tracker Capture

2017-04-25 Thread Shurajit Dutta
Sorry, to add you can also allow future enrollment/incident dates in tracker

[image: Inline image 1]

I am not sure about entering future events

On Wed, Apr 26, 2017 at 11:02 AM, Shurajit Dutta <shurajitdu...@gmail.com>
wrote:

> Hi Georgi,
>
> 1. You can select "Date in future" for attributes/data elements within a
> program to enter future dates
>
> [image: Inline image 1]
>
> 2. Does the use of program indicators not solve this issue? You could
> select those months as the period of interest during analysis.
>
> Nick
>
> On Tue, Apr 25, 2017 at 9:53 PM, Georgi Chakarov <
> geo...@logicaloutcomes.net> wrote:
>
>> Hello DHIS2 users and devs!
>>
>>
>>
>> I have two questions:
>>
>> 1)  Is there a way to enter data for a future date in Event and
>> Tracker capture? The latest date that could be selected in these two apps
>> at data entry is the current date.
>>
>>
>>
>> 2)  Has someone worked with project periods that are outside of the
>> available periods in DHIS2? I have a client that uses Fiscal Year May, 1 –
>> April, 30 and this is causing a real trouble at data entry as well as
>> reporting.
>>
>> For example, the period from May, 1 2015 – April, 30 2016 is defined as
>> Fiscal Year 2016. Data is entered daily in Event and Tracker Capture. How
>> do we enter data so that we fall under this specific reporting period and
>> how do we report an aggregate number for the entire 2016 Fiscal Year?
>>
>> [Not to mention that *TRACKER DOES NOT* correctly aggregate reports when
>> selecting two different years and setting them as report filter in the
>> reports layout, which is an option to display one aggregate number for 2
>> years.]
>>
>>
>>
>>
>>
>> Your input is highly appreciated and awaited!
>>
>>
>>
>> Thanks,
>>
>>
>>
>> Georgi
>>
>>
>>
>>
>> Georgi Chakarov, CIA | geo...@logicaloutcomes.net | +1-647-478-5634 x 104
>> <(647)%20478-5634> | LogicalOutcomes c/o Centre for Social Innovation,
>> 720 Bathurst Street, Toronto Canada M5S 2R4 | *You may unsubscribe from
>> receiving commercial electronic messages from LogicalOutcomes by emailing *
>> *i...@logicaloutcomes.net* <i...@logicaloutcomes.net>
>>
>>
>>
>> ___
>> Mailing list: https://launchpad.net/~dhis2-users
>> Post to : dhis2-users@lists.launchpad.net
>> Unsubscribe : https://launchpad.net/~dhis2-users
>> More help   : https://help.launchpad.net/ListHelp
>>
>>
>
>
> --
> Shurajit Dutta
> Health Information Consultant
>



-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Enter data for a future date in Event and Tracker Capture

2017-04-25 Thread Shurajit Dutta
Hi Georgi,

1. You can select "Date in future" for attributes/data elements within a
program to enter future dates

[image: Inline image 1]

2. Does the use of program indicators not solve this issue? You could
select those months as the period of interest during analysis.

Nick

On Tue, Apr 25, 2017 at 9:53 PM, Georgi Chakarov <geo...@logicaloutcomes.net
> wrote:

> Hello DHIS2 users and devs!
>
>
>
> I have two questions:
>
> 1)  Is there a way to enter data for a future date in Event and
> Tracker capture? The latest date that could be selected in these two apps
> at data entry is the current date.
>
>
>
> 2)  Has someone worked with project periods that are outside of the
> available periods in DHIS2? I have a client that uses Fiscal Year May, 1 –
> April, 30 and this is causing a real trouble at data entry as well as
> reporting.
>
> For example, the period from May, 1 2015 – April, 30 2016 is defined as
> Fiscal Year 2016. Data is entered daily in Event and Tracker Capture. How
> do we enter data so that we fall under this specific reporting period and
> how do we report an aggregate number for the entire 2016 Fiscal Year?
>
> [Not to mention that *TRACKER DOES NOT* correctly aggregate reports when
> selecting two different years and setting them as report filter in the
> reports layout, which is an option to display one aggregate number for 2
> years.]
>
>
>
>
>
> Your input is highly appreciated and awaited!
>
>
>
> Thanks,
>
>
>
> Georgi
>
>
>
>
> Georgi Chakarov, CIA | geo...@logicaloutcomes.net | +1-647-478-5634 x 104
> <(647)%20478-5634> | LogicalOutcomes c/o Centre for Social Innovation,
> 720 Bathurst Street, Toronto Canada M5S 2R4 | *You may unsubscribe from
> receiving commercial electronic messages from LogicalOutcomes by emailing *
> *i...@logicaloutcomes.net* <i...@logicaloutcomes.net>
>
>
>
> ___
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help   : https://help.launchpad.net/ListHelp
>
>


-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] SMS/Mobile configuration

2017-04-23 Thread Shurajit Dutta
Hi everyone

Are you trying to set up SMS to receive information, to send out messages
such as notifications etc or both?

For receiving (aggregate) data, I would suggest reviewing the docs here:

https://docs.dhis2.org/master/en/user/html/mobile_sms_command.html

You may want to start with adding an SMS gateway to your configuration for
sending back feedback and notifications as well. Popular services include
BulkSMS and Clickatell.

https://docs.dhis2.org/master/en/user/html/mobile_sms_service.html

After this is configured, you would also have to configure the
notifications. If it is for a program you can read more about that here

https://docs.dhis2.org/master/en/user/html/manage_program_notification.html




On Apr 23, 2017 1:04 PM, "Jahid Shahed"  wrote:

I am also interested to learn this.


Regards,

*Jahid Hossen Shahed *
Skype: jahidshahed

  Please consider your environmental responsibility. Before printing this
e-mail message, ask yourself whether you really need a hard copy.

On Mon, Apr 17, 2017 at 7:04 PM, Stanley Kalyati  wrote:

> I am also waiting to learn from this.
>
> Has this been answered? if so can anyone forward to me the responses.
>
> Thank you
>
> Stanley
>
> On Wed, Apr 12, 2017 at 7:21 AM, Adhi  wrote:
>
>> Dear all,
>>
>> I have DHIS2 ver. 2.25 installed on a server.
>> Can anyone help me how to configure SMS? What hardware or software do I
>> have to prepare? (like what kind of cellphone will be used, SMS gateway
>> application, etc.).
>> Step-by-step guidance will be very helpful.
>>
>> Best regards,
>> Adhi Andrianto
>> @ sekolahmalaria.info
>>
>>
>> ___
>> Mailing list: https://launchpad.net/~dhis2-users
>> Post to : dhis2-users@lists.launchpad.net
>> Unsubscribe : https://launchpad.net/~dhis2-users
>> More help   : https://help.launchpad.net/ListHelp
>>
>>
>
> ___
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help   : https://help.launchpad.net/ListHelp
>
>


Virus-free.
www.avast.com

<#m_2642966809130707487_DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Instruction field for validation rules

2017-04-16 Thread Shurajit Dutta
Hi there,

I noticed the "instruction" field for validation rules is not longer
present in the validation rules maintenance app in 2.26 and above. It still
fetches the instruction to display it to the user if this was defined
previously in an older version, and the tag is still present in the API.
Will this be added back to the UI, or is it in a different location that I
am missing?

[image: Inline image 1]


Thanks,
Nick
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Selecting program indicators within a program indicator group during analysis

2017-04-14 Thread Shurajit Dutta
To add to this, it seems this resource is not accessible via the API

[image: Inline image 1]

On Fri, Apr 14, 2017 at 6:44 PM, Shurajit Dutta <shurajitdu...@gmail.com>
wrote:

> Hi,
>
> Am trying to determine where I can select program indicators within the
> program indicator groups I have created during analysis. I tried searching
> within the pivot table and data visualizer apps and could not find the
> program indicator group I had created within the drop-downs. This was done
> on both
>
> https://play.dhis2.org/dev and
> https://play.dhis2.org/demo
>
> Thanks,
> Nick
>



-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Selecting program indicators within a program indicator group during analysis

2017-04-14 Thread Shurajit Dutta
Hi,

Am trying to determine where I can select program indicators within the
program indicator groups I have created during analysis. I tried searching
within the pivot table and data visualizer apps and could not find the
program indicator group I had created within the drop-downs. This was done
on both

https://play.dhis2.org/dev and
https://play.dhis2.org/demo

Thanks,
Nick
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Field Surveys using DHIS2 event capture/Android event capture

2017-02-07 Thread Shurajit Dutta
Hi everyone,

I would like to know if there are some use cases out there where DHIS2
event capture/Android event capture has been used to collect data at the
community level. In this specific context, there has been a request to
potentially apply to this to collecting LLIN (bednet) distribution data
within a malaria program in the community, but I would be quite happy to
hear about any other related use cases out there.

Thanks!
Nick
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Unable to import CSV metadata through import-export app

2017-01-24 Thread Shurajit Dutta
Hi,

I am attempting to import a CSV metadata file (attached) in 2.25 build
2bac6dc through the import-export app. During the import, I receive the
following error message in the log:

SEVERE: Unable to determine string representation of value of type
[org.hisp.dhis.user.User]
org.hibernate.LazyInitializationException: failed to lazily initialize a
collection of role: org.hisp.dhis.user.User.groups, could not initialize
proxy - no Session

I have tried importing the CSV file with no changes in 2.24 and it goes
through with no problems.

For 2.25, I ended up getting around this by using an XML file instead but
am wondering what this error is?

Thanks,
Nick
name,uid,code,shortname,description,formname,domaintype,valuetype,aggregationoperator,categorycombo,url
Generalist (non-specialist) medical doctors,gdt1JG8fnBa,,Generalist (non-specialist) medical doctors,,,TRACKER,NUMBER,,,
Specialist medical doctors,hQpy0N3o1tS,,Specialist medical doctors,,,TRACKER,NUMBER,,,
Non-physician clinicians/ paramedical professionals,aYx5fIOULcs,,Non-physician clinician/paramedical professional,,,TRACKER,NUMBER,,,
Nursing professionals,EW84Xmc5ZM1,,Nursing professionals,,,TRACKER,NUMBER,,,
Midwifery professionals,kmRELUocB7A,,Midwifery professionals,,,TRACKER,NUMBER,,,
Pharmacists,Ym4xxYoniQV,,Pharmacists,,,TRACKER,NUMBER,,,
Laboratory technicians,ADVjtJk41id,,Laboratory technicians,,,TRACKER,NUMBER,,,
Community health workers,tMTvLFgSKcT,,Community health workers,,,TRACKER,NUMBER,,,
Administrative Staff,Tl6xFPf714T,,Administrative Staff,,,TRACKER,NUMBER,,,
General Staff,XZpsSTzi7Yv,,General Staff,,,TRACKER,NUMBER,,,
"Overnight/ inpatient beds, for adults and children",AWYQLsZfPAP,,Overnight/inpatient beds adults and children,,,TRACKER,NUMBER,,,
Dedicated maternity beds,UETWB0MLCwb,,Dedicated maternity beds,,,TRACKER,NUMBER,,,
Functional ambulance,m6YcaZEBsan,,Functional ambulance,,,TRACKER,BOOLEAN,,,
Access to email or internet,esVEHl5yiMj,,Access to email or internet,,,TRACKER,BOOLEAN,,,
Functioning computer,CGnwNpK8yGf,,Functioning computer,,,TRACKER,BOOLEAN,,,
Functioning cellular telephone or a private cellular phone,kVikM5ejzRy,,Functioning cellphone or a private cellphone,,,TRACKER,BOOLEAN,,,
Access to an ambulance or other vehicle for emergency transport stationed at another facility,RFVMXwNyAkI,,Acces ambulance other vehicle for emergency,,,TRACKER,BOOLEAN,,,
"Electricity from any source (e.g. electricity grid, generator, solar, or other)",AfXwLEypQQT,,Electricity from any source,,,TRACKER,BOOLEAN,,,
Grid electricity,QxEnaQvjQND,,Grid electricity,,,TRACKER,BOOLEAN,,,
Solar power functional,Wsm0xXls7Jz,,Solar power functional,,,TRACKER,BOOLEAN,,,
Functioning Generator,ieTkrACL0bj,,Functioning Generator,,,TRACKER,BOOLEAN,,,
Piped water,hySmDEGYJr2,,Piped water,,,TRACKER,BOOLEAN,,,
Well or borehole,PCKEes4W7tf,,Well or borehole,,,TRACKER,BOOLEAN,,,
Unprotected spring,kr9J1nHZnnp,,Unprotected spring,,,TRACKER,BOOLEAN,,,
Tanker truck,AsTA8wCLozs,,Tanker truck,,,TRACKER,BOOLEAN,,,
Water under 500m from facility,ECTHsMXu0ct,,Water under 500m from facility,,,TRACKER,BOOLEAN,,,
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] SMS Commands : Not saving data element code

2017-01-16 Thread Shurajit Dutta
Dear Amone,

I also ran into this problem. You will need to update to the most recent
build of DHIS2 from ci.dhis2.org

Nick

On Mon, Jan 16, 2017 at 5:53 PM, Amone Junior. Felimone <
amone.felim...@manhica.net> wrote:

> Hi,
>
> im using version 2.25.
> In the demo server this problem do not occur, when i create an sms command
> all the parameters are saved
>
> On Mon, Jan 16, 2017 at 11:48 AM, Knut Staring <knu...@gmail.com> wrote:
>
>> Hi there,
>>
>> Which version of DHIS2? Can you recreate this problem on the online demo
>> server?
>>
>> Knut
>>
>> On Mon, Jan 16, 2017 at 10:24 AM, Amone Junior. Felimone <
>> amone.felim...@manhica.net> wrote:
>>
>>> Dear all,
>>>
>>> im trying to setup a SMS service in DHIS2 so the community health
>>> workers can send data through SMS,
>>> When i configure the SMS Command, all the parameters are saved except
>>> the codes for the data elements. So when i send a SMS containing data
>>> values the import fails, the import  only succeds when i send an SMS
>>> without data values.
>>> --
>>>
>>> Felimone Amone Junior
>>>
>>> Data Manager
>>>
>>> Centro de Investigação em Saúde de Manhiça (CISM)
>>>
>>> Tel./Fax: (+258) 21 81 00 02/181
>>>
>>> CP 1929 Maputo - Moçambique
>>>
>>> Página Web: www.manhica.org
>>>
>>> E-mail: amone.felim...@manhica.net <em...@manhica.net>
>>>
>>>
>>> DISCLAIMER:
>>>
>>> Esta mensagem pode conter dados confidenciais e/ou privados. Se recebeu
>>> a mensagem por erro, queira informar-nos respondendo a este e-mail e
>>> elimina-lo de seguida do seu sistema. Muito obrigado pela sua cooperação.
>>>
>>> CISM - Centro de Investigação em Saúde de Manhiça
>>>
>>> This message may contain confidential and/or privileged information. If
>>> you have recived this message in error, please notify us immediatly by
>>> respondig to this e-mail and then delete it from your system. Thank for
>>> your cooperation.
>>>
>>> By CISM - Centro de Investigação em Saúde de Manhiça
>>>
>>>
>>> ___
>>> Mailing list: https://launchpad.net/~dhis2-users
>>> Post to : dhis2-users@lists.launchpad.net
>>> Unsubscribe : https://launchpad.net/~dhis2-users
>>> More help   : https://help.launchpad.net/ListHelp
>>>
>>>
>>
>>
>> --
>> Knut Staring
>> Dept. of Informatics, University of Oslo
>> Norway: +4791880522 <+47%20918%2080%20522>
>> Skype: knutstar
>> http://dhis2.org
>>
>
>
>
> --
>
> Felimone Amone Junior
>
> Data Manager
>
> Centro de Investigação em Saúde de Manhiça (CISM)
>
> Tel./Fax: (+258) 21 81 00 02/181
>
> CP 1929 Maputo - Moçambique
>
> Página Web: www.manhica.org
>
> E-mail: amone.felim...@manhica.net <em...@manhica.net>
>
>
> DISCLAIMER:
>
> Esta mensagem pode conter dados confidenciais e/ou privados. Se recebeu a
> mensagem por erro, queira informar-nos respondendo a este e-mail e
> elimina-lo de seguida do seu sistema. Muito obrigado pela sua cooperação.
>
> CISM - Centro de Investigação em Saúde de Manhiça
>
> This message may contain confidential and/or privileged information. If
> you have recived this message in error, please notify us immediatly by
> respondig to this e-mail and then delete it from your system. Thank for
> your cooperation.
>
> By CISM - Centro de Investigação em Saúde de Manhiça
>
>
> ___
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help   : https://help.launchpad.net/ListHelp
>
>


-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Lost aggregate builder in DHIS2 v2.25

2016-12-20 Thread Shurajit Dutta
Hi Channara,

This has been effectively replaced by program indicators. You can have a
look at some of the relevant documentation to learn more

https://ci.dhis2.org/docs/2.25/en/user/html/ch27s04.html

https://www.dhis2.org/event-tracker-program-indicator-basics
https://www.dhis2.org/working-with-program-indicator-filters

Nick

On Wed, Dec 21, 2016 at 11:37 AM, channara rin <rin.chann...@gmail.com>
wrote:

> dear all,
> any one can help me?, usually, i use aggregate builder to create value
> with formula for *data element*. and when i test with version 2.25, i
> can't find aggregate builder function.
>
> regards,
> channara
>
> ___
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help   : https://help.launchpad.net/ListHelp
>
>


-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Sharing settings for data set reset when new org units assigned

2016-12-16 Thread Shurajit Dutta
Thanks Lars, will do

On Fri, Dec 16, 2016 at 3:06 PM, Lars Helge Øverland <l...@dhis2.org> wrote:

> Hi Nick,
>
> thanks for reporting and reproducing the issue. Can you please report it
> on JIRA <https://jira.dhis2.org> together with the exact steps for
> reproducing it?
>
> regards,
>
> Lars
>
>
> On Fri, Dec 16, 2016 at 5:34 AM, Shurajit Dutta <shurajitdu...@gmail.com>
> wrote:
>
>> Hi everyone,
>>
>> I notice that if I set up sharing settings for a data set, but then later
>> on assign this data set to new org units, all of the sharing settings for
>> the user groups I have selected for that data set are reset. I have tried
>> this on both 2.24 locally as well as 2.25 on play.dhis2.org/demo.
>>
>> Is this by design?
>>
>> Nick
>>
>> ___
>> Mailing list: https://launchpad.net/~dhis2-users
>> Post to : dhis2-users@lists.launchpad.net
>> Unsubscribe : https://launchpad.net/~dhis2-users
>> More help   : https://help.launchpad.net/ListHelp
>>
>>
>
>
> --
> Lars Helge Øverland
> Lead developer, DHIS 2
> University of Oslo
> Skype: larshelgeoverland
> l...@dhis2.org
> http://www.dhis2.org <https://www.dhis2.org/>
>
>


-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Sharing settings for data set reset when new org units assigned

2016-12-15 Thread Shurajit Dutta
Hi everyone,

I notice that if I set up sharing settings for a data set, but then later
on assign this data set to new org units, all of the sharing settings for
the user groups I have selected for that data set are reset. I have tried
this on both 2.24 locally as well as 2.25 on play.dhis2.org/demo.

Is this by design?

Nick
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] SMS Mobile Commands not saving

2016-11-18 Thread Shurajit Dutta
Hi there,

I am trying to test the SMS mobile commands on my local machine but am
unable to save the sms mobile commands. I tried to do this on play.dhis2.org
and am finding the same result.

In play.dhis2.org/demo

1. Go to mobile config -> SMS commands
2. Edit the mortality command that is already there
3. Enter in some commands (ie. Measles (Deaths <5 yrs) = md, etc.)
4. Save
5. Click on edit for the mortality command
6. SMS commands that I entered are not there

Would appreciate any assistance.

Thanks,
Nick
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] can't delete data element

2016-11-17 Thread Shurajit Dutta
Hi Channara,

You would have to delete all the values associated with that DE first.

On Fri, Nov 18, 2016 at 9:43 AM, channara rin <rin.chann...@gmail.com>
wrote:

> dear all,
> do you know how to delete data element that we already used input data
> value?
>
> regards,
> channara
>
> ___
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help   : https://help.launchpad.net/ListHelp
>
>


-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Moving between pivots, visualizer and GIS

2016-11-08 Thread Shurajit Dutta
Hi,

I am getting the following error when trying to move between the above
mentioned apps (ie. create this table as a chart, create this chart as a
table etc.)

[image: Inline image 1]

This seems to occur if I have multiple organisation units selected. The
period can either be in the filter or column of a table, or in the filter
of a chart for this to occur.

It seems to work ok if only one org unit is selected with multiple periods.

The steps to find this error are the following in pivot table as an example:

1. Create a pivot table with one DE, one period (last year, 2012, etc.) and
multiple org units
2. Arrange the layout as Filter: Period, Column: Data, Row: Org unit
3. Update
4. Try to "Create this table as chart"

​Any ideas?​

​Thanks,
Nick​

-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Unable to download from data visualizer

2016-11-07 Thread Shurajit Dutta
Hi Morten,

Strangely it seems to be working with every chart type but line charts?

I was able to download ok but when tested with line chart the same error
still happens on play.dhis2.org

Nick

On Tue, Nov 8, 2016 at 12:50 PM, Morten Olav Hansen <mor...@dhis2.org>
wrote:

> Hi Nick
>
> Seems to be working fine here.. maybe it was something temporary? (tried
> it on play/demo)
>
> --
> Morten Olav Hansen
> Senior Engineer, DHIS 2
> University of Oslo
> http://www.dhis2.org
>
> On Tue, Nov 8, 2016 at 8:01 AM, Shurajit Dutta <shurajitdu...@gmail.com>
> wrote:
>
>> Hi,
>>
>> I am unable to download either an image or PDF file from the data
>> visualizer in 2.25. I tried both on my local install and on
>> play.dhis2.org. I receive the following error when trying to download
>> one of these formats:
>>
>> The webpage at *https://play.dhis2.org/demo/api/svg.pdf
>> <https://play.dhis2.org/demo/api/svg.pdf>* might be temporarily down or
>> it may have moved permanently to a new web address.
>>
>> There is no response in the Chrome console.
>>
>> Any ideas?
>>
>> Thanks,
>> Nick
>>
>> --
>> Shurajit Dutta
>> Health Information Consultant
>>
>> ___
>> Mailing list: https://launchpad.net/~dhis2-users
>> Post to : dhis2-users@lists.launchpad.net
>> Unsubscribe : https://launchpad.net/~dhis2-users
>> More help   : https://help.launchpad.net/ListHelp
>>
>>
>


-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Detailed Meta-Data Export in 2.25

2016-10-30 Thread Shurajit Dutta
Hi Lars et al.

As others have mentioned, I was also thinking about exporting a sub-set of
objects (and what I would have traditionally used it for), like all
dataelements, orgunits etc. within a certain group.

On Sun, Oct 30, 2016 at 12:14 PM, Hannan Khan <hann...@gmail.com> wrote:

> Dear Lars
>
> We also required detailed metadata export with dependency from where can
> select a subset (not all the organisationunits, dataelements etc) as Knut
> says. Without that we will be in deep water. We already have lots of issues
> with metadata.
>
> Regards
>
> Hannan
>
>
> On Sat, Oct 29, 2016 at 11:56 PM, Knut Staring <knu...@gmail.com> wrote:
>
>> A nice feature with the detailed one was that you could select a subset
>> (not all the organisationunits, dataelements etc).
>>
>> On Sat, Oct 29, 2016 at 5:07 PM, Lars Helge Øverland <l...@dhis2.org>
>> wrote:
>>
>>>
>>> Hi Nick,
>>>
>>> if you have specific needs let us know and we can consider including new
>>> objects here.
>>>
>>> As Morten said, the previous detailed metadata export was too error
>>> prone as one would typically forget important parts when exporting things
>>> like categories and data sets.
>>>
>>> regards,
>>>
>>> Lars
>>>
>>>
>>>
>>>
>>>
>>> On Fri, Oct 28, 2016 at 9:58 PM, Morten Olav Hansen <mor...@dhis2.org>
>>> wrote:
>>>
>>>> Hi Nick
>>>>
>>>> Yeah, that has been removed now, it wasn't really working well, and
>>>> there would almost always be missing objects.
>>>>
>>>> What are you trying to export? if its data set or program, did you have
>>>> a look at our new "export with deps" functionality?
>>>>
>>>> https://dhis2.github.io/dhis2-docs/master/en/developer/html/
>>>> webapi_metadata_export.html#webapi_dataset_program_export_dependencies
>>>>
>>>> You can also find it in the UI, under import/export module
>>>>
>>>> --
>>>> Morten Olav Hansen
>>>> Senior Engineer, DHIS 2
>>>> University of Oslo
>>>> http://www.dhis2.org
>>>>
>>>> On Sat, Oct 29, 2016 at 12:01 AM, Shurajit Dutta <
>>>> shurajitdu...@gmail.com> wrote:
>>>>
>>>>> Hi,
>>>>>
>>>>> I notice in 2.25 I no longer have the option to perform a detailed
>>>>> meta-data export from the import-export app. Is this feature being
>>>>> deprecated? I couldn't see anything related to it in the release notes and
>>>>> find it quite useful.
>>>>>
>>>>> Thanks,
>>>>> Nick
>>>>>
>>>>>
>>>>>
>>>>> ___
>>>>> Mailing list: https://launchpad.net/~dhis2-users
>>>>> Post to : dhis2-users@lists.launchpad.net
>>>>> Unsubscribe : https://launchpad.net/~dhis2-users
>>>>> More help   : https://help.launchpad.net/ListHelp
>>>>>
>>>>>
>>>>
>>>> ___
>>>> Mailing list: https://launchpad.net/~dhis2-users
>>>> Post to : dhis2-users@lists.launchpad.net
>>>> Unsubscribe : https://launchpad.net/~dhis2-users
>>>> More help   : https://help.launchpad.net/ListHelp
>>>>
>>>>
>>>
>>>
>>> --
>>> Lars Helge Øverland
>>> Lead developer, DHIS 2
>>> University of Oslo
>>> Skype: larshelgeoverland
>>> l...@dhis2.org
>>> http://www.dhis2.org <https://www.dhis2.org/>
>>>
>>>
>>> ___
>>> Mailing list: https://launchpad.net/~dhis2-users
>>> Post to : dhis2-users@lists.launchpad.net
>>> Unsubscribe : https://launchpad.net/~dhis2-users
>>> More help   : https://help.launchpad.net/ListHelp
>>>
>>>
>>
>>
>> --
>> Knut Staring
>> Dept. of Informatics, University of Oslo
>> Norway: +4791880522
>> Skype: knutstar
>> http://dhis2.org
>>
>> ___
>> Mailing list: https://launchpad.net/~dhis2-users
>> Post to : dhis2-users@lists.launchpad.net
>> Unsubscribe : https://launchpad.net/~dhis2-users
>> More help   : https://help.launchpad.net/ListHelp
>>
>>
>
>
> --
> Muhammad Abdul Hannan Khan
> Secretary
> HISP Bangladesh
>
> T +880-2- 8816459, 8816412 ext 118
> F +88 02 8813 875
> M+88 01819 239 241
> M+88 01534 312 066
> E hann...@gmail.com
> S hannan.khan.dhaka
> B hannan-tech.blogspot.com
> L https://bd.linkedin.com/in/hannankhan
>
>
> ___
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help   : https://help.launchpad.net/ListHelp
>
>


-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Detailed Meta-Data Export in 2.25

2016-10-28 Thread Shurajit Dutta
Hi,

I notice in 2.25 I no longer have the option to perform a detailed
meta-data export from the import-export app. Is this feature being
deprecated? I couldn't see anything related to it in the release notes and
find it quite useful.

Thanks,
Nick
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Program Indicator question

2016-06-30 Thread Shurajit Dutta
Hi everyone

Quick question about program indicators.

If I want to estimate a mother's due date based on last menstrual period
for example, how does the expression for the program indicator look like?

Thanks
Nick
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Unable to locate organization unit module in DHIS 2.23

2016-05-18 Thread Shurajit Dutta
Hi Harpreet

These functions have been moved to the maintenance app.

Nick

On Wed, May 18, 2016 at 6:27 PM, Harpreet Singh <hsi...@bmi.icmr.org.in>
wrote:

> Hi
>
> I installed DHIS2 and I am unable to locate organization unit, data
> element define unit etc.
>
> please help
>
> Harpreet Singh PhD
> Scientist - E
> Indian Council of Medical Research
> Ansari Nagar
> New Delhi
>
> e-mail: hsi...@bmi.icmr.org.in
> phone: +91-11-26589556
>
> ___
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help   : https://help.launchpad.net/ListHelp
>



-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Sharing through UI

2016-05-13 Thread Shurajit Dutta
Hi,

I am having some trouble using the new sharing interface introduced in
2.22. It seema to be unresponsive, and sometimes items just disappear for
no reason at all when I try and alter the permissions for a user group when
trying to set up the sharing for a data element group for instance. This is
hard to convey through screenshots so I have made a short recording using
the Sierra Leone demo instance.

Also, I see there is no way to remove a user group if I would like to
through the UI when trying to share these objects.

Any help on this would be great.

Thanks,
Nick
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Android aggregate data capture app: Import process aborted.

2016-05-09 Thread Shurajit Dutta
Thanks Araz for the advice, have been able to resolve now by changing some
of the user rights.

On Mon, May 9, 2016 at 2:28 PM, Araz Abishov <a...@dhis2.org> wrote:

> Hi Shurajit,
>
> Are you sure that given user has write access rights (is able to send
> reports) to the server?
>
> You can also send me application logs, but in order to get them you will
> need to use Android Studio.
> Here is the source code of application:
> https://github.com/dhis2/dhis2-android-datacapture/tree/legacy
>
> You can also create a test dataset and a user with limited access on your
> DHIS2 instance, so I can test and reproduce the error myself.
>
> Best regards,
>
> —
> Araz Abishov,
> Android developer, DHIS 2
> University of Oslo
> https://www.dhis2.org/
>
> On May 9, 2016 at 6:33:37 AM, Shurajit Dutta (shurajitdu...@gmail.com)
> wrote:
>
> Hi everyone,
>
> Am trying to use the android data capture app (version is latest on google
> play). I can connect to an instance, download all the forms etc. fine but
> when I click on Save I keep getting the error message "Import process was
> aborted." The instances I have tried are all on various builds of 2.23. Is
> there any more info I can look at/provide to help solve this?
>
> Thanks.
> Nick
>
> --
> Shurajit Dutta
> Health Information Consultant
> ___
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help : https://help.launchpad.net/ListHelp
>
>


-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Unable to select aggregation operator

2016-05-05 Thread Shurajit Dutta
Great, thanks Mark! will verify

On Thu, May 5, 2016 at 4:19 PM, Mark Polak <m...@dhis2.org> wrote:

> Hey Nick,
>
> Fixed it just now. When the build is complete [1] you should be able to
> download it. I would appreciate it if you could verify ;)
>
> [1] http://ci.dhis2.org/job/dhis2-2.23/35/
>
> Regards,
>
> Mark
>
> On Thu, May 5, 2016 at 9:58 AM, Mark Polak <m...@dhis2.org> wrote:
>
>> Hey Nick,
>>
>> Thanks for reporting. You are right, this is not like it is supposed to
>> be.
>>
>> @Prosper We do not have such smart logic in place (Perhaps we should have
>> though, but as far as i'm aware it's currently not there)
>>
>> Mark
>>
>> On Thu, May 5, 2016 at 6:33 AM, Shurajit Dutta <shurajitdu...@gmail.com>
>> wrote:
>>
>>> Hi Prosper,
>>>
>>> This is when creating a completely new data element that hasn't been
>>> used anywhere before.
>>>
>>> Nick
>>>
>>> On Thu, May 5, 2016 at 12:31 PM, Prosper BT <ptb3...@gmail.com> wrote:
>>>
>>>> Dear Nick,
>>>>
>>>> Have you already used the data element in any tracker program? Thats
>>>> could also affect it so may need to first removed it from the program.
>>>>
>>>> Regards
>>>>
>>>> On Thu, May 5, 2016 at 7:06 AM, Shurajit Dutta <shurajitdu...@gmail.com
>>>> > wrote:
>>>>
>>>>> Hi everyone
>>>>>
>>>>> When trying to create a new data element, if I mistakenly select
>>>>> tracker as the domain type, then change back to aggregate, I can no longer
>>>>> select the aggregation operator.
>>>>>
>>>>> Understand the need for this to not be configurable if tracker is
>>>>> selected as domain.
>>>>>
>>>>> Using 2.23 build 22882.
>>>>>
>>>>> Thanks,
>>>>> Nick
>>>>>
>>>>> ___
>>>>> Mailing list: https://launchpad.net/~dhis2-users
>>>>> Post to : dhis2-users@lists.launchpad.net
>>>>> Unsubscribe : https://launchpad.net/~dhis2-users
>>>>> More help   : https://help.launchpad.net/ListHelp
>>>>>
>>>>>
>>>>
>>>>
>>>> --
>>>> Prosper Behumbiize, MPH
>>>> Global HISP| University Of Oslo/HISP Uganda
>>>> +256 752 751 776 | +256 776 139 139
>>>> pros...@hispuganda.org <ptb3...@gmail.com> | pros...@dhis2.org | Skype:
>>>> prospertb
>>>>
>>>
>>>
>>>
>>> --
>>> Shurajit Dutta
>>> Health Information Consultant
>>>
>>> ___
>>> Mailing list: https://launchpad.net/~dhis2-users
>>> Post to : dhis2-users@lists.launchpad.net
>>> Unsubscribe : https://launchpad.net/~dhis2-users
>>> More help   : https://help.launchpad.net/ListHelp
>>>
>>>
>>
>>
>> --
>> Regards,
>>
>>
>> Mark Polak
>> Software developer, DHIS 2
>> University of Oslo
>> http://www.dhis2.org <https://www.dhis2.org/>
>> m...@dhis2.org
>>
>
>
>
> --
> Regards,
>
>
> Mark Polak
> Software developer, DHIS 2
> University of Oslo
> http://www.dhis2.org <https://www.dhis2.org/>
> m...@dhis2.org
>



-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Unable to select aggregation operator

2016-05-04 Thread Shurajit Dutta
Hi everyone

When trying to create a new data element, if I mistakenly select tracker as
the domain type, then change back to aggregate, I can no longer select the
aggregation operator.

Understand the need for this to not be configurable if tracker is selected
as domain.

Using 2.23 build 22882.

Thanks,
Nick
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Unable to create parent org unit in 2.23

2016-05-03 Thread Shurajit Dutta
Hi everyone

I am having a slight problem in the new maintenance app. If I am trying to
build an org unit hierarchy from scratch through the UI, it seems the level
1 org unit won't display. When I check the actual database, it exists, but
it does not appear on the user interface within the application. I am using
2.23 build 22894

Here are the steps:
1. Create blank instance
2. Start it up
3. Go to maintenance - > org units
4. Click on add
5. Enter details and Save

​It does not appear on either the left hand side menu or within the long
list on the right hand side. ​

​In demo, I can add org units as children still no problem.​

​Any ideas, am I simply missing something?

Nick​

-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] HOW DO I DISAGGREGATE CLIENT BASED DATA-TRACKER

2016-04-14 Thread Shurajit Dutta
Hi Stanley

Could you verify?

You have a Tracker program that is collecting age as an attribute and you
want to separate this according to the groupings you have described?

If so, you will have to create program indicators filtering out the data.
You can find more info here

Docs
http://dhis2.github.io/dhis2-docs/master/en/user/html/ch30.html

And here (tutorial)

https://www.dhis2.org/working-with-program-indicator-filters

Nick
On Apr 14, 2016 5:05 PM, "Stanley Kalyati"  wrote:

> Thank you Prosper for the insight.But how do I ensure that the system
> picks those under 5 or above 5 since we are entering individual records
> with different ages.
>
> Do I create category options for each data element? I.e Gender and Age
> Group?
>
> Thanks again
> --
> From: Prosper BT 
> Sent: ‎14/‎04/‎2016 07:10
> To: Laura E. Lincks 
> Cc: Stanley Kalyati ; DHIS Users
> ; DHIS 2 Developers list
> 
> Subject: Re: [Dhis2-users] HOW DO I DISAGGREGATE CLIENT BASED DATA-TRACKER
>
> Dear Stanley
>
> You will need to create each individual category indicator separately, say
> this was disaggregated by gender and age the same will have to be done.
>
> Examples Malaria disaggregated by Male/Female and Under5 or Over 5 the
> indicators would be
>
> 1. Malaria Male under 5
> 2. Malaria Female under 5
> 3. Malaria Male over 5
> 4. Malaria Female over 5
>
> So 4 indicators will have to be constructed for the above report
>
> Regards
>
> On Thu, Apr 14, 2016 at 7:50 AM, Laura E. Lincks <
> laura.lin...@icap.columbia.edu> wrote:
>
>> Stanley, I believe that disaggregations (categories) cannot be used in
>> Tracker. You must create each individual data element. There is an email
>> from Lars regarding this and was related to a slightly older version of
>> DHIS (and I cannot find that email at the moment but it's here somewhere).
>> In working with Tracker in 2.22 recently, I found that categories I
>> assigned to tracker data elements did not flow through to my final program
>> stage form. I had to create each data element's disaggregation.
>> On Apr 13, 2016 11:19 AM, "Stanley Kalyati"  wrote:
>>
>>> Dear Ladies and Gentlmen
>>>
>>> How do i disaggregate ages captured in tracker? I have an indicator that
>>> looks at number of clients tested for HIV.I want to be able to know their
>>> age group i.e <20,20-24,25-49 and 50+
>>>
>>> Kindly assist,am using DHIS2 2.22 Built 21763
>>>
>>> Thank you
>>>
>>> Stanley Kalyati
>>> MW
>>>
>>> ___
>>> Mailing list: https://launchpad.net/~dhis2-users
>>> Post to : dhis2-users@lists.launchpad.net
>>> Unsubscribe : https://launchpad.net/~dhis2-users
>>> More help   : https://help.launchpad.net/ListHelp
>>>
>>>
>> ___
>> Mailing list: https://launchpad.net/~dhis2-users
>> Post to : dhis2-users@lists.launchpad.net
>> Unsubscribe : https://launchpad.net/~dhis2-users
>> More help   : https://help.launchpad.net/ListHelp
>>
>>
>
>
> --
> Prosper Behumbiize, MPH
> Global HISP| University Of Oslo/HISP Uganda
> +256 752 751 776 | +256 776 139 139
> pros...@hispuganda.org  | pros...@dhis2.org | Skype:
> prospertb
>
> ___
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help   : https://help.launchpad.net/ListHelp
>
>
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Android Event Capture App

2016-03-28 Thread Shurajit Dutta
Hi everyone,

I just wanted to know if program rules (skip logic) is supported in the
android event capture app?

​Thanks,
Nick​

-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] digit group separator in pivot table

2016-03-23 Thread Shurajit Dutta
Hi everyone,

Have having a problem using a digit group separator of "none" in the pivot
table app. This doesn't seem to have any effect on the group separator on
the table itself. Comma and space seem to work OK however.

The instance I am working on is:
Version:2.22Build revision:21920
I was also able to replicate this problem on the demo instance by selecting
a favourite and trying to change the separator as well.
Any ideas?
Nick

-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] program role assignment in 2.22 version

2016-02-26 Thread Shurajit Dutta
Hi Fatema,

Did you make sure that you assigned the program to a user role?

You have to use the users app to do this it is not done from the program
screen anymore.

Nick

On Sat, Feb 27, 2016 at 2:53 PM, Uddin Fatema <fatema...@gmail.com> wrote:

> Dear All,
>
> I created new program and assign that in few organisation unit.'
>
> Now I am going to tracker capture and select those facility but it is not
> showing that program. How can I solve this in dhis2.22
>
> In previous version there was program role assignment part for each
> program but in 2.22 I cant see that.
>
> How it is in 2.22 version.
>
> Thanks in advance for your great cooperation
> --
> Regards,
> *Fatema Uddin*
>
> Technical Advisor (HIS)-Support to the Health Sector Program II
> Deutsche Gesellschaft für Internationale Zusammenarbeit (GIZ) GmbH
> German House
> House 10/A-2, Road 90
> Gulshan 2, Dhaka 1212, Bangladesh
>
> T  +880 9666701000
> F  +880 28823099
> M +880 19 6206 4712
> I   www.giz.de
> <https://owa.giz.de/owa/redir.aspx?C=mPQMujasE0-yL6Aa4ocPcnkcfUThJNEIi4h1DwsYjO3Ua20UR_COt6aTH1s4JIdR4p-jCoFsP6A.=http%3a%2f%2fwww.giz.de%2f>
>
>
> ___
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help   : https://help.launchpad.net/ListHelp
>
>


-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] [Dhis2-devs] Custom form translation

2016-02-16 Thread Shurajit Dutta
Hi Olav

We have done this in Lao but not using the built-in names. I can ask HISP
VN if code can be shared if you'd like?

Nick

On Tue, Feb 16, 2016 at 10:26 PM, Knut Staring <knu...@gmail.com> wrote:

> I think HISP VN has done something along these lines
> On Feb 15, 2016 10:57 AM, "Olav Poppe" <olav.po...@me.com> wrote:
>
>> Hi all,
>> I’m looking at ways to support translation in a custom form (aggregate).
>> I would like to be able to use the "built in" translation of data elements
>> if possible, using IDs when designing the form and having a javascript
>> function triggered by "dhis2.de.event.formReady" to put in the correct
>> translations. I was thinking the formName, displayName or similar would be
>> available in the dhis2 object, but I’m having difficult figuring out where.
>>
>> Can any of the dev advice on where to read the translated
>> names/formNames, if possible?
>>
>> Does anyone else have any experience with something like this?
>>
>> Thinking of it now, this might even be an idea for a general feature:
>> just like you can add the data entry fields, totals and indicators when
>> designing custom forms, there could be an option to add "name" label that
>> would display the name/form name of an element, with translation when
>> applicable.
>>
>> Regards
>> Olav
>>
>>
>>
>>
>> ___
>> Mailing list: https://launchpad.net/~dhis2-devs
>> Post to : dhis2-d...@lists.launchpad.net
>> Unsubscribe : https://launchpad.net/~dhis2-devs
>> More help   : https://help.launchpad.net/ListHelp
>>
>
> _______
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help   : https://help.launchpad.net/ListHelp
>
>


-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] assign categories as data dimensions

2016-02-02 Thread Shurajit Dutta
Great, thanks Lars

On Tue, Feb 2, 2016 at 4:15 PM, Lars Helge Øverland <larshe...@gmail.com>
wrote:

> Hi Nick,
>
> seems you are right. We will add it back in. Issue here:
>
> https://github.com/dhis2/maintenance-app/issues/30
>
> regards,
>
> Lars
>
>
> On Tue, Feb 2, 2016 at 8:58 AM, Shurajit Dutta <shurajitdu...@gmail.com>
> wrote:
>
>> Hi,
>>
>> In 2.22 is there a new method to assign data element categories as data
>> dimensions during analysis? The checkbox is now gone within the new app:
>>
>> [image: Inline image 1]
>>
>> (Note that categories previously assigned as data dimensions still work
>> in analysis apps)
>>
>> Thanks,
>> Nick
>>
>> --
>> Shurajit Dutta
>> Health Information Consultant
>>
>> ___
>> Mailing list: https://launchpad.net/~dhis2-users
>> Post to : dhis2-users@lists.launchpad.net
>> Unsubscribe : https://launchpad.net/~dhis2-users
>> More help   : https://help.launchpad.net/ListHelp
>>
>>
>
>
> --
> Lars Helge Øverland
> Lead developer, DHIS 2
> University of Oslo
> Skype: larshelgeoverland
> http://www.dhis2.org <https://www.dhis2.org>
>
>


-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Translate in data element/indicator app

2016-02-02 Thread Shurajit Dutta
Hi,

Also wondering how DE's, indicators, etc. can be translated. Doesn't seem
to be an option anymore in the new app:

[image: Inline image 1]

Nick

-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Importing big Option Sets from CSV

2015-12-01 Thread Shurajit Dutta
Hi Iuri

Here is the list in CSV in case you need it.
  ICD10 codelist.csv


You can import this using the meta data import functionality within DHIS2.

There is a section in the docs that describes import of csv metadata in the
developer manual section 1.10

Nick
On Dec 1, 2015 9:52 PM, "Iuri Fanti"  wrote:

> I need to import the ICD10 codes list into an Option set. Is there a
> way to do it importing the Options directly from a CSV file?
>
> Iuri
>
> --
> @-`-,--
>
> ___
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help   : https://help.launchpad.net/ListHelp
>
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Reporting Rates in Data Visualizer

2015-11-03 Thread Shurajit Dutta
Sorry, just to add. My offline instance is build 20853, while the demo
is 20872.
Reporting rate does not appear in data visualizer for both.

Nick

On Tue, Nov 3, 2015 at 4:22 PM, Shurajit Dutta <shurajitdu...@gmail.com>
wrote:

> Hello.
>
> I have noticed that reporting rates are no longer available as a data item
> in the data visualizer in 2.21. Is this by design? This was using the demo
> database available on dhis2.org. They seem to be there for pivot tables
> and GIS still.
>
> [image: Inline image 1]
>
> On another note, for the demo instance, I can't seem to get the GIS app to
> load. It just hangs at the loading screen. It looks like the maps on the
> dashboard are not loading either. This is working offline however using
> 2.21 on a different instance.
>
> Nick
> --
> Shurajit Dutta
> Health Information Consultant
>



-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Reporting Rates in Data Visualizer

2015-11-03 Thread Shurajit Dutta
Possibly. Am trying it in incognito mode. Probably not so important if its
working for others though.

On Tue, Nov 3, 2015 at 4:33 PM, Knut Staring <knu...@gmail.com> wrote:

> Not sure about your main question, but the GIS module seems to load ok for
> me in the online demo. Could it be a cache issue?
>
> Knut
>
> On Tue, Nov 3, 2015 at 10:22 AM, Shurajit Dutta <shurajitdu...@gmail.com>
> wrote:
>
>> Hello.
>>
>> I have noticed that reporting rates are no longer available as a data
>> item in the data visualizer in 2.21. Is this by design? This was using the
>> demo database available on dhis2.org. They seem to be there for pivot
>> tables and GIS still.
>>
>> [image: Inline image 1]
>>
>> On another note, for the demo instance, I can't seem to get the GIS app
>> to load. It just hangs at the loading screen. It looks like the maps on the
>> dashboard are not loading either. This is working offline however using
>> 2.21 on a different instance.
>>
>> Nick
>> --
>> Shurajit Dutta
>> Health Information Consultant
>>
>> ___
>> Mailing list: https://launchpad.net/~dhis2-users
>> Post to : dhis2-users@lists.launchpad.net
>> Unsubscribe : https://launchpad.net/~dhis2-users
>> More help   : https://help.launchpad.net/ListHelp
>>
>>
>
>
> --
> Knut Staring
> Dept. of Informatics, University of Oslo
> Norway: +4791880522
> Skype: knutstar
> http://dhis2.org
>



-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Reporting Rates in Data Visualizer

2015-11-03 Thread Shurajit Dutta
Hello.

I have noticed that reporting rates are no longer available as a data item
in the data visualizer in 2.21. Is this by design? This was using the demo
database available on dhis2.org. They seem to be there for pivot tables and
GIS still.

[image: Inline image 1]

On another note, for the demo instance, I can't seem to get the GIS app to
load. It just hangs at the loading screen. It looks like the maps on the
dashboard are not loading either. This is working offline however using
2.21 on a different instance.

Nick
-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] dhis version 2.21 is released

2015-10-26 Thread Shurajit Dutta
lationships dialog. This is useful
> e.g. when registering children in relationship to mothers to avoid having
> to enter last names / family names.
>
>
>
> Screenshot
> <https://www.dhis2.org/images/221/tracker-capture-attribute-inheritance.png>
>
>
>
> *Hide sections:* Program rules let you hide form sections based on
> evaluation of rules. This provides more flexibility e.g. for surveys where
> skip-logic is needed.
>
>
>
> Docs <https://www.dhis2.org/doc/snapshot/en/user/html/ch31.html>
>
>
>
> *Immediate unique attribute validation:* In person registration forms,
> unique attributes are validated immediately.
>
>
>
> Screenshot
> <https://www.dhis2.org/images/221/tracker-capture-unique-attribute-validation.png>
>
>
>
> *Active programs widget:* The dashboard in tracker capture has a new
> widget for displaying active programs. This is useful to see at a glance
> which programs this person is enrolled in. You can select which widgets to
> display on the dashboard from the top-right settings icon. By selecting the
> “active programs” widget it will be included on the dashboard.
>
>
>
> Screenshot
> <https://www.dhis2.org/images/221/tracker-capture-active-programs.png>
>
>
>
> *Ethiopian calendar support:* The Ethiopian calendar is now fully
> supported in, including tracker and aggregate data entry and analytics.
>
>
>
> Screenshot <https://www.dhis2.org/images/221/ethopian-calendar.png>
>
>
>
> *Coordinate data element value type:* A new data element value type for
> coordinate is available, which will enforce a valid coordinate to be
> entered through data entry forms.
>
>
>
> Docs <https://www.dhis2.org/doc/snapshot/en/user/html/ch05.html#d5e995>
>
>
>
> *Extended attributes:* Dynamic meta-data attributes are supported for
> category options and category option groups.
>
>
>
> Docs <https://www.dhis2.org/doc/snapshot/en/user/html/ch22s14.html> |
> Screenshot
> <https://www.dhis2.org/images/221/categories-dynamic-attributes.png>
>
>
>
> *Cache instruction per object:* You can set cache lifetime for individual
> SQL views and standard reports. This means e.g. that certain SQL views can
> have no caching whereas other SQL views can be cached for two weeks,
> depending on the requirement of the SQL view.
>
>
>
> Demo
> <http://play.dhis2.org/demo/dhis-web-maintenance-dataadmin/showAddSqlViewForm.action>
> | Screenshot
> <https://www.dhis2.org/images/221/sql-view-cache-strategy.png>
>
>
>
> WEB API FEATURES
>
> ---
>
>
>
> *General-purpose data store:* A new key-value store for JSON data has
> been introduced in the Web API. This is useful for apps which need storage
> for app data or settings. The data store provides a namespace, key and JSON
> value for each record, with optional security per namespace linked to
> authorities.
>
>
>
> Docs <https://www.dhis2.org/doc/snapshot/en/developer/html/ch01s54.html>
>
>
>
> *Custom logos:* Custom logos for front page and top menu can be uploaded
> through the new *staticContent* Web API resource. This allows for easy
> customization of the UI.
>
>
>
> Docs <https://www.dhis2.org/doc/snapshot/en/developer/html/ch01s38.html>
>
>
>
> *Preheat cache option:* All meta-data endpoints support optional preheat
> of caches, which implies better performance for smaller endpoints.
>
>
>
> Docs
> <https://www.dhis2.org/doc/snapshot/en/developer/html/ch01s09.html#d5e699>
>
>
>
> *Enums in data model:* Enums are introduced for all properties with
> predefined sets of valid options in the the data model. This makes it
> easier to create apps as you can easily discover valid options for
> properties through the schemas endpoint. Consult the upgrade notes for a
> list of changes.
>
>
>
> Upgrade notes <https://www.dhis2.org/221-upgrade>
>
>
>
> TECHNICAL FEATURES
>
> ---
>
>
>
> *Organisation unit hierarchy performance:* Everything related to the org
> unit hierarchy, including loading of trees, assignment of data
> sets/programs, org unit search and analytics, now performs much better, as
> org units are now located in the hierarchy using database queries. A lot of
> performance improvements have been done in general based on profiling and
> monitoring.
>
>
>
> *Temporary resource tables:* Resource tables are written to temporary
> tables, then swapped with real tables when completed. This removes the
> timespan when no resource tables were present, causing trouble for SQL
> views and queries which depended on them.
>
>
>

Re: [Dhis2-users] Using Attributes for Program Rules

2015-10-13 Thread Shurajit Dutta
Great. Thanks for the info Prosper.
On Oct 13, 2015 10:08 AM, "Prosper BT" <ptb3...@gmail.com> wrote:

> Hi Nic,
>
> Sorry program rules using attributes has been implemented in 2.21, see the
> blue print
>
>
> https://blueprints.launchpad.net/dhis2/+spec/program-rules-during-registration-enrollment
>
> Regards
>
>
> On Sun, Oct 11, 2015 at 6:33 AM, Shurajit Dutta <shurajitdu...@gmail.com>
> wrote:
>
>> Hi everyone,
>>
>> I am trying to use an attribute to define a program rule. In this case I
>> want to hide a "pregnant" field in data entry if the person's sex is male.
>> I save the program rule, but when I go back in to edit it the attribute
>> variable that I defined is no longer there as a source field. I tried to
>> register some patients and I find it is still not working. The other rule I
>> have made using program stage data elements is working fine. I am using
>> version 2.20.
>>
>> [image: Inline image 1]
>>
>> ​Thanks
>> Nick​
>>
>>
>> --
>> Shurajit Dutta
>> Health Information Consultant
>>
>> ___
>> Mailing list: https://launchpad.net/~dhis2-users
>> Post to : dhis2-users@lists.launchpad.net
>> Unsubscribe : https://launchpad.net/~dhis2-users
>> More help   : https://help.launchpad.net/ListHelp
>>
>>
>
>
> --
> Prosper Behumbiize, MPH
> Global HISP| University Of Oslo/HISP Uganda
> +256 752 751 776 | +256 776 139 139
> ptb3...@gmail.com | pros...@dhis2.org | Skype: prospertb
>
>
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Using Attributes for Program Rules

2015-10-10 Thread Shurajit Dutta
Hi everyone,

I am trying to use an attribute to define a program rule. In this case I
want to hide a "pregnant" field in data entry if the person's sex is male.
I save the program rule, but when I go back in to edit it the attribute
variable that I defined is no longer there as a source field. I tried to
register some patients and I find it is still not working. The other rule I
have made using program stage data elements is working fine. I am using
version 2.20.

[image: Inline image 1]

​Thanks
Nick​


-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Update data in DHIS2 by Import/export using CSV file

2015-09-22 Thread Shurajit Dutta
Hi Carlos,

You can read about importing data in various formats (including CSV) here:
https://www.dhis2.org/doc/snapshot/en/developer/html/ch01s11.html

On Fri, Sep 18, 2015 at 2:24 AM, Carlos Nyembwe <nyem...@gmail.com> wrote:

> Hi all,
>
> There are very long as I break myself that question on the mechanism to
> update the data with import / export if it is based on what columns of the
> CSV file? For I have the desire to change the combination of data with
> import / export.
>
> Is it possible to do so?
>
> Thanks for helping
> --
> *Carlos Nyembwe*
> *I'm just a Computer Scientist*
>
> *Skype: carloscnk1*
> *Cell: (+243)813166381 <%28%2B243%29813166381>*
> *Find me in: | Google Plus <https://plus.google.com/+CarlosNyembwe> | 
> **Linkedin
> <http://www.linkedin.com/in/carloscnk> | Facebook
> <https://www.facebook.com/carloscnksys> | Twitter
> <https://twitter.com/Carlos_CNK> |*
>
> ___
> Mailing list: https://launchpad.net/~dhis2-users
> Post to : dhis2-users@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~dhis2-users
> More help   : https://help.launchpad.net/ListHelp
>
>


-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Problem with Pivot Table

2015-09-13 Thread Shurajit Dutta
Hello everyone,

I am experiencing some strange behaviour using dhis 2.20.

I am looking at some data and making a pivot table. I select all of the
weeks in a particular year, and the table is made no problem. If I make a
new table for all the weeks in another year, that is also OK. BUT, if I
make a table with the weeks from both those years, I get a blank table. Has
anyone ever seen this? Even stranger, if I add on a relative period to the
table along with the weeks from the 2 years, the table displays all the
data. It seems to only not work if I am selecting all the weeks from more
then one year together.

I realize you may need some more info, some please let me know what might
help.

Nick

[image: Inline image 2]

[image: Inline image 1]
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Apk for Android apps

2015-09-07 Thread Shurajit Dutta
No problem Lars. Thanks for this info very helpful!
On Sep 7, 2015 3:29 PM, "Lars Helge Øverland" <larshe...@gmail.com> wrote:

> Hi Nick,
>
> sorry we will try to communicate this better. You can for now find the APK
> at the github pages:
>
> https://github.com/dhis2/dhis2-android-trackercapture/releases
> https://github.com/dhis2/dhis2-android-eventcapture/releases
> https://github.com/dhis2/dhis2-android-datacapture/releases
>
>
> regards,
>
> Lars
>
>
> On Sun, Sep 6, 2015 at 3:35 AM, Shurajit Dutta <shurajitdu...@gmail.com>
> wrote:
>
>> Hi everyone.
>>
>> I was wondering if there was someplace I could access the apk files for
>> the android apps?
>>
>> I will be going to Myanmar where a number of the devices do not have
>> google play pre installed, and would like to do a little testing while
>> there.
>>
>> Thanks
>> Nick
>>
>> ___
>> Mailing list: https://launchpad.net/~dhis2-users
>> Post to : dhis2-users@lists.launchpad.net
>> Unsubscribe : https://launchpad.net/~dhis2-users
>> More help   : https://help.launchpad.net/ListHelp
>>
>>
>
>
> --
> Lars Helge Øverland
> Lead developer, DHIS 2
> University of Oslo
> Skype: larshelgeoverland
> http://www.dhis2.org <https://www.dhis2.org>
>
>
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Apk for Android apps

2015-09-05 Thread Shurajit Dutta
Hi everyone.

I was wondering if there was someplace I could access the apk files for the
android apps?

I will be going to Myanmar where a number of the devices do not have google
play pre installed, and would like to do a little testing while there.

Thanks
Nick
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Trouble with XML meta-data import through UI

2015-08-27 Thread Shurajit Dutta
Hi everyone, I think you are all right about the XML file. I downloaded
another option set from the demo instance (apps.dhis2.org/demo) API and
imported it successfully through the UI with no problems. I will have the
check the file more thoroughly.

Sorry for the trouble.

Nick

On Thu, Aug 27, 2015 at 6:38 PM, Shurajit Dutta shurajitdu...@gmail.com
wrote:

 Hi everyone,

 It is the ICD-10 XML file on dhis2.org (attached). I am using the demo
 server (apps.dhis2.org/demo), which is 2.20.

 Nick

 On Thu, Aug 27, 2015 at 5:57 PM, Carlos Nyembwe nyem...@gmail.com wrote:


 Hi Shurajit Dutta,
 Can you share you XML file for helping to found the mistake

 Thanks


 On Thu, Aug 27, 2015 at 10:45 AM, Shurajit Dutta shurajitdu...@gmail.com
  wrote:

 Shurajit Dutta





 --
 *Carlos Nyembwe*
 *I'm just a Computer Scientist*

 *Skype: carloscnk1*
 *Cell: (+243)813166381 %28%2B243%29813166381*
 *Find me in: | Google Plus https://plus.google.com/+CarlosNyembwe | 
 **Linkedin
 http://www.linkedin.com/in/carloscnk | Facebook
 https://www.facebook.com/carloscnksys | Twitter
 https://twitter.com/Carlos_CNK |*




 --
 Shurajit Dutta
 Health Information Consultant




-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Trouble with XML meta-data import through UI

2015-08-27 Thread Shurajit Dutta
Hi everyone,

I seem to be unable to import XML meta-data through the import-export app.

I tried a couple times now with the ICD-10 option set available on dhis2.org
through the demo. There was no response in the chrome console and no reply
within DHIS2 either. Usually there is some message indicating whats been
completed.

I tried it on my localhost as well and checked the log:

[image: Inline image 1]

Any help is appreciated.

Thanks,
Nick

-- 
Shurajit Dutta
Health Information Consultant
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Dataset Options

2015-07-09 Thread Shurajit Dutta
Great,

Thanks Lars.

Nick

On Fri, Jul 10, 2015 at 12:18 AM, Lars Helge Øverland larshe...@gmail.com
wrote:

 Hi Nick,

 On Wed, Jun 24, 2015 at 12:09 PM, Shurajit Dutta shurajitdu...@gmail.com
 wrote:

 Hello all,

 I noticed these two options when adding/editing a dataset in the demo
 instance and was wondering if someone could help me understand what effect
 they apply to your form:

 -Legend Set (do the data elements get highlighted according to the legend
 you have set directly when you are entering data?)


 This can be used in pivot tables to display colors next to numbers for
 reporting rates.


 -Data Element Decoration


 This will appear as a title in data entry custom forms, useful to give
 more info about a field.

 regards,

 Lars



 Thanks,
 Nick

 ___
 Mailing list: https://launchpad.net/~dhis2-users
 Post to : dhis2-users@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~dhis2-users
 More help   : https://help.launchpad.net/ListHelp




 --
 Lars Helge Øverland
 Lead developer, DHIS 2
 University of Oslo
 Skype: larshelgeoverland
 http://www.dhis2.org https://www.dhis2.org


___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Dataset Options

2015-06-24 Thread Shurajit Dutta
Hello all,

I noticed these two options when adding/editing a dataset in the demo
instance and was wondering if someone could help me understand what effect
they apply to your form:

-Legend Set (do the data elements get highlighted according to the legend
you have set directly when you are entering data?)
-Data Element Decoration

Thanks,
Nick
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] DHIS2: Default Registration option in Tracker Capture

2015-06-17 Thread Shurajit Dutta
Hi Muhammad,

These are attributes. If you go to the programs/attributes app you will see
where to find the attributes. Also if you select a program and choose edit
you can see how the attributes have been added. You can find some more info
here in the docs:

https://www.dhis2.org/doc/snapshot/en/user/html/ch29s02.html#d5e5915



On Wed, Jun 17, 2015 at 2:49 PM, Muhammad Tahir mtag...@gmail.com wrote:

 Hi,

 On DHIS2 demo site - Tracker Capture

 When registering without selecting any program, it asks for FirstName,
 Last Name and National Identifier.

 But I am unable to locate, how is this configured, kindly share the
 details how can this be achieved?



 --
 *Regards,*
 *Muhammad Tahir*

 ___
 Mailing list: https://launchpad.net/~dhis2-users
 Post to : dhis2-users@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~dhis2-users
 More help   : https://help.launchpad.net/ListHelp


___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Request for additions

2015-06-01 Thread Shurajit Dutta
Hello,

I am wondering if any of the additions are possible given that you have a
busy development roadmap already, understood if not possible though.

1 - When creating datasets allow search to be filtered by data element or
indicator group

2 - Being able to clone dataelements directly from the data element
management screen (which would open up a new edit data element window) in
addition to doing this from the edit data element screen.

Thanks,
Nick
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Request for additions

2015-06-01 Thread Shurajit Dutta
Thanks Knut.

Will do that.

Nick

On Mon, Jun 1, 2015 at 6:24 PM, Knut Staring knu...@gmail.com wrote:

 Hi Nick,
 not sure how fast these can be implemeneted, but they seem relatively
 small - suggest you create a blueprint for each of them.

 Knut

 On Mon, Jun 1, 2015 at 11:12 AM, Shurajit Dutta shurajitdu...@gmail.com
 wrote:

 Hello,

 I am wondering if any of the additions are possible given that you have a
 busy development roadmap already, understood if not possible though.

 1 - When creating datasets allow search to be filtered by data element or
 indicator group

 2 - Being able to clone dataelements directly from the data element
 management screen (which would open up a new edit data element window) in
 addition to doing this from the edit data element screen.

 Thanks,
 Nick

 ___
 Mailing list: https://launchpad.net/~dhis2-users
 Post to : dhis2-users@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~dhis2-users
 More help   : https://help.launchpad.net/ListHelp




 --
 Knut Staring
 Dept. of Informatics, University of Oslo
 Norway: +4791880522
 Skype: knutstar
 http://dhis2.org

___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Request for additions

2015-06-01 Thread Shurajit Dutta
Great, thanks Morten!
On Jun 2, 2015 11:07 AM, Morten Olav Hansen morte...@gmail.com wrote:

 Hi Nick

 Cloning on the context menus have now been added to 2.19 and trunk. We
 have a blueprint for filter by groups already, hope to have it in 2.20.


 https://blueprints.launchpad.net/dhis2/+spec/support-reorder-and-grouping-in-selected-plugin

 --
 Morten

 On Tue, Jun 2, 2015 at 8:36 AM, Shurajit Dutta shurajitdu...@gmail.com
 wrote:

 Thanks Knut.

 Will do that.

 Nick

 On Mon, Jun 1, 2015 at 6:24 PM, Knut Staring knu...@gmail.com wrote:

 Hi Nick,
 not sure how fast these can be implemeneted, but they seem relatively
 small - suggest you create a blueprint for each of them.

 Knut

 On Mon, Jun 1, 2015 at 11:12 AM, Shurajit Dutta shurajitdu...@gmail.com
  wrote:

 Hello,

 I am wondering if any of the additions are possible given that you have
 a busy development roadmap already, understood if not possible though.

 1 - When creating datasets allow search to be filtered by data element
 or indicator group

 2 - Being able to clone dataelements directly from the data element
 management screen (which would open up a new edit data element window) in
 addition to doing this from the edit data element screen.

 Thanks,
 Nick

 ___
 Mailing list: https://launchpad.net/~dhis2-users
 Post to : dhis2-users@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~dhis2-users
 More help   : https://help.launchpad.net/ListHelp




 --
 Knut Staring
 Dept. of Informatics, University of Oslo
 Norway: +4791880522
 Skype: knutstar
 http://dhis2.org



 ___
 Mailing list: https://launchpad.net/~dhis2-users
 Post to : dhis2-users@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~dhis2-users
 More help   : https://help.launchpad.net/ListHelp



___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Indicator group sets

2015-05-13 Thread Shurajit Dutta
Hi Joao

Do you mean visualize the indicators? If so you have to select the relevant
indicator group from the indicators dimension.
On May 13, 2015 2:19 PM, Joao Mazuze joao_maz...@chasssmt.com wrote:

  Hi Jason,

 I was checking at the demo dhis2 site, I saw that there are indicator
 group sets, but how to visualize them at pivot?



 Thanks,

 Joao



 *From:* Jason Pickering [mailto:jason.p.picker...@gmail.com]
 *Sent:* 13 May 2015 08:35
 *To:* Joao Mazuze; dhis2-users@lists.launchpad.net
 *Subject:* Re: [Dhis2-users] Indicator group sets



 It should be. Did you check here?


 https://apps.dhis2.org/demo/dhis-web-maintenance-datadictionary/indicatorGroupSet.action



 Regards

 Jason





 On Wed, May 13, 2015 at 1:33 PM Joao Mazuze joao_maz...@chasssmt.com
 wrote:

 Dear all,

 I would like to know whether it is possible to create indicator group sets
 on the new version of dhis2 (2.19).



 Kind regards,

 Joao


  --

 This message may contain privileged and confidential information intended
 solely for the addressee. Please do not read, disseminate or copy it unless
 you are the intended recipient. If this message has been received in error,
 we kindly ask that you notify the sender immediately by return email and
 delete all copies of the message from your system.

 ___
 Mailing list: https://launchpad.net/~dhis2-users
 Post to : dhis2-users@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~dhis2-users
 More help   : https://help.launchpad.net/ListHelp


 --
 This message may contain privileged and confidential information intended
 solely for the addressee. Please do not read, disseminate or copy it unless
 you are the intended recipient. If this message has been received in error,
 we kindly ask that you notify the sender immediately by return email and
 delete all copies of the message from your system.

 ___
 Mailing list: https://launchpad.net/~dhis2-users
 Post to : dhis2-users@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~dhis2-users
 More help   : https://help.launchpad.net/ListHelp


___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Headings displayed as codes in Pivot Table plain data source download

2015-04-06 Thread Shurajit Dutta
Thanks Lars, appreciate it.

Nick

On Tue, Mar 31, 2015 at 8:57 PM, Lars Helge Øverland larshe...@gmail.com
wrote:

 Hi Nick,

 I have changed the headers to use descriptive names now for Excel and CSV
 downloads in trunk and 2.18.

 regards,

 Lars


 On Wed, Mar 25, 2015 at 3:00 AM, Shurajit Dutta shurajitdu...@gmail.com
 wrote:

 Hi,

 When downloading a pivot table as a plain data source and using name as
 the meta-data ID scheme, the column headers display the code rather then
 the name in plain text. This was done using the demo site. It is possible
 to change this back to having the headings as plain text?

 [image: Inline image 2]

 Thanks,
 Nick

 ___
 Mailing list: https://launchpad.net/~dhis2-users
 Post to : dhis2-users@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~dhis2-users
 More help   : https://help.launchpad.net/ListHelp



___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] dhis2 indicator problems

2015-03-11 Thread Shurajit Dutta
Hi Joao

Have you tried running the analytics to see if this will solve your problem?

Apps-Reports-Analytics and Data Mart

Nick
On Mar 11, 2015 7:22 PM, Joao Mazuze joao_maz...@chasssmt.com wrote:

  Dear all,

 We are facing now is about indicators, all the data entered manually
 appear to be zero values on pivot tables when using indicators, we don´t
 know what is happening as data elements produce real values. The only data
 visible using indicators is the imported one from the old system we were
 using before.in summary, our system is not calculating any indicator
 using data entered by users, it displays only zero for those periods.

 Can  someone help us in solving this?



 Best regards

 João




 --
 This message may contain privileged and confidential information intended
 solely for the addressee. Please do not read, disseminate or copy it unless
 you are the intended recipient. If this message has been received in error,
 we kindly ask that you notify the sender immediately by return email and
 delete all copies of the message from your system.

 ___
 Mailing list: https://launchpad.net/~dhis2-users
 Post to : dhis2-users@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~dhis2-users
 More help   : https://help.launchpad.net/ListHelp


___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Make aggregate query builder with algebra functions

2015-03-09 Thread Shurajit Dutta
Are you willing to use a compulsory tracker data element as a proxy for
registrations?
On Mar 9, 2015 6:23 PM, rin.chann...@gmail.com rin.chann...@gmail.com
wrote:

 Good idea, but can you guide how to get total of patient who registered
 program in aggregate query builder.

 Shurajit Dutta shurajitdu...@gmail.com wrote:

 Hi Channara

 I think you can make two aggregate data elements, one for total and one
 for those who died, and link them using the builder then make an indicator
 out of the aggregate DEs you have created.

 Nick
 On Mar 9, 2015 4:03 PM, channara rin rin.chann...@gmail.com wrote:

 Hi All DHIS2,
 Do you know how can i do aggregate query builder with algebra functions?
 Example: i would to know total number of patient in registration program
 and minus the patient who dead.
 SO i want to use aggregate query builder to aggregate and put the number
 into Data element that i created already is the number patient who are
 still alive in this period


 Can any one help me, how the DHIS2 can do like this?

 Thank you
 CHANNARA


 ___
 Mailing list: https://launchpad.net/~dhis2-users
 Post to : dhis2-users@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~dhis2-users
 More help   : https://help.launchpad.net/ListHelp


___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Make aggregate query builder with algebra functions

2015-03-08 Thread Shurajit Dutta
Hi Channara

I think you can make two aggregate data elements, one for total and one for
those who died, and link them using the builder then make an indicator out
of the aggregate DEs you have created.

Nick
On Mar 9, 2015 4:03 PM, channara rin rin.chann...@gmail.com wrote:

 Hi All DHIS2,
 Do you know how can i do aggregate query builder with algebra functions?
 Example: i would to know total number of patient in registration program
 and minus the patient who dead.
 SO i want to use aggregate query builder to aggregate and put the number
 into Data element that i created already is the number patient who are
 still alive in this period


 Can any one help me, how the DHIS2 can do like this?

 Thank you
 CHANNARA


 ___
 Mailing list: https://launchpad.net/~dhis2-users
 Post to : dhis2-users@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~dhis2-users
 More help   : https://help.launchpad.net/ListHelp


___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Issue with Program Stages

2015-03-04 Thread Shurajit Dutta
Hi Everyone,

This is a bit similar to another thread regarding Event Capture app
not loading but I did not want to hijack it.

I am having several programs where my program stages are not
displaying in the UI of the application. When I browse the API, I see
the program stages listed; however I don't see them displayed when I
try to manage them through the programs management section. As a
result, the event capture app is not loading I believe.

I don't think there is even an option to delete program stages so I am
not sure what happened here? Any insight would be really appreciated.

Nick
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Different Individual records vs Tracker capture

2015-02-25 Thread Shurajit Dutta
Hi Channara

I remember someone sent a good breakdown of these recently but can't find
it.

You have three types.

Single event without registration: This allows for anonymous data capture
of single events. For example ICD10 discharge diagnosis. In Solomons it is
used to capture GBV data as another example. Use the event capture app
here.

Single event with registration: it has been indicated they might remove
this. Here I register a tracked entity once and enter case based info about
them (if its a patient). A couple examples from Sols again are as
hypertension or TB registers. If you make this non repeatable, the
suggestion is to use tracker capture app for now.

Multiple event with registration: Track an entity through multiple stages.
This could be repeatable programs that many people seem to be asking about
lately (myself included) or, for instance, tracking a mother through her 4+
ANC visits at a facility. Use tracker capture app.

These are just some examples but I am sure there are many more.

Nick
On Feb 25, 2015 2:36 PM, channara rin rin.chann...@gmail.com wrote:

 Hi all,
 Anyone explain me what is different individual records and tracker
 capture? when we use them?

 Thanks

 ___
 Mailing list: https://launchpad.net/~dhis2-users
 Post to : dhis2-users@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~dhis2-users
 More help   : https://help.launchpad.net/ListHelp


___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Single-Event with Registration

2015-02-23 Thread Shurajit Dutta
Thanks Abyot. That is very useful information, appreciate it.

Nick
On Feb 23, 2015 7:25 PM, Abyot Gizaw aby...@gmail.com wrote:

 Hi,

 Yes, the tracker capture app is the one which is going to handle such
 programs. Actually, currently we are in discussion on the possibility of
 removing single event with registration programs - it is just that we
 haven't decided yet.

 Our thinking is to keep things simple and maintain programs of type - with
 registration and without registration. How many event a program has depends
 on the number of stages you assign to the program. So, coming to your case
 - the tracker capture will work if you create a program of type Multiple
 events with registration and assign it single stage (non-repeatable).

 ---
 Thank you,
 Abyot.

 On Mon, Feb 23, 2015 at 4:57 AM, Shurajit Dutta shurajitdu...@gmail.com
 wrote:

 Hi everyone,

 I have a bit of confusion regarding which app supports single-event
 with registration. The docs indicate that the tracker capture app
 deals with single and multiple events with registration while the
 event capture app is only for single events without registration.
 However, when tracker programs are made that are single-events with
 registration they do not seem to be available as program selections
 from within the tracker capture app; this is instead accessed through
 Individual Records-Find/Add Instance.

 I have checked the demo instance to verify. There is a program called
 Provider Follow-Up and Support Tool which is a single event with
 registration. The only way to access it is similar to what I have
 described above, not through tracker capture.

 Will the tracker capture app be inheriting the ability to work with
 single events with registration as well or will it be kept as is?

 Just want to be clear when speaking to the Ministry. Thanks,

 Nick

 ___
 Mailing list: https://launchpad.net/~dhis2-users
 Post to : dhis2-users@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~dhis2-users
 More help   : https://help.launchpad.net/ListHelp



___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Single-Event with Registration

2015-02-22 Thread Shurajit Dutta
Hi everyone,

I have a bit of confusion regarding which app supports single-event
with registration. The docs indicate that the tracker capture app
deals with single and multiple events with registration while the
event capture app is only for single events without registration.
However, when tracker programs are made that are single-events with
registration they do not seem to be available as program selections
from within the tracker capture app; this is instead accessed through
Individual Records-Find/Add Instance.

I have checked the demo instance to verify. There is a program called
Provider Follow-Up and Support Tool which is a single event with
registration. The only way to access it is similar to what I have
described above, not through tracker capture.

Will the tracker capture app be inheriting the ability to work with
single events with registration as well or will it be kept as is?

Just want to be clear when speaking to the Ministry. Thanks,

Nick

___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] Experience with Satellite connections for DHIS2?

2014-11-16 Thread Shurajit Dutta
Hi Knut.

There's no cable in Solomons. Satellites are used in every province. We do
have all sorts of problems running the analytics especially but aggregate
data entry is mostly OK. Latency can be high, anywhere from 1200-1800ms on
average depending on the province. Did you have some specific questions
about this?

Nick
Hello list,

Has anyone been using DHIS2 over a satellite connection, e.g. Thuraya?

Bob told me this: Satellite will be very high latency connection.  Dhis2
is well tested for low bandwidth requirements.  I am not sure how much we
have tested ajaxy stuff with high latency.  Of course it should work, but
there may be some unexpected user experiences.

Would be great to hear from anyone who has actually tried this.

Thanks,
Knut

-- 
Knut Staring
Dept. of Informatics, University of Oslo
Liberia: +231 770 496 123 or +231 886 036 837
Norway: +4791880522
Skype: knutstar
http://dhis2.org

___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


Re: [Dhis2-users] data collection system using mobile phones and dhis

2014-10-28 Thread Shurajit Dutta
Hi Henri,

Have a look at these resources:
https://www.dhis2.org/mobile

https://www.dhis2.org/doc/snapshot/en/user/html/ch22.html

and maybe let us know what your specifically looking to do.

Nick

On Tue, Oct 28, 2014 at 10:57 AM, riddy ndoma riddynd...@gmail.com wrote:

 Hi Henri. You can use Dhis SMs S gateway. It's vert easy. Can you read the
 documentation
 Le 28 oct. 2014 15:44, henri claude moungui henrimoun...@yahoo.fr a
 écrit :

 Hi to all.
 I want to implement a data collection system using mobile phones and dhis
 2 . could you tell me how to do please?

 Henri MOUNGUI

 ___
 Mailing list: https://launchpad.net/~dhis2-users
 Post to : dhis2-users@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~dhis2-users
 More help   : https://help.launchpad.net/ListHelp


 ___
 Mailing list: https://launchpad.net/~dhis2-users
 Post to : dhis2-users@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~dhis2-users
 More help   : https://help.launchpad.net/ListHelp


___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp


[Dhis2-users] Data element order in smartphone interface for chrome on android

2014-10-21 Thread Shurajit Dutta
Hi everyone. Was wondering what in the DB determines the order data
elements are displayed in the smartphone version of DHIS2 when the
form/dataset is not in sections.

On the desktop the dataset is built using a custom form. I think this will
have no impact regarding the order this shows on the smartphone version
through chrome on a handset/tablet.

In this instance we did not want to use a section form, which there are
other forms that are displayed in the proper order using the sections on
the smartphone version.

Is it prudent to create two versions of the form? One for desktop and one
for smartphone then assign the dataset to the relevant org units? The
elements will store the same data regardless of which dataset the they are
entering data against correct?

Any advice regarding the smartphone interface would be greatly appreciated.
Thanks

Nick
___
Mailing list: https://launchpad.net/~dhis2-users
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : https://launchpad.net/~dhis2-users
More help   : https://help.launchpad.net/ListHelp