Description
Info forms are overviews such as Part structure or Costs overview. Users can only view the information. Often, it is possible to start processes or print reports from the menu of the info form. Opening info forms is very similar to opening data and lookup forms because they are all based on the IISERPDataForm interface.
The following code opens the Engineering item revision check for a particular item:
Dim oDataForm as IERPLink.IISERPDataForm
Set oDataForm = oERPLink.CreateDataForm(“1178”)
oDataForm.DataParams.Add("EngItemRevId", 3, 2)
oDataForm.Show()