For an object tree
                  with MBOs in a composite (cascading) relationship, 
submitPending submits
                  changes found in the entire hierarchy. If each MBO in the hierarchy has its own
                  CUD operations, the submitted object tree replays in this order:
- Create and Update: a preorder traversal, for example,
                        parent -> left child -> right child. That is, create the parent before
                        the children. 
 
- Delete: a postorder traversal, for example, left child
                        ->right child->parent. 
 
Left and right in this context means from the first child in the children
                  list to the last child. For a tree with multiple operation types, for example,
                  root (update) and two children (one create and one update) and each child has two
                  children, the order of the operation is: root (update), child one(create),
                  children of child one(create), children of child two (delete), child two (delete).