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.
Syntax
public Object getAttrValue(String name); public Object getAttrValue(int position);
Parameters
Return values
An Object that contains the value of the specified attribute, in the format defined for the attribute's data type.
Exceptions
Notes
The getAttrValue() method returns a java.lang.Object, which you cast to the proper type before assigning to a variable.
See also
See also the description of the getAttrName() method.