String getType()
The name of a business object definition.
The type of a business object, in terms of this method, is the name of the business object definition from which the business object was created.
The following example retrieves the type of a business object called sourceShipTo.
String typeName = sourceShipTo.getType();
The following example copies a triggering event into a new business object of the appropriate type.
BusObj source = new BusObj(triggeringBusObj.getType());