IBM Business Process Manager, V8.0.1, All platforms > Reference > Commands and scripts > Commands (wsadmin scripting)
modifySCAModuleProperty command
Use the modifySCAModuleProperty command to modify the property values for a specified Service Component Architecture (SCA) module.
After using the command, save your changes to the master configuration using one of the following commands:
Required parameters
- -moduleName moduleName
- SCA module name.
- -propertyName propertyName
- SCA module property name.
If the property is a member of a group, you must include the name of the group in the property name in the form:
-propertyName [groupName]propertyName- -newPropertyValue propertyValue
- New value for the SCA module property.
Optional parameters
- -applicationName applicationName
- The name of the application associated with the SCA module. Providing an applicationName improves performance.
Example
This example changes mypropName property (in group mygroupName) to myNewPropValue.
- Jython example:
This example uses the Jython list format for the command arguments to escape the group delimiter characters [ and ] in the property name parameter value:
AdminTask.modifySCAModuleProperty(['-moduleName', 'MyModule', '-applicationName', 'myApplication', '-propertyName', '[mygroupName]mypropName', '-newPropertyValue', 'myNewPropValue'])- Jacl example:
$AdminTask modifySCAModuleProperty {-moduleName MyModule -applicationName myApplication -propertyName [mygroupName]mypropName -newPropertyValue myNewPropValue}
Parent topic: Commands (wsadmin scripting)
Related information:
![]()
Obtaining online help using wsadmin scripting
![]()
Administrative command invocation syntax using wsadmin scripting
![]()
Use the wsadmin scripting tool
![]()
Jython script library