Any experience including custom list fields in a c...
# suitetalkapi
b
Any experience including custom list fields in a custom record search result? I'm searching a custom record and need to return the list item name from custom list fields. Other fields types haven't been a problem. Here is the approach I'm using that returns an invalid field reference error.
Copy code
CustomSearchRowBasic csrbStatus = new CustomSearchRowBasic {
	customizationRef = new CustomizationRef { scriptId = "custrecord_agreement_status" },
	searchRowBasic = new CustomListSearchRowBasic { name = new SearchColumnStringField[] { new SearchColumnStringField() } }
};
Any ideas what's wrong?