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