Your Browser is not longer supported

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

{{viewport.spaceProperty.prod}}

remove() - Remove EIS partner

Function:

BcAdminEisPartner.remove()

Removes the specified EIS partner from the configuration.

Parameters:

bc_object (BcObject of type BcObjectType.EIS_PARTNER).

EIS partner that is to be removed.

Return:

None

Exceptions:

BcObjectException, BcToolException

Example:

...
import BcAdminEisPartner
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
eis_obj=BcAdminEisPartner.getObject("testEIS",proxy_obj)
BcAdminEisPartner.remove (eis_obj)
...