Enabling the Advanced Business Rules user interface

The manage decisions tab in the Product Master single edit screen is enabled for the Product catalog and Sample Collaboration Area by updating the $TOP/etc/default/data_entry_properties directory.

The following entries need to be provided for each of the catalogs, hierarchies, and collaboration areas.
You need to only provide these entries if any of the following situations apply to you:
  • If you have catalogs with items that associate with rules, or
  • If you have hierarchies with categories that associate with rules, or
  • If you have collaboration areas that are associated with these catalogs and hierarchies and are used to manage rules.
<company code="{YOUR-COMPANY-CODE}">
	<catalog name="{YOUR-CATALOG-NAME}">
			<script>
					<type>url</type>
					<title>Manage Decisions</title>
					<extra>height='100%' name="wodmCustomTabFrame"</extra>
					<path>/scripts/triggers/wodmCustomTab</path>
					<position>tab</position>
					<refresh-on></refresh-on>
			</script>
	</catalog>

	<hierarchy name="{YOUR-HIERARCHY-NAME}">
				<script>
					<type>url</type>
					<title>Manage Decisions</title>
					<extra>height='100%' name="wodmCustomTabFrame"</extra>
					<path>/scripts/triggers/wodmCustomTab</path>
					<position>tab</position>
					<refresh-on></refresh-on>
			</script>
	</hierarchy>

	<collaboration-area name="{YOUR-COLLABORATION-AREA}">
			<script>
					<type>url</type>
					<title>Manage Decisions</title>
					<extra>height='100%' name="wodmCustomTabFrame" id="wodmCustomTabFrame"</extra>
					<path>/scripts/triggers/wodmCustomTab</path>
					<position>tab</position>
					<refresh-on></refresh-on>
			</script>
		</collaboration-area>
</company>
Where:
  • {YOUR-COMPANY-CODE} is your company code
  • {YOUR-CATALOG-NAME} is the name of your catalog
  • {YOUR-HIERARCHY-NAME} is the name of your hierarchy
  • {YOUR-COLLABORATION-AREA} is the name of your collaboration area
The script is implemented in the specified Java™ class. For source code, see the src/com/ibm/ccd/solution/wodm/WODMCustomTabDataEntryScript.java in the wodm.extensions.src.zip file.