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:

SampleApp_CustomerOtherOperation *other = [[SampleApp_CustomerOtherOperation alloc] init];
other.P1 = @"somevalue";
other.P2 = 2;
other.P3 = [NSDate date];
[other save]; 
[other submitPending];