We've added a boolean optional field to the customer record (AR0400) in Accpac 5.6 and would like to browse customer records (AR0024) where the optional field "ENABLED" is True.
I can search for records that have the optional field set to true via the finder in Accpac, but the browse criteria do not appear to record to a macro.
I've tried a wide range of browse criteria, but the .Net C# code is currently:
These fetches return nothing unless I add "IDCUST=1100" or some such valid primary key.
Is it possible to use the SDK to browse all headers given an optional field name and value?
I can search for records that have the optional field set to true via the finder in Accpac, but the browse criteria do not appear to record to a macro.
I've tried a wide range of browse criteria, but the .Net C# code is currently:
Code:
ARCUSTOMER1detail.Browse("OPTFIELD=ENABLED AND VALIFBOOL=True", true);
These fetches return nothing unless I add "IDCUST=1100" or some such valid primary key.
Is it possible to use the SDK to browse all headers given an optional field name and value?