Retrieves the default value of an attribute of a business object, given the attribute's name or its position in the business object's attribute list.
public String getDefaultAttrValue(int position);
public String getDefaultAttrValue(String name);
The String containing the default value of the attribute. If no default value exists for the attribute, the method returns an empty string.
To retrieve the default value of an attribute of the business object, specify either the attribute name or the attribute's position in the list of attributes.
See also the description of the getAttrValue() method.