I am creating a screen based on the Customer table and have a grid. I want to have multiple fields in a single column, so am trying to use a SQL override. I copied the same code that is in the Contact List:
'<b>' + ISNULL(viewContacts.AssignedTo,'') + '</b><br />' + '<i>' + ISNULL(viewContacts.SpecialType,'') + '</i><br />' + ISNULL(viewContacts.Title,'')
I made the following modifications:
'<b>' + ISNULL(viewCustomer.FullName,'') + '</b><br />' + '<i>' + ISNULL(viewCustomer.AssignedTo,'') + '</i><br />'
Seems like the code is identical. I have verified the table and field names are accurate. However, when I publish and load the page, I get an "Error Generating Grid" message.
Can you tell me where I am going wrong on this?