The IISERPApplication interface provides access to all functionalities of the Integration Server API. When using the Integration Server you must create this interface first in order to have access to all other objects.
Example (VB):
In this example, an Integration Server application object is created and a user logged in on Isah.
Dim oIIS as IERPLink.IERPApplication
Set oIIS = New IERPLink.IERPApplication
oIIS.OwnerHWND = hWnd
oIIS.Title = “Demo Isah Integration Server API”
oIIS.DatabaseAliasname = “TESTDB”
oIIS.Username = “isah”
oIIS.Password = “isah”
oIIS.Connection.Connect
In this folder |