Retrieves all business-object properties from the BO Properties dialog.
Syntax
public Hashtable getAllBOSpecificProperties();
Parameters
None.
Return values
A reference to a java.util.Hashtable object that contains the business-object properties (represented as AgentProperty objects), keyed on the property name.
Notes
The getAllBOSpecificProperties() method retrieves all business-object properties from the ODA-runtime memory. Business Object Wizard saves these properties into memory after the user specifies their values in the BO Properties dialog (part of Step 5). This method returns the business-object properties as a Hashtable object, which maps keys to values. The keys are the names of the business-object properties and values are the associated property values. Use methods of the Hashtable class (such as keys() and elements()) to obtain the information from this structure.
See also