Retrieves the value of an attribute of a business object, given the attribute's name or its position in the business object's attribute list.
public Object getAttrValue(String name);
public Object getAttrValue(int position);
An Object that contains the value of the specified attribute, in the format defined for the attribute's data type.
The getAttrValue() method returns a java.lang.Object, which you cast to the proper type before assigning to a variable.
See also the description of the getAttrName() method.