void setContent(BusObj BusObj)
Using setContent() is similar to using copy() in that both functions copy the content from one business object to another. But setContent() shares the content of both business objects. For example, if the content in BusObjA is shared with BusObjB, then if the content in BusObjA changes, then the content in BusObjB also changes at the same time.
CollaborationException--The setContent() method can set one of the following exception types for this exception:
The following example sets the contents of the instance variable for the output object ObjOutput1 to the contents of the business object rDstBO[0].
ObjOutput1.setContent(rDstBO[0]);