Sample ProcObject
- Last Updated: February 11, 2026
- 1 minute read
- OpenEdge
- Version 13.0
- Documentation
The following methods comprise the definition of a sample .NET ProcObject, AccountInfo:
- Remote ABL methods to run the internal procedures
getPaymentsInfo,setDirectDeposit, andgetDirectDeposit(defined inAccountInfo.p) on the application server:public void getPaymentsInfo(System.DateTime fromDate, System.Data.DataTable payeeList, int paymentsNum, System.Data.DataTable paymentsInfo) public void setDirectDeposit(System.Data.DataTable ddData) public void getDirectDeposit(System.Data.DataTable ddData)If
AccountInfo.pwere to be run as single-run or singleton, then its input parameteraccountNumwould have to removed from the main block and instead be passed directly to its internal procedures or user-defined functions. In that case, the internal procedure methods might look like the following:public void getPaymentsInfo(int accountNum, System.DateTime fromDate, System.Data.DataTable payeeList, int paymentsNum, System.Data.DataTable paymentsInfo) public void setDirectDeposit(int accountNum, System.Data.DataTable ddData) public void getDirectDeposit(int accountNum, System.Data.DataTable ddData) - The
ProcedureTypeproperty - Common methods in all .NET proxy objects.