Sets the value of an attribute that is a business object array (multiple cardinality).
Syntax
void IsetBusinessObjectArrayAttribute(string attributeName, IBusinessObjectArray value);
Parameters
Return Values
None.
Exceptions
Example
// Call the BusinessObjectArray attribute method String arrayAttribute = "CustomerAddress"; IBusinessObject CustomerAddress = accessSession.IcreateBusinessObjectArray ("Address"); IBusinessObject exampleBO = accessSession.IcreateBusinessObject ("Customer"); exampleBO.IsetBusinessObjectArrayAttribute(arrayAttribute, CustomerAddress);