Skip to content

ZosChangeManInstance

The ZosChangeManInstance object represents a single ChangeMan ZMF folder. This object can be obtained using the ChangeManInstance property of ZosServer or the Item property of ZosChangeManInstances.

ZosChangeManInstance Properties

ZosChangeManInstance exposes the following properties:

Property Type R/W Description
Name String R Name of the folder.
Path String R Full path name of the folder.
Port Integer (long) R/W I/P port number for ChangeMan ZMF instance
Description String R/W ChangeMan ZMF description
Filters Object (IZosNameFilters) R Collection of all application name filters for folder. Default is all applications.
FileFormats Object (IZosFileFormatMappings) R Collection of file format mappings for ChangeMan ZMF components
IsHidden Boolean R / W Indicates that this ChangeMan is hidden in the File Explorer and the ZDD user interface. This is a user-specific setting.

...

ZosChangeManInstance Methods

ZosChangeManInstance exposes the following methods:

SubmitXml Method

Submits an XML request to the XML Services processor (for ChangeMan services). The bSuppressMessage parameter is optional. It is used to indicate whether message boxes should be suppressed. It is useful for running scripts in an automated tool where there is nobody present to press the OK button on a message box.

SubmitXml ( 
    strInputFileName, 
    strOutputFileName,  
    bSuppressMessage  
    )

Parameters

bSuppressMessage - Specifies whether to suppress or display messages.

To suppress message boxes, specify:

bSuppressMessage = true

To display message boxes, specify:

bSuppressMessage = false

If this parameter is not specified, it defaults to false and message boxes will be displayed normally.

Back to top