Creating a SubAppObject
Print
- Last Updated: March 30, 2020
- 1 minute read
- OpenEdge
- Version 12.2
- Documentation
To create a SubAppObject:
-
Create the SubAppObject and evoke the
CreateAO_Payroll( )method:' There is no communication with the WSA at this time Dim WS_Payroll As OrderService.PayrollObj WS_Payroll = New OrderService.PayrollObj( ) ' Create the SubAppObject WS_OrderService.CreateAO_Payroll( )Note: TheOrderInfoIDValuewill automatically be put into the SOAP request header by the interface, and thePayrollIDValueAppObject member variable is filled in automatically by the interface. -
Copy the SubAppObject ID from the AppObject to the SubAppObject:
' Save the SubAppObjectID in the SubAppObject copy from AppObject WS_Payroll.PayrollIDValue = WS_OrderService.PayrollIDValue