Sample static temp-table
- Last Updated: February 11, 2026
- 1 minute read
- OpenEdge
- Version 13.0
- Documentation
Sample static temp-table
Static temp-table in a persistent procedure
The following example shows a static temp-table definition
in a persistent procedure, PaymentInfo.p.
|
For this parameter, ProxyGen generates the following:
-
PaymentInfoTT.cswith the following class definition:
|
- The following method in the proxy:
|
The following example shows a static temp-table
definition in an external procedure, setPaymentInfo.p.
|
Since the schema for these two static temp-table parameters is the same, ProxyGen uses the previously generated, strongly typed DataTable in the proxy method generated for this external procedure. For example:
|
For INPUT and INPUT-OUTPUT parameters,
the .NET client code must supply an instance of the strongly
typed DataTable object. For OUTPUT parameters,
the strongly typed DataTable variable must be declared, but the
instance is created by ABL and returned to the .NET client.