createFunctionDefinition

This task defines SMP/E function definitions.

The following table describes the attributes of this task.

Attribute Description Required

description

The description of the current SMP/E definition.

No

id

The SMP/E function id.

Yes

mcsDescription

The name to use when packaged as ++FUNCTION.

Yes

name

The name of the current SMP/E definition.

Yes

nonImpacting

Specifies that changes to this system definition do not force Engineering Workflow Management dependency build request processing to use full analysis instead of change set analysis. Valid values are true and false. The default value is false.

No

Example

Create function definition


<target description="Create function definitions" name="funcdefs"

	<sm:createfunction id="00"
		name="IMS system Services"
		mcsDescription="IMS System Services"
		description="IMS System Services Function Definition"
		nonImpacting="true">
	</sm:createfunction>

	<sm:createfunction id="01"
		name="IMS Database Manager"
		mcsDescription="IMS Database Manager"
		description="IMS Database Manager Function Definition"
		nonImpacting="true"
	</sm:createfunction>
</target>