Outputting Data - trillium_geolocation - 15.21

Trillium Geolocation Reference

Product type
Software
Portfolio
Verify
Product family
Trillium
Product
Trillium > Trillium Geolocation
Version
15.21
Language
English
Product name
Trillium Geolocation
Title
Trillium Geolocation Reference
Copyright
2023
First publish date
2017
Last edition
2024-07-17
Last publish date
2024-07-17T14:48:30.219520

Processing data creates enhanced data in the contact object. If your process is successful, you may output the record. You may also output information for debugging, such as textual field names and option settings:

   pcACR = getField(&myContact, OFTACR);
   if (*pcACR == 'L')
   {
      cout << "Output processed contact in "
         << GetOCOText(&myServer,
            GetOption(&myServer,
            OONAddressCasing))
         << " with field names."
         << endl;
 
      for (i = OFTRecordID;
         i < OFTNumFieldsPlusOne;
         i++)
      {
         if (strlen(getField(&myContact, i)) > 0)
            cout << GetOFTText(&myServer, i)
               << " :   "
               << getField(&myContact, i)
               << endl;
      }
   }