Your Browser is not longer supported

Please use Google Chrome, Mozilla Firefox or Microsoft Edge to view the page correctly
Loading...

{{viewport.spaceProperty.prod}}

modifyProperties() - Modify properties of an EIS partner

Function:

BcAdminEisPartner.modifyProperties()

Modifies all the properties of the specified EIS partner that are present in the specified dictionary.

Parameters:

bc_object (BcObject of type BcObjectType.EIS_PARTNER)

EIS partner whose properties are to be modified.

props

Dictionary with the key-value pairs for the properties that are to be modified. You can find the possible values for key in Properties of an EIS partner .
In the case of EIS partners with the property type="cics", no properties with the prefix "utm." may be specified.
In the case of EIS partners with the property type="utm", no properties with the prefix "cics." or "cs." may be specified.

Return:

None

Exceptions:

BcObjectException, BcParameterException, BcToolException

Example:

...
import BcAdminEisPartner
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
eis_obj=BcAdminEisPartner.getObject("testEIS",proxy_obj)
modProps={"desc":"modified"}
BcAdminEisPartner.modifyProperties(eis_obj, modProps)
...