Quick list of classes within a package
https://community.intersystems.com/post/quick-list-classes-within-package
  
  https://community.intersystems.com/post/quick-list-classes-within-package
Intersystems
  
  Quick list of classes within a package | InterSystems Developer Community |
  Daniel Kutac|Caché|Caché Objects|Is there an API that would list classes within a given package? I can't find any. I do have a workaround that uses
  How to Count Page Views in AngularJS Web App 
https://community.intersystems.com/post/angular-pageviews
  
  https://community.intersystems.com/post/angular-pageviews
Intersystems
  
  Angular Pageviews | InterSystems Developer Community | Caché | APIs
  Fabio Goncalves|Caché|APIs|Development Environment|AngularJS|UI Development|Web Development|Hi All,Does anybody has experience with Angular
  InterSystemsDev via @like
  
How to save a PNG image in Caché from a base64 data string? 
https://community.intersystems.com/post/how-save-png-image-cache-base64-data-string
  https://community.intersystems.com/post/how-save-png-image-cache-base64-data-string
InterSystemsDev via @like
Setting Authentication Roles from LDAP Group 
https://community.intersystems.com/post/setting-authentication-roles-ldap-group
  
  https://community.intersystems.com/post/setting-authentication-roles-ldap-group
Intersystems
  
  Setting Authentication Roles from LDAP Group | InterSystems Developer
  Scott Roth|Ensemble|Caché|Caché Objects|Security|Authentication|Delegated|LDAP|Users|Roles|I am working through trying to use ZAUTHENTICATE.mac and
  InterSystemsDev via @like
  
  InterSystemsDev via @like
User Role Lookup from ZAUTHENTICATE
https://community.intersystems.com/post/user-role-lookup-zauthenticate
  
  https://community.intersystems.com/post/user-role-lookup-zauthenticate
Intersystems
  
  User Role Lookup from ZAUTHENTICATE | InterSystems Developer Community |
  Scott Roth|Ensemble|Caché Objects|Studio|Authentication|Delegated|LDAP|Delegated|Privileges|Roles|I am working on an ZAUTHENTICATE.mac to move us from
  InterSystemsDev via @like
Determine programmatically if unit tests failed
https://community.intersystems.com/post/determine-programmatically-if-unit-tests-failed
  
  https://community.intersystems.com/post/determine-programmatically-if-unit-tests-failed
InterSystems Developer Community
  
  Determine programmatically if unit tests failed
  I needed to know programmatically if last ran failed or not.After some exploring, here's the code: 
ClassMethod isLastTestOk() As %Boolean
{
set in = ##class(%UnitTest.Result.TestInstance).%OpenId
  ClassMethod isLastTestOk() As %Boolean
{
set in = ##class(%UnitTest.Result.TestInstance).%OpenId
InterSystemsDev via @like
  
Visualizing Analytics With DeepSee Web: Utilising Drill Down and Drill thtrough, Working With Pivot Tables and indicators 
http://ow.ly/2xT030iysMi
  http://ow.ly/2xT030iysMi
InterSystemsDev via @like
How to add FHIR extension to Patient resource? 
https://community.intersystems.com/post/how-add-fhir-extension-patient-resource
  
  https://community.intersystems.com/post/how-add-fhir-extension-patient-resource
Intersystems
  
  How to add FHIR extension to Patient resource? | InterSystems Developer
  Krystian Wydrzynski|FHIR Implementers Group|Studio|Ensemble|FHIR|Hi,What is the best practice when adding FHIR extension to Patient resource? To
  InterSystemsDev via @like
  
  InterSystemsDev via @like
How to kill a process spawn from $zf(-2)? 
https://community.intersystems.com/post/how-kill-process-spawn-zf-2
  
  https://community.intersystems.com/post/how-kill-process-spawn-zf-2
Intersystems
  
  How to kill a process spawn from $zf(-2) | InterSystems Developer Community
  CJ H|Caché|Caché|I use zf(-2) to spawn a external a Java application in a *nix instance.I would like to kill this process after some conditions met.I
  InterSystemsDev via @like
What is the difference between IDKEY and Primary Key of a SQL table?
https://community.intersystems.com/post/what-difference-between-idkey-and-primary-key-sql-table
  
  https://community.intersystems.com/post/what-difference-between-idkey-and-primary-key-sql-table
Intersystems
  
  What is the difference between IDKEY and Primary Key of a SQL table |
  CJ H|Caché|SQL|My question is actually about IDKEY since Primary Key is the common concept of SQL.Why do we need IDKEY? In what kind of scenario, the
  InterSystemsDev via @like
  
Best way to run a SQL script and output the result to a file 
https://community.intersystems.com/post/best-way-run-sql-script-and-output-result-file
  https://community.intersystems.com/post/best-way-run-sql-script-and-output-result-file
InterSystemsDev via @like
How to distinguish the String from Integer in ObjectScript? 
https://community.intersystems.com/post/how-distinguish-string-integer-cos
  
  https://community.intersystems.com/post/how-distinguish-string-integer-cos
InterSystems Developer Community
  
  How to distinguish the String from Integer in COS
  I get a list which is formed like below:$lb("","2",6,6,6,"3")I would like to distinguish "2" and "3" from 6 since both of them are String types.Is there any way to achieve this?Thanks.