accessModifier - The bitwise flag specified to determine
if certain normal security checks are to be
bypassed for this delete request.
For example:
if the accessModifer is NOACCESSCHECK, then the
check for the object's NODELETE flag and the
call to the object's canDelete() method
will not be performed.
If the accessModifer is NONE, then all the
access checks are performed before this object
is marked delete.
Overrides the skipCopyField() in the Mbo.
Since this method takes the MboValueInfo as its parameter
just check to see if this field needs to be copied or skipped by using the data
from the static HashTable. If this field does not need to be copied return true.
The following are Craft field will be skipped without being copied to the newly duplicated Craft
This called whenever a change is made to the attributes of a MBO.
The programmer should override if interested in intercepting this event.
An example of the use of this is to set the changeby/changedate of a
work order whenever one of the attributes is set.
If an MXException is thrown from this routine, the change of
value is rolled back, this provides a mechanism to abort any changes.
Default behavior is to do nothing. The derived method has to call super.modify().