Removes system ($) methods from the codebase. InterSystems Caché utility.
- Replaces
.$
with.<something of your choice>
(.%
by default) - Capitalizes the letter after
$
- Replaces references from
%Object
to%DynamicObject
etc
Import classes and call one of the entry points:
s st = ##class(SMR.Main).RemoveFromAllClasses(Replace, Capitalize)
- for all user classes
s st = ##class(SMR.Main).RemoveFromSubclassesOf(Class, Replace, Capitalize)
- for subclasses
s st = ##class(SMR.Main).RemoveFromMatchingClasses(Mask, Replace, Capitalize)
- for LIKE SQL
Arguments:
Replace
- what to replace$
with (%
by default but, for example, you can specify$$$
)Capitalize
- capitalize the letter after $ (boolean, yse by default)Class
- class which subclasses the utility would try to convert (including the class)Mask
- passed into the SQL querySELECT ID FROM %Dictionary.ClassDefinition Where ID LIKE ?
More docs are in the code docs. The utility works only in a current namespace.
Works in 2016.2 Field Test or later.
Make sure you have git and Docker desktop installed.
Clone/git pull the repo into any local directory
$ git clone https://github.com/rcemper/PR_SystemMethodsRemover.git
to build and start the container run
$ docker compose up -d && docker compose logs -f
All ready to be used.
To open IRIS Terminal do:
$ docker-compose exec iris iris session iris
USER>
or using WebTerminal
http://localhost:42773/terminal/
To access IRIS System Management Portal
http://localhost:42773/csp/sys/UtilHome.csp