Sample SubAppObject
- Last Updated: August 13, 2021
- 1 minute read
- OpenEdge
- Version 12.2
- Documentation
The following methods comprise the definition of a sample Java SubAppObject, Tax:
- A ProcObject class factory method that runs and instantiates the persistent
procedure
TaxInfo.pon the application server. For example:public TaxInfo createPO_TaxInfo(int accountNum) throws Open4GLException, RunTime4GLException, SystemErrorException - Built-in class factory methods that run and instantiate a SmartDataObject on the application server, as shown on the sample AppObject in Sample AppObject.
- A remote ABL method to run the non-persistent procedure
SetStatus(defined bySetStatus.p) on the application server. For example:public void SetStatus(int status) - Common methods in all Java proxy objects, excluding the _getProcedureType() method.