Hello,
We have a Macro that pulled some info from one of the optional fields and writes it to an Excel spreadsheet. We recently upgraded to Sage ERP Accpac 5.4 and Pervasive 9 only to discover they move the location of our optional fields. The macro use to use the following:
Set Loc = OpenView("IC0210","IC")
Set LocFields = Loc.Fields
sqftEA = LocFields.Item("OPTFLD4").Value
But that field no longer exists. The field now resides under the ICITEMO table as follows:
OPTFIELD = “SQUAREFT”
VALUE = “XX.XXX”
Does anyone know what view I must open to find the optional field and can you give me an example on how to pull data from it?
We have a Macro that pulled some info from one of the optional fields and writes it to an Excel spreadsheet. We recently upgraded to Sage ERP Accpac 5.4 and Pervasive 9 only to discover they move the location of our optional fields. The macro use to use the following:
Set Loc = OpenView("IC0210","IC")
Set LocFields = Loc.Fields
sqftEA = LocFields.Item("OPTFLD4").Value
But that field no longer exists. The field now resides under the ICITEMO table as follows:
OPTFIELD = “SQUAREFT”
VALUE = “XX.XXX”
Does anyone know what view I must open to find the optional field and can you give me an example on how to pull data from it?