Pausing Output

The “w” option is used to wait between pages of output produced by a ZOM service.

For example, the following command lists information on all the objects named “Inventory” to the screen and waits for the user to press Enter after every page of output:

ZOMList Inventory ;w

Processing Options

Processing options are used to set object status properties and to modify the behavior of the service being invoked. Each ZOM service specifies the processing options that apply. For more information, see the Reference Guide. However, there are some processing options that apply generally to all ZOM services and these options are described in the following topics.

Redirecting Output

The “d” option is used to redirect the output of a ZOM service to a document. For example, the following lists information on all the objects named “Inventory” to the document ListOutputDoc:

ZOMList Inventory ;d ListOutputDoc

In this case, the contents of ListOutputDoc are overwritten. ListOutputDoc must be an existing document object.

If you want to append the output onto the end of the document, you would use the “a” option as well:

ZOMList Inventory ;d ListOutputDoc ;a

Assigning Keywords

You can also use processing options to set and reset keywords for your objects. The option syntax is similar to the selection syntax for keywords. You specify the processing option “;k” followed by the keyword. For example, the following command assigns the keyword “Customer_Forms” to all Form objects with names starting with “fCust”:

ZOMSet fCust* ^t Form ;k Customer_Forms

You can remove a keyword assignment by using the exclamation point (!). For example,

ZOMSet +t Ent ;k Tables!

removes the “Tables” keyword from all EntitySet objects.

Setting Status Properties

You can use processing options to set and reset any of the user-designated status properties. The option syntax is similar to the selection syntax for status properties. Specify the processing option ;p followed by the status property indicator. For example, the following command assigns the locked property to all Entity Set objects:

ZOMSet +t Ent ;p l

The ZOMSet service used here is useful in setting status properties. ZOMSet is a special service that has no inherent function of its own but selects the specified objects and obeys the processing options are provided. Contrast the example above with the following example

ZOMList +t Ent ;p l

that also assigns the locked property to all EntitySet objects, but then lists all of the selected objects.

You can reset a status property by using the exclamation point (!). For example

ZOMSet +t Ent ;p l!

removes the locked property from all EntitySet objects (i.e., makes the objects not locked).

en_CAEnglish