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.
Syntax
public String getDefaultAttrValue(int position); public String getDefaultAttrValue(String name);
Parameters
Return values
The String containing the default value of the attribute. If no default value exists for the attribute, the method returns an empty string.
Exceptions
Notes
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
See also the description of the getAttrValue() method.