Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Change to new constructor style

Obtains the next value of the specified MUMPS global and subscripts.

Arguments

ArgumentData TypeRequiredDescription
globalNamestringYesThe name of the global to examine
subscriptsarrayYesAn array of subscripts. May be empty to examine the root node of the global.

Return Value

mumps.order() returns a struct with the following members:

...

This example returns a list of account names, presuming the IGLS accounting package is installed on the host.

 

Code Block
languagecoldfusion
titleCFML
linenumberstrue
<cfset mumps = createObject("component", "new lib.cfmumps.mumps"Mumps()>
<cfset mumps.open()>

<ul>
	<cfset lastResult = false>
	<cfset nextSubscript = "">
	
	<cfloop condition="lastResult EQ false">
  		
		<cfset order = mumps.order("TT", ["ACCT", nextSubscript])>
  		<cfset lastResult = order.lastResult>
  		<cfset nextSubscript = order.value>
  		
		<cfoutput>
    		<cfif nextSubscript NEQ "">
      			<li>#mumps.get("TT", ["ACCT", nextSubscript])#</li>
    		</cfif>
  		</cfoutput>

	</cfloop>
</ul>

<cfset mumps.close()>