Muhammad Waseem · Aug 10, 2021 go to post

Yes IS do have MEDIAN function. Try this one
SELECT MEDIAN(birthd.decade.MEMBERS, MEASURES.[%COUNT]) ON 0 FROM patients

Muhammad Waseem · Aug 11, 2021 go to post

Thanks Julian Matthews.

Yes I am looking to actually make sure the code is a real ICD10 code

Muhammad Waseem · Aug 12, 2021 go to post

Thanks Lucas Fernandes
Getting below error while running "iris start IRIS EmergencyId=user,password" command:

(29) unable to open registry key

Muhammad Waseem · Aug 12, 2021 go to post

Now getting below error after specifying right instance name:

Startup failed:  (22) Instance properties definition file does not exist or is inaccessable:   EmergencyID=user,password Configuration IRISHealth. 

Muhammad Waseem · Aug 13, 2021 go to post

Thanks for the reply.

My Production is in USER namespace and by assigning only %EnsRole_Operator role User namespace is not visible. How to give access of USER namespace?

Muhammad Waseem · Aug 26, 2021 go to post

Hi @Vivek Nayak 

Try calling the CleanProduction() method in class Ens.Director:

Do ##class(Ens.Director).CleanProduction()

This is strongly discouraged for PROD environments ... be forewarned. Would recommend you contact the WRC if you're getting this error in a PROD environment.

Muhammad Waseem · Sep 8, 2021 go to post

Hi OMER ATEEN

Can you please elaborate in which environment you are getting these characters ?

Thanks

Muhammad Waseem · Sep 8, 2021 go to post

Hi Ben Spead,

You can set priority by adding additional headers such as X-Priority and others. e.g:
 

 do msg.Headers.SetAt(1,"X-Priority")
 do msg.Headers.SetAt("High","X-MSMail-Priority")
 do msg.Headers.SetAt("High","Importance")

Thanks

Muhammad Waseem · Sep 8, 2021 go to post

Hi Omar Ateen

You can create persistent class and store both gregorian and hijri dates. Once done you can create function to get hijri date by passing gregorian date.

Thanks