Skip to end of banner
Go to start of banner

Common Processes

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Current »

Common Processes

The root element that includes a set of the module’s common processes (create, view, edit, delete). This element is always included in the release CRMConfig file. However, it can also be added in custom configuration files, but only for custom modules. That is, custom files must not include this element when extending a release module. The element is consisted of at least one <process> sub-element.

Attributes

NameDescriptionValue
idUnique Identifier.Any
nameA name that describes the process.Any
descriptionA description that describes the process.Any
methodsA set of methods.

Method

Example

 Common Processes
Common Processes
<commonprocesses>
	<process>
		<id>CREATE_PREPAID_BILL_RUN</id>
		<name>Create Prepaid Bill Run</name>
		<description>Create a new Prepaid Billing Run record.</description>
		<methods>
			<method>
				<ejbname>CRMUIPrepaidBillingRun</ejbname>
				<methodname>createButton</methodname>
			</method>
		</methods>
	</process>
	...
</commonprocesses>
  • No labels