Difference between revisions of "MUMPS Code Examples"

From VistApedia
Jump to: navigation, search
(Instructions for page)
(Instructions for page)
Line 2: Line 2:
 
For each of these code fragments, be sure to put them in CODE tags, and note whether the code is Standard MUMPS, and if not, what MUMPS systems it works on.
 
For each of these code fragments, be sure to put them in CODE tags, and note whether the code is Standard MUMPS, and if not, what MUMPS systems it works on.
 
<pre><nowiki>
 
<pre><nowiki>
  === Getting the {K} root for a Data Dictionary Number ==
+
  === Title for explanation of code purpose ==
 
  NOTE: Standard MUMPS
 
  NOTE: Standard MUMPS
 
<code>
 
<code>
 
</code>
 
</code>
</pre></nowiki>
+
</nowiki></pre>
  
 
=== MUMPS Code to iterate over every global ===
 
=== MUMPS Code to iterate over every global ===

Revision as of 15:55, 27 February 2010

Instructions for page

For each of these code fragments, be sure to put them in CODE tags, and note whether the code is Standard MUMPS, and if not, what MUMPS systems it works on.

 === Title for explanation of code purpose ==
 NOTE: Standard MUMPS
<code>
</code>

MUMPS Code to iterate over every global

NOTE: this is NON-STANDARD MUMPS. Known to work on GT.M SET GBLNAME="^%" FOR SET GBLNAME=$o(@GBLNAME) Q:GBLNAME="" DO Something(GBLNAME)

MUMPS Code to iterate over every FileMan File

NOTE: Standard MUMPS S FILE=0 F S FILE=$O(^DIC(FILE)) Q:FILE'=+FILE D Something(FILE)

MUMPS Code to iterate over Data Dictionary Number of every FileMan File & Subfile

NOTE: Standard MUMPS S DDNUM=0 F S DDNUM=$O(^DD(DDNUM)) Q:DDNUM'=+DDNUM D Something(DDNUM)

= Getting the {K} root for a Data Dictionary Number

NOTE: Standard MUMPS

</pre>