Muhammad Waseem · Sep 17, 2022 go to post

Hi @Patrick Jamieson 
Thanks for the reply.

Yes I tried this way back when I was developing FHIR application and that time was not able to get SMART on FHIR functionality even after setting OAuth as well.

Thanks 

Muhammad Waseem · Aug 4, 2022 go to post

Contest was well planned. Reward for every participants and extra points for newcomers encourage to write articles which is great source to learn and share the experience. 

Muhammad Waseem · Mar 10, 2022 go to post

Hi,

You can use below code to get license information

   import iris   
   // make sure to connect with %SYS namespace 
    ref = iris.cls("SYS.Stats.Dashboard").Sample()
    content = {
    LicenseCurrent = ref.LicenseCurrent
    LicenseCurrentPct =  ref.LicenseCurrentPct
    LicenseHigh = ref.LicenseHigh
    LicenseHighPct = ref.LicenseHighPct
    LicenseLimit = ref.LicenseLimit
    LicenseType = ref.LicenseType
     

For more details kindly read the below article:

https://community.intersystems.com/post/building-iris-responsive-dashbo…

Thanks