Read mapping routines and globals.
--
--
Caché, Ensemble, DeepSee
---
You received this message because you are subscribed to the Google Groups "Caché, Ensemble, DeepSee" group.
To unsubscribe from this group and stop receiving emails from it, send an email to intersystems-publi...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
1) Most important: InterSystems suggests using Cache Studio editing and compile rather than %RCOMPIL, or ZS or .F.
2) Studio compile (by default) saves last 5 versions of .INT routines in ^rBACKUP(“routine name”
3) Studio compile (by default) saves last 5 versions of .MAC routines in ^rMACSAVE(“routine name”
4) Studio error checking decreases error introduced by programmers
5) Studio editing is faster than ^% or ^%E
Cache File Types
.MAC – Macro Source code (can include .INC fragments, SQL, other macro features) and compiles down to…
.INT – Intermediate code (old fashioned routine) and compiles down to…
.OBJ – Object (sort of executable but no easy programmer access
.INC – include (pops in common code into a .MAC)
.BAS – IS Basic
No auditing or historical routine copies are offered by Cache from ZS or .F file routine. IS indicates programmers should use a third party version control tool.
Tom Fitzgibbon | Multidata | 212-967-6700 x537
--
--