Other Operation

Operations other than create, update, or delete operations are called "other" operations. An Other operation class is generated for each operation in the MBO that is not a create, update, or delete operation.

This is an example of an "other" operation:

SUP101CustomerChangeLastNameOperation *op = 
[SUP101CustomerChangeLastNameOperation getInstance];
op.old_lname = @"Smith";
op.new_lname = @"Jones";
[op save];

[op submitPending];
[SUP101SUP101DB synchronize];